.informationManagementContainer {
  width: 100%;
  height: auto;
  padding: 24px 0;
}


.companyInformationContainer {
  padding: 0 24px 24px 24px;
}

/* 組織情報とプロジェクトを横並びにする */
.info-wrapper {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: stretch;
  border-bottom: 1px solid #616a7a;
}

.info-wrapper::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: calc(50% - 1px);
  width: 1px;
  background-color: #616a7a;
}

.info-wrapper>.companyInformationContainer,
.info-wrapper>.projectInformationContainer {
  flex: 1;
  height: auto;
  border-bottom: none;
  display: flex;
  flex-direction: column;
}

.info-wrapper>.companyInformationContainer .click_section {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.info-wrapper>.companyInformationContainer .all_Section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 多様度指数モーダルのスタイル */
.file-container .date-filename-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.file-container .header-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.file-container .date-filename-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.file-container .graph-table-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

.file-container .chart-container-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.file-container .table-container-wrapper {
  width: 100%;
}

/* CO2吸収量(森林経営計画)のスタイル */
.absorption-container .header-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.absorption-container .graph-table-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.absorption-container .chart-container-wrapper {
  width: 100%;
}

.absorption-container .table-container-wrapper {
  width: 100%;
}

.absorption-container .chart-wrapper {
  width: 100%;
}

/* 1200px以上の時のレイアウト */
@media (min-width: 1200px) {
  .file-container .header-info-wrapper {
    flex-direction: row;
    gap: 24px;
  }

  .file-container .date-filename-box {
    flex: 1;
    border-radius: 8px;
  }

  .file-container {
    background-color: #FAFBFD;
    padding: 24px;
  }

  .file-container .swindex-wrapper {
    flex: 1;
  }

  .file-container .swindex-wrapper .title_small {
    height: 100%;
  }

  .file-container .graph-table-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }

  .file-container .chart-container-wrapper {
    flex: 1;
    width: auto;
    max-width: none;
    min-width: 0;
  }

  .file-container .table-container-wrapper {
    flex: 1;
    min-width: 0;
  }

  /* CO2吸収量(森林経営計画)用のスタイル */
  .absorption-container .header-info-wrapper {
    flex-direction: row;
    gap: 16px;
  }

  .absorption-container .date-filename-box {
    flex: 1;
  }

  .absorption-container .avg-wrapper {
    flex: 1;
  }

  .absorption-container {
    background-color: #FAFBFD;
    padding: 24px;
  }

  .absorption-container .graph-table-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }

  .absorption-container .chart-container-wrapper {
    flex: 1;
    width: auto;
    max-width: none;
    min-width: 0;
  }

  .absorption-container .table-container-wrapper {
    flex: 1;
    min-width: 0;
  }
}


.titleName {
  font-size: 18px;
  color: #141415;
}


.all_Section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.section_title {
  width: auto;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.button {
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  min-width: 104px;
  min-height: 34px;
}

.button_wide {
  color: #141415;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  min-width: 104px;
  min-height: 42px;
}

.section_startYear {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.region-title {
  font-size: 24px;
  color: #141415;
  font-weight: 500;
}

/* タイトル　小さめ */
.title_small {
  font-size: 18px;
  color: #141415;
  font-weight: 500;
}

/* タイトル */
.title {
  font-size: 24px;
  color: #141415;
}



/* 説明文 */
.small_text {
  color: #5B5F66;
  margin-bottom: 0;
  font-size: 12px;
}

/* 本文 */
.body_text {
  color: #ffffff;
  margin-bottom: 0;
  font-size: 14px;
}

/* ダミーなので非表示 */
.sectin_url {
  display: flex;
  gap: 4px;
  align-items: center;
}

.click_section {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
  cursor: pointer;
}

.informationModal {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  padding-bottom: 32px;
  background: #FAFBFD;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  color: #000000;
  overflow-y: auto;
  z-index: 10;
}

.informationModal.show {
  display: block;
}

/* スクロールバー全体 */
.informationModal::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  /* スクロールバーの幅 */
}

/* スクロールバーのつまみ部分 */
.informationModal::-webkit-scrollbar-thumb {
  background-color: #616a7a;
  /* スクロールバーのつまみ色 */
  border-radius: 8px;
  /* つまみ周りの余白 */
}

/* スクロールバーのトラック（軌道部分） */
.informationModal::-webkit-scrollbar-track {
  border-radius: 8px;
  margin: 8px 0;
  /* 上下に余白を作り、スクロールバーを短くする */
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000 !important;
}

.modal-overlay.show {
  display: block;
}

/* ダミーなので画像用の箱も非表示 */
/* 画像・動画用の箱 */
.dimension-media-container {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  background-color: #D9D9D9;
  border-radius: 16px;
}

.mainContainer {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
}

.section_model {
  width: auto;
  height: auto;
  padding: 8px;
  display: flex;
  display: none;
}

.vegetationAssessmentIndex {
  width: auto;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  margin: 0;
}

.vegetationIndex {
  width: 100%;
  font-size: 14px;
  color: #fff;
  text-align: right;
  margin: 0;
}

.media-container {
  height: auto;
}

/* square-containerを含むmedia-containerは109px */
.media-container:has(> .square-container) {
  width: 151;
}

/* evaluation-containerを含むmedia-containerは144px */
.media-container:has(> .evaluation-container) {
  width: 144px;
}


.section_timePlus {
  width: auto;
  height: 200px;
  background-color: #D9D9D9;
  border-radius: 16px;
}

/* ダミーのためnoneしています */
.dbPrivateButton {
  padding: 4px 8px;
  border-radius: 24px;
  cursor: pointer;
  width: 100%;
  height: 48px;
  border: 1px solid #1D5ACF;
  color: white;
  background-color: transparent;
}

.dbText {
  color: #fff;
  margin-bottom: 0;
  width: 100%;
}

.drawer-layer-project {
  height: 100%;
  overflow-y: auto;
  width: 536px;
  border-radius: 16px;
  background-color: rgba(250, 251, 253, 0.8);
  backdrop-filter: blur(30px);
}

/* スクロールバー全体 */
.drawer-layer-project::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  /* スクロールバーの幅 */
}

/* スクロールバーのつまみ部分 */
.drawer-layer-project::-webkit-scrollbar-thumb {
  background-color: #616a7a;
  /* スクロールバーのつまみ色 */
  border-radius: 8px;
  /* つまみ周りの余白 */
}

/* スクロールバーのトラック（軌道部分） */
.drawer-layer-project::-webkit-scrollbar-track {
  border-radius: 8px;
  margin: 8px 0;
  /* 上下に余白を作り、スクロールバーを短くする */
}

.modalHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;

  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #FAFBFD;
}

.modalHeader.scrolled {
  box-shadow: 0 1px 1px #D2D5DA;
}

.modalFooter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  background-color: #FAFBFD;
  margin-top: 24px;
  border-top: 1px solid #D2D5DA;
  box-sizing: border-box;
}

.modal_section_title {
  width: auto;
  height: auto;
  display: flex;
  justify-content: space-between;
}

.modal-content-style {
  padding: 0px 24px 0;
}

.modalProjectBlock {
  padding: 16px 0;
}

.memberCardContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.memberCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8px;
}

.memberPhoto {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #cfcfcf;
}

.memberCardName {
  width: 56px;
  margin-top: 5px;
  text-align: center;

  display: -webkit-box;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}



.projectContainer {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  font-size: 14px;
}

.projectRow {
  display: flex;
  padding: 8px;
}

.projectListHeder {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  border-bottom: 1px solid #D2D5DA;
  padding: 8px 8px 4px;
}

.projectListHeder {
  flex: 2;
  text-align: center;
}


.projectList {
  flex: 2;
  text-align: left;
  color: #141415;
}

.projectStartYear,
.projectArea {
  flex: 1;
  text-align: right;
  color: #141415;
}

.imagesAndVideosContainer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  flex-wrap: unset;
}

.imagesAndVideosContainer>div {
  width: auto;
}

.imagesAndVideosContainer>div>div:first-child {
  aspect-ratio: 4 / 3;
  position: relative;
  width: 100%;
}

.imagesAndVideosContainer>div>div:first-child video {
  height: 100% !important;
  width: 100%;
}

.imagesAndVideosContainer .your-label-class-name {
  font-size: 14px;
  margin-top: 8px;

  /* 1行固定 */
  line-height: 1.4;
  height: 1.4em;

  /* 1行で省略（...） */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/*コンテナ全体を3列グリッドに */
.dimensionalContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  flex-wrap: unset;
}

.dimensionalContainer>div {
  width: auto;
}

/* 3Dと2Dのラッパー（最初の子div）にだけ比率を固定 */
.dimensionalContainer>div>div:first-child {
  height: auto !important;
  aspect-ratio: 4 / 3;
  position: relative;
  display: inline-block;
  width: 100%;
}

.dimensionalContainer>div>div:first-child video {
  height: 100% !important;
  width: 100%;
}

/*2D動画のラベル*/
.dimensionalContainer .two-d-label {
  font-size: 14px;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 3D動画のラベル*/
.dimensionalContainer .three-d-label {
  font-size: 14px;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.modelDetailsContainer {
  width: 100%;
  height: auto;
  display: flex;
  gap: 16px;
  background-color: #cfcfcf;
  padding: 8px;
}

.VegetationAssessmentSection {
  width: 30%;
  height: 200px;
  background-color: #ffffff;
}

.landClassificationSection {
  width: 70%;
  height: 200px;
  background-color: #ffffff;
}

.lineGraphSection {
  width: 50%;
  height: 200px;
  background-color: #ffffff;
}


.chartContainer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  flex-wrap: unset;
}

.chartContainer>div>div[style*="margin-top: 8px"] {
  line-height: 1.4;
  height: 1.4em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chartContainer>div>div[style*="margin-top: 16px"] {
  width: 100% !important;
  height: 210px !important;
}

/* タイムラプスのモーダル用 */
.timeLapsechartContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  flex-wrap: unset;
}

/* .timeLapsechartContainer>div {
  aspect-ratio: 1 / 1.1;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
} */

.timeLapsechartContainer>div>div[style*="margin-top: 8px"] {
  line-height: 1.4;
  height: 1.4em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.timeLapsechartContainer>div>div[style*="margin-top: 16px"] {
  width: 100% !important;
  height: 210px !important;
}

.chartInProject {
  max-width: none;
  max-height: 210px;
  width: 100%;
  height: 100%;
}

.square-container {
  width: 151px;
  height: 151px;
  background-color: #EBEEF3;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  box-sizing: border-box;
  padding: 16px;
  text-align: center;
  margin-bottom: 8px;
}

.square-container.full-width {
  width: 100%;
  height: 242px;
  font-size: 24px;
}

/* 評価用 */
.evaluation-container {
  width: 144px;
  height: 144px;
  background-color: #EBEEF3;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  box-sizing: border-box;
  padding: 12px;
  text-align: center;
  margin-bottom: 8px;
}

.evaluation-container.full-width {
  width: 100%;
  height: 242px;
  font-size: 24px;
}

.image-name-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 撮影日、名前（生物名）、横軸 */
.shooting-date-label,
.name-label,
.horizontal-axis-label {
  font-size: 12px;
  color: #5B5F66;
  word-break: break-all;
}

/* 3Dの空箱、モデルの空箱 */
.three-d-Box,
.two-d-Box,
.noDataBox,
.timeLapse-db-box {
  background-color: #EBEEF3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.message-element {
  color: #5B5F66;
  text-align: center;
}

/* プロジェクトを探すボタン */
.project-search-button {
  height: 48px;
  width: auto;
  padding: 0 16px;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid #1D5ACF;
  border-radius: 4px;
  color: #fff;
  background-color: transparent;
}

/* スクロールバー全体 */
.vegetation-survey-photos-container::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  /* スクロールバーの幅 */
}

/* スクロールバーのつまみ部分 */
.vegetation-survey-photos-container::-webkit-scrollbar-thumb {
  background-color: #616a7a;
  /* スクロールバーのつまみ色 */
  border-radius: 8px;
  /* つまみ周りの余白 */
}

/* スクロールバーのトラック（軌道部分） */
.vegetation-survey-photos-container::-webkit-scrollbar-track {
  border-radius: 8px;
  margin: 8px 0;
  /* 上下に余白を作り、スクロールバーを短くする */
}

.eco-icon {
  /* 葉っぱのアイコン */
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;

  /* アイコンの背景の緑の円 */
  background-color: #4AAB51;
  border: 2px solid white;
  border-radius: 50%;
  padding: 2px;
}

/* カルーセルラッパー */
.carousel-wrapper {
  position: relative;
  width: 100%;
}

/* カルーセルの表示領域 */
.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

/* カルーセルナビゲーションボタン共通スタイル */
.carousel-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #D2D5DA;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 0;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

/* タイムラプス用：ボタンを大きくする */
.carousel-wrapper.timelapse-carousel .carousel-nav-button {
  width: 32px;
  height: 32px;
  border-radius: 20px;
}

/* タイムラプス用：ボタン位置を逆にする */
.carousel-wrapper.timelapse-carousel .carousel-prev-button {
  left: auto;
  left: 16px;
}

.carousel-wrapper.timelapse-carousel .carousel-next-button {
  right: auto;
  right: 16px;
}

.carousel-nav-button:hover {
  background-color: #F5F5F5;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.carousel-nav-button:active {
  background-color: #EBEEF3;
}

/* 前へボタン（左矢印） */
.carousel-prev-button {
  left: -12px;
}

/* 次へボタン（右矢印） */
.carousel-next-button {
  right: -12px;
}

/* 画像・動画用：ボタンを大きくする */
.carousel-wrapper.images-carousel .carousel-nav-button {
  width: 32px;
  height: 32px;
  border-radius: 20px;
}

/* 画像・動画用：ボタン位置を逆にする */
.carousel-wrapper.images-carousel .carousel-prev-button {
  left: auto;
  left: 16px;
}

.carousel-wrapper.images-carousel .carousel-next-button {
  right: auto;
  right: 16px;
}

/* 3D：ボタンを大きくする */
.carousel-wrapper.threeDCarousel .carousel-nav-button {
  width: 32px;
  height: 32px;
  border-radius: 20px;
}

/* 3D：ボタン位置を逆にする */
.carousel-wrapper.threeDCarousel .carousel-prev-button {
  left: auto;
  left: 16px;
}

.carousel-wrapper.threeDCarousel .carousel-next-button {
  right: auto;
  right: 16px;
}

/* 評価：ボタンを大きくする */
.carousel-wrapper.evaluationCarousel .carousel-nav-button {
  width: 32px;
  height: 32px;
  border-radius: 20px;
}

/* 評価：ボタン位置を逆にする */
.carousel-wrapper.evaluationCarousel .carousel-prev-button {
  left: auto;
  left: 16px;
}

.carousel-wrapper.evaluationCarousel .carousel-next-button {
  right: auto;
  right: 16px;
}

/* カルーセル内のアイテムコンテナ */
.carousel-wrapper .mainContainer {
  display: flex;
  gap: 16px;
  transition: transform 0.3s ease;
}


/* タイムラプス作成 機能*/
.floatingActionBar {
  background-color: transparent;
  padding: 0;
  border-radius: 0 0 8px 8px;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

/* 重なった画像パネルのスクロールバー */
.overlap-image-grid::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.overlap-image-grid::-webkit-scrollbar-thumb {
  background-color: #616a7a;
  border-radius: 8px;
}

.overlap-image-grid::-webkit-scrollbar-track {
  border-radius: 8px;
  margin: 0 8px;
}

/* 拡大オーバーレイのスクロール可能エリア */
.expanded-overlay-content::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  /* スクロールバーの幅 */
}

/* スクロールバーのつまみ部分 */
.expanded-overlay-content::-webkit-scrollbar-thumb {
  background-color: #616a7a;
  /* スクロールバーのつまみ色 */
  border-radius: 8px;
  /* つまみ周りの余白 */
}

/* スクロールバーのトラック（軌道部分） */
.expanded-overlay-content::-webkit-scrollbar-track {
  border-radius: 8px;
  margin: 8px 0;
  /* 上下に余白を作り、スクロールバーを短くする */
}

/* 写真コンテナのスクロールバースタイル */
.photos-container::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.photos-container::-webkit-scrollbar-thumb {
  background-color: #616a7a;
  border-radius: 8px;
}

.photos-container::-webkit-scrollbar-track {
  background-color: transparent;
}

/* 拡大表示パネルのコンテンツエリアのスクロールバー */
.expanded-photo-content::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.expanded-photo-content::-webkit-scrollbar-thumb {
  background-color: #616a7a;
  border-radius: 8px;
}

.expanded-photo-content::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin: 8px 0;
}