@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-feature-settings: "kern";
  /* font-family: "BIZ UDGothic", sans-serif;*/
}

body {
  line-height: 1.2;
}

*::-webkit-scrollbar {
  display: none;
}

ol,
ul {
  list-style: none;
}
ol li::before,
ul li::before {
  content: "・";
}

h1 {
  font-size: 50px;
}

body {
  margin: 0;
  font-family: sans-serif;
  background-color: #f1f1f1;
}

p {
  color: #888;
}

code {
  position: relative;
  display: block;
  font-size: 12px;
  white-space: pre-wrap;
  padding: 12px;
  border: 1px solid #CCC;
  border-radius: 8px;
  transition: 0.3s;
}
code:hover {
  cursor: pointer;
}
code:active {
  background: #EEE;
}
code:active::after {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: "Font Awesome 6 Free";
  content: "\f328";
  font-weight: 900;
  font-style: normal;
  margin-right: 0.5em;
}
code::after {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: "Font Awesome 6 Free";
  content: "\f328";
  font-weight: 400;
  font-style: normal;
  margin-right: 0.5em;
}

/* ヘッダー・フッターなど共通スタイル */
header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}
header .header__selectorBox {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 992px;
}
header .header__selectorBox .selector {
  padding: 0;
  color: #aaa;
  font-size: 14px;
  transition: 0.3s;
  margin: 12px;
}
header .header__selectorBox .selector:hover {
  color: #ccc;
  cursor: pointer;
}

footer {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 40px auto;
}
footer a {
  color: #000;
  text-decoration: none;
}
footer a i {
  margin-right: 2px;
}

hr {
  width: 100%;
  border-top: 1px solid #CCC;
  margin: 40px 0;
}

.fc-gray {
  color: #aaa;
}
.fs-xs {
  font-size: 10px;
}
.fs-sm {
  font-size: 12px;
}
.fs-md {
  font-size: 16px;
}
.fs-lg {
  font-size: 24px;
}
.fs-xl {
  font-size: 48px;
}
.fw-bold {
  font-weight: bold !important;
}
.fw-normal {
  font-weight: normal !important;
}

.tips {
  background: #97c6e3;
  padding: 8px 20px;
  border-radius: 8px;
  color: #15374d;
  font-weight: bold;
}

/* 全体レイアウト：スマホ時にも左右に余白を */
.wholeWrapper {
  max-width: 992px;
  margin: 0 auto;
  padding: 0 20px;
}
.wholeWrapper img,
.wholeWrapper video {
  width: 100%;
  max-width: 100%;
}
.wholeWrapper .container {
  padding: 40px;
}
.wholeWrapper .container h2 {
  margin-bottom: 16px;
}
.wholeWrapper .container img {
  width: 100%;
  max-width: 100%;
}
.wholeWrapper .container.sub h3 {
  margin: 20px 0;
  color: #1D1D1F;
}
.wholeWrapper .container.sub p {
  font-size: 12px;
  color: #86868B;
}
.wholeWrapper .container.sub img {
  width: 100%;
  max-width: 100%;
  margin: 20px auto;
}

/* ヒーローエリア */
.heroArea {
  position: relative;
  background: #000;
  margin: 0;
  padding: 0;
  color: #f1f1f1;
  text-align: center;
  height: 400px;
  width: 100%;
  background-image: url(/static/img/tech01.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.heroArea::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.heroArea img {
  width: 100%;
  max-width: 400px;
  margin: 40px;
}
.heroArea__content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.heroArea__content p {
  opacity: 0.8;
}
@media screen and (max-width: 600px) {
  .heroArea {
    height: 250px;
  }
  .heroArea img {
    margin: 20px auto;
    max-width: 250px;
  }
}

/* カード表示 */
.cardSection {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
}
.cardSection .card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 0 0 calc((100% - 1 * 16px) / 2);
}
@media (min-width: 600px) {
  .cardSection .card {
    flex: 0 0 calc((100% - 2 * 16px) / 3);
  }
}
@media (min-width: 1024px) {
  .cardSection .card {
    flex: 0 0 calc((100% - 4 * 16px) / 5);
  }
}
.cardSection .card__img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.cardSection .card__img .badgeBox {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 10;
}
.cardSection .card__img .badgeBox .badge {
  margin: 4px;
  padding: 4px 8px;
  border-radius: 24px;
  font-size: 10px;
  font-weight: bold;
  background: #ebebeb;
}
.cardSection .card__img .badgeBox .badge.ai {
  background: #ebebeb;
}
.cardSection .card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
.cardSection .card__comment {
  padding: 16px;
}
.cardSection .card__comment h3 {
  font-size: 14px;
  margin: 0;
}
.cardSection .card__comment h3 i {
  margin-right: 4px;
}
.cardSection .card__comment p {
  font-size: 12px;
  color: #888;
}
.cardSection .card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.cardSection .card:hover .card__img img {
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .card {
    width: 100%;
  }
}
/* ラインの省略（line-clamp） */
.lineLimit_1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.lineLimit_2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.lineLimit_3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* リンクテキスト */
.txt-link {
  color: blue;
}

/* メディアクエリでの追加調整 */
@media screen and (max-width: 991px) {
  .wholeWrapper {
    max-width: 768px;
  }
}
@media screen and (max-width: 600px) {
  .wholeWrapper {
    max-width: 100%;
    padding: 0 10px;
  }
  .container {
    padding: 20px;
  }
}
/* 表のレスポンシブ対応 */
.table-responsive {
  overflow-x: auto;
}

/* ※以下は既存のtableデザイン（必要に応じて変数や色を調整） */
.table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.table thead {
  background-color: #f5f5f5;
  color: rgba(0, 0, 0, 0.6);
}
.table thead th {
  padding: 16px;
  text-align: left;
  font-weight: 500;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.875rem;
  letter-spacing: 0.01071em;
}
.table tbody tr {
  transition: background-color 0.3s ease;
}
.table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.table tbody tr td {
  padding: 16px;
  color: rgba(0, 0, 0, 0.87);
  font-size: 0.875rem;
  border-bottom: 1px solid #e0e0e0;
}
.table tbody tr td:nth-child(2) {
  color: #86868B;
  text-align: left;
}
.table tbody tr:last-child td {
  border-bottom: none;
}
.table .cert {
  display: flex;
  justify-content: flex-start;
}
.table .cert img {
  width: 80px !important;
}

.img-lg {
  width: 100% !important;
}
.img-md {
  width: 75% !important;
}
.img-sm {
  width: 50% !important;
}
.img-xs {
  width: 25% !important;
}

.radius-lg {
  border-radius: 48px;
}
.radius-md {
  border-radius: 24px;
}
.radius-sm {
  border-radius: 12px;
}
.radius-xs {
  border-radius: 6px;
}

.d-block {
  display: block;
}
.d-block-center {
  margin: 0 auto;
}
.d-flex {
  display: flex;
}
.d-flex-justify-center {
  display: flex;
  justify-content: center;
}

.align-center {
  text-align: center;
}
.align-left {
  text-align: left;
}

.hkimg {
  width: 200px !important;
}

.hkmov {
  width: 300px !important;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .hkmov {
    width: 300px !important;
  }
}
.mt-lg {
  margin-top: 48px !important;
}
.mt-md {
  margin-top: 24px !important;
}
.mt-sm {
  margin-top: 12px !important;
}
.mt-xs {
  margin-top: 6px !important;
}
.mb-lg {
  margin-bottom: 48px !important;
}
.mb-md {
  margin-bottom: 24px !important;
}
.mb-sm {
  margin-bottom: 12px !important;
}
.mb-xs {
  margin-bottom: 6px !important;
}
.me-lg {
  margin-right: 48px !important;
}
.me-md {
  margin-right: 24px !important;
}
.me-sm {
  margin-right: 12px !important;
}
.me-xs {
  margin-right: 6px !important;
}
.ms-lg {
  margin-left: 48px !important;
}
.ms-md {
  margin-left: 24px !important;
}
.ms-sm {
  margin-left: 12px !important;
}
.ms-xs {
  margin-left: 6px !important;
}

.fw-bold {
  font-weight: bold;
}
.fc-bk {
  color: #1D1D1F !important;
}
.fc-weak {
  color: #86868B !important;
}

.cert {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
.cert a img {
  width: 180px !important;
  height: auto;
}

.sortSection {
  display: flex;
  margin-bottom: 48px;
  overflow: scroll;
}
.sortSection .item {
  font-size: 14px;
  font-weight: bold;
  color: #86868B;
  padding: 6px 18px;
  border: 1px solid transparent;
  background: #ccc;
  border-radius: 18px;
  transition: 0.3s;
  white-space: nowrap;
}
.sortSection .item:not(:first-of-type) {
  margin-left: 8px;
}
.sortSection .item:hover {
  cursor: pointer;
  background: #ddd;
}
.sortSection .item.active {
  background: #265f6a;
  border: 1px solid #265f6a;
  color: #f5f5f5;
}
.sortSection .item.active:hover {
  background: #307583 !important;
  border: 1px solid #265f6a;
  cursor: pointer;
  background: #ddd;
}

.topArea {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.topArea img {
  width: 200px;
  max-width: 80%;
}

.img-prof {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  background: #4e9cac;
}

.img-prof img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.subtitle {
  text-align: center;
  font-size: small;
  color: #4c6f75;
  margin-top: 8px;
}

.copied {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  padding: 8px 12px;
  border-radius: 8px;
  color: #FFF !important;
  background: #265f6a;
  font-weight: bold;
  opacity: 0;
  transition: 0.3s;
}
.copied.active {
  opacity: 1;
}
.copied p {
  color: #FFF !important;
}
.copied i {
  margin-right: 4px;
}