@charset "utf-8";
/* CSS Document */
.section07 {
  background: #4F97C9;
}
.section07 .titlebox i, .section07 .titlebox h2 {
  color: #fff;
}
.section07 .contents .webgene-blog {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  gap: 10px;
}
.section07 .contents .webgene-blog .webgene-item {
  width: calc(100% / 5 - 40px / 5);
}
.section07 .contents .webgene-blog .webgene-item a {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.section07 .contents .webgene-blog .webgene-item a > div {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: ease 1.0s;
}
.section07 .contents .webgene-blog .webgene-item a:hover > div {
  transform: translate(-50%, -50%) scale(1.1);
}
@media screen and (max-width: 768px) {
  .section07 .contents .webgene-blog {
    gap: 6px;
  }
  .section07 .contents .webgene-blog .webgene-item {
    width: calc(100% / 5 - 24px / 5);
  }
}
@media screen and (max-width: 576px) {
  .section07 .contents .webgene-blog {
    gap: 8px;
  }
  .section07 .contents .webgene-blog .webgene-item {
    width: calc(100% / 2 - 8px / 2);
  }
}
.section06 {
  background: #EDEFF2;
}
.company_box {
  padding: clamp(50px, 6vw, 80px);
  border-radius: 10px;
  max-width: 1280px;
  margin: 0 auto;
  background: #fff;
}
.company_box .company_grid {
  /*
  display: grid;
  */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 40px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
/* カード */
.company_box .company_item {
  display: flex;
  min-width: 30%;
  flex-direction: column;
  align-items: center; /* ← 中央寄せ */
  gap: 14px;
}
/* ロゴ枠・企業名枠 */
.company_box .company_item .imgbox, .company_box .company_item .company_name {
  background: #f7f7f7;
  width: 100%;
  height: 80px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.company_box .company_item .imgbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
/* =========================
  レスポンシブ
========================= */
@media (max-width: 1080px) {
  .company_box .company_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .company_box .company_grid {
    grid-template-columns: 1fr;
  }
}
.news_e {
  gap: 50px;
  align-items: flex-start;
}
/* news_list */
.news_e .contents .webgene-blog {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  gap: 80px clamp(10px, 3vw, 40px);
}
/* 3列 */
.news_e .contents .webgene-blog .webgene-item {
  width: calc((100% - clamp(10px, 3vw, 40px) * 2) / 3);
}
/* カード */
.news_e .contents .webgene-blog .webgene-item > a {
  display: block;
  border-radius: 16px;
  text-decoration: none;
}
/* 画像 */
.news_e .contents .webgene-blog .webgene-item .imgbox {
  border-radius: 15px;
}
.news_e .contents .webgene-blog .webgene-item .imgbox img {
  width: 100%;
  height: auto;
  display: block;
}
.news_e .webgene-blog .webgene-item .date {
  line-height: 1;
  font-size: 15px;
}
/* カテゴリ（白いピル） */
.news_e .contents .webgene-blog .webgene-item .catename {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 3px 16px;
  background: #fff;
  color: #01418E;
  border: 1px solid #01418E;
  border-radius: 999px;
  font-weight: 700;
}
/* ---------- responsive ---------- */
@media screen and (max-width: 1080px) {
  .news_e .contents .webgene-blog {
    gap: 50px 30px;
  }
  /* 2列 */
  .news_e .contents .webgene-blog .webgene-item {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 576px) {
  .news_e .contents .webgene-blog {
    gap: 40px; /* 縦だけの余白になる */
  }
  /* 1列 */
  .news_e .contents .webgene-blog .webgene-item {
    width: 100%;
  }
  .company_box{padding: 40px 20px;}
.company_box .company_grid {
  gap: 30px;
  flex-direction: column;
}
.company_box .company_item {
  min-width: 100%;
    gap: 15px;
}
}
.section04 .titlebox1 h2 {
  position: relative;
  display: inline-block;
}
.section04_cards {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.section04 .merit_label {
  color: #0E0E0F;
  font-weight: 900;
  line-height: 1.45;
}
.section04 .txtbox span {
  color: #01418E;
}
/* =========================
  レスポンシブ
========================= */
@media (max-width: 768px) {
  .section04_cards {
    gap: 60px;
  }
}
.section03_2 .section_en_title {
  color: rgba(255, 255, 255, 0.2);
}
.section03_2 .inner {
  display: flex;
  gap: 50px;
}
.section03_2 .boxwrap {
  flex: 1;
}
.section03_2 .boxwrap .imgbox {
  border-radius: 8px !important;
  overflow: hidden !important;
}
/* 画像は丸めない（親で丸く切る） */
.section03_2 .boxwrap .imgbox > img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 !important;
}
/* テキストを被せる */
.section03_2 .txtbox {
  position: absolute;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  background: #fff;
  padding: 16px 24px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 80%;
}
.section03_2 .txtbox h3 {
  text-align: center;
}
/* SPで縦並び */
@media (max-width: 768px) {
  .section03_2 .inner {
    flex-direction: column;
  }
  .section03_2 .inner {
    gap: 0px;
  }
  .section03_2 .txtbox {
    bottom: 40px;
    width: 90%;
  }
}
/* =========================
  section03
========================= */
.section03 {
  padding: clamp(120px, 20vw, 200px) 0 clamp(60px, 12vw, 100px);
  background: #FBFBFB;
}
.section03 .titlebox1 > div {
  position: relative;
  display: inline-flex; /* ← inline-block から変更 */
  align-items: center;
  gap: 10px;
  padding-bottom: 4px; /* 線との距離 */
}
.section03 .titlebox1 > div::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%; /* 文字＋画像分 */
  height: 3px;
  background: #DDF3F9;
}
.section03 .titlebox1 .section_en_title {
  color: rgba(79, 151, 200, 0.15);
}
/* =========================
  section02（marginなし）
========================= */
.section02 .section02_bg.bg_img_wrap3 {
  position: relative;
  overflow: hidden;
}
/* 上半分だけ表示する画像 */
.section02 .section02_bg.bg_img_wrap3 > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
  /* 下に向かってフェード */
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
}
.section02 .section02_overlay {
  position: relative;
  z-index: 2;
}
/* 青オーバーレイ */
.section02 .section02_bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(56, 144, 196, .78);
  z-index: 0;
}
.section02 .section02_bg .section_en_title {
  color: rgba(255, 255, 255, 0.2);
}
.section02 .section02_overlay {
  position: relative;
  z-index: 1;
}
.section02 .titlebox1 h2 {
  color: #fff;
  font-weight: 800;
}
.section02 .titlebox1 .underwhite {
  display: inline-block;
  border-bottom: 2px solid rgba(255, 255, 255, .95);
}
.section02 .titlebox1 span {
  color: #DDF3F9;
  background-image: radial-gradient(circle at center, #DDF3F9 20%, transparent 30%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.3em; 
}
.section02 .section02_cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px 40px;
  padding: 0;
  max-width: 1280px;
}
/* boxwrap = カード本体 */
.section02 .section02_cards .boxwrap {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 22px 22px 22px clamp(180px, 18vw, 230px);
  min-height: 96px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, .14);
}
/* imgbox を丸くして左に被せる */
.section02 .section02_cards .boxwrap .imgbox {
  position: absolute;
  left: 22px;
  top: 20%;
transform: translateY(-50%) !important;
  width: clamp(140px, 25vw, 175px);
  height: clamp(140px, 25vw, 175px);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .18);
}
.section02 .section02_cards .boxwrap .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* txtbox 内テキスト */
.section02 .section02_cards .boxwrap .txtbox h3 {
  padding: 0;
  color: #0E0E0F;
}
/* span（クラスなしで青強調） */
.section02 .section02_cards .boxwrap .txtbox span {
  color: #01418E;
}
.boxwrap .txtbox {
  position: relative;
}
/* 見出し */
.boxwrap h3.dotline {
  position: relative;
  padding: 18px 0; /* 線との余白 */
}
/* 上の点線 */
.boxwrap h3.dotline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  border-bottom: 2px dotted rgba(43, 126, 195, .55);
}
/* 下の点線 */
.boxwrap h3.dotline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 2px dotted rgba(43, 126, 195, .55);
}
/* SP：1列 */
@media (max-width: 1080px) {
  .section02 .section02_bg {}
  .section02 .section02_cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .section02 .section02_cards .boxwrap {
    padding: 18px 16px 18px 170px;
    margin: auto;
    width: 80%;
  }
  .section02 .section02_cards .boxwrap .imgbox {
    left: 16px;
    width: 120px;
    height: 120px;
  }
  .section02 .titlebox1 {
    padding: 0 0 28px;
  }
}
@media (max-width: 576px) {
  .section02 .section02_bg {
    padding-left: 0;
    padding-right: 0;
  }
  .section02 .section02_cards .boxwrap {
    width: 90%;
    padding: 18px 16px 18px 106px;
  }
  .section02 .section02_cards .boxwrap .imgbox {
    left: 6px;
    width: 90px;
    height: 90px;
  }
}
.section01 {
  overflow: hidden;
}
.section01 .bottombox {
  position: relative;
  width: 100%;
}
/* =========================
  上部：画像＋動画エリア
========================= */
.section01 .bottombox .top_con {
  position: relative;
  justify-content: center;
  align-items: center;
  min-height: 900px;
  max-width: 1280px;
  margin: auto;
}
/* 画像共通 */
.section01 .bottombox .top_con .img {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
body:not(.on) .section01 .bottombox .top_con .img {
  position: relative;
  z-index: 50;
}
.section01 .bottombox .top_con .img img, .section01 .bottombox .top_con .img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* =========================
  中央テキスト
========================= */
.section01 .bottombox .txtbox1 {
  position: absolute;
  top: 40px;
  width: min(720px, 92%);
  text-align: center;
}
.section01 .bottombox .txtbox1 p + p {
  margin-top: 10px;
}
.section01 .bottombox .txtbox1 .imgbox {
  display: inline-flex;
  align-items: center; /* ← 縦中央基準 */
  justify-content: center;
  gap: 36px;
  margin: 12px 0 16px;
}
/* SVG / 画像 共通 */
.section01 .bottombox .txtbox1 .imgbox img {
  width: min(420px, 90%);
  height: 100%;
  display: block;
}
.section01 .bottombox .txtbox1 .imgbox::before, .section01 .bottombox .txtbox1 .imgbox::after {
  content: "";
  width: 50px;
  height: 80px;
  border-top: 3px solid #01418E;
  flex-shrink: 0;
  /* 縦中央に合わせる */
  align-self: center;
  transform-origin: center;
}
.section01 .bottombox .txtbox1 .imgbox::before {
  transform: translateY(40%) rotate(50deg);
}
/* 右：／ */
.section01 .bottombox .txtbox1 .imgbox::after {
  transform: translateY(40%) rotate(-50deg);
}
/* =========================
  中央：動画
========================= */
.section01 .bottombox .txtbox1 .movie_box {
  width: min(380px, 80vw);
  aspect-ratio: 44 / 61;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid #1E64B7;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.section01 .bottombox .txtbox1 .movie_box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* =========================
  周囲の画像配置
========================= */
/* 左上 */
.section01 .bottombox .img1 {
  left: 0;
  top: 0;
  width: clamp(120px, 18vw, 180px);
  height: clamp(140px, 20vw, 200px);
}
/* 左中 */
.section01 .bottombox .img2 {
  left: clamp(0px, 5vw, 90px);
  top: clamp(80px, 18vw, 150px);
  width: clamp(140px, 20vw, 200px);
  height: clamp(160px, 22vw, 220px);
}
.section01 .bottombox .img6 {
  left: 0;
  z-index: -1;
  bottom: clamp(10px, 6vw, 30px);
  width: clamp(150px, 22vw, 210px);
  height: clamp(120px, 18vw, 160px);
}
/* 右上 */
.section01 .bottombox .img3 {
  right: 0; /* ★ clampやめて固定 */
  top: clamp(0px, 4vw, 10px);
  width: clamp(150px, 20vw, 240px);
  height: clamp(190px, 28vw, 260px);
}
/* 右中 */
.section01 .bottombox .img4 {
  z-index: -2;
  right: clamp(0px, 5vw, 80px);
  top: 390px;
  width: clamp(150px, 22vw, 210px);
  height: clamp(120px, 18vw, 160px);
}
/* 右下 */
.section01 .bottombox .img5 {
  z-index: -2;
  right: 0; /* ★ clampやめて固定 */
  bottom: clamp(-40px, -6vw, -80px);
  width: clamp(120px, 18vw, 180px);
  height: clamp(140px, 20vw, 200px);
}
/* =========================
  下部：ボタン
========================= */
.section01 .bottombox .bottom_con {
  justify-content: center;
  margin-top: 520px; /* 中央動画分だけ下げる */
}
@media screen and (max-width: 1080px) {}
@media screen and (max-width: 768px) {
  .section01 .bottombox .top_con {
    justify-content: space-around;
  }
  /* 全画像：absolute解除 */
  .section01 .bottombox .txtbox1, .section01 .bottombox .top_con .img {
    position: relative;
  }
  .section01 .bottombox .img1 {
    top: 20px;
    width: 180px;
    height: 200px;
  }
  .section01 .bottombox .img2 {
    top: -20px;
  }
  .section01 .bottombox .img3 {
    top: 30px;
  }
  .section01 .bottombox .img4 {
    top: 80px;
  }
}
@media screen and (max-width: 480px) {
  .section01 .bottombox .img1, .section01 .bottombox .img2, .section01 .bottombox .img3, .section01 .bottombox .img4, .section01 .bottombox .img5, .section01 .bottombox .img6 {
    transform: scale(0.9);
  }
  .section01 .bottombox .bottom_con {
    margin-top: 720px;
  }
}
.reason_wrap {
  position: relative;
}
/* 中央寄せ */
.reason_inner {
  width: min(1000px, 92%);
  margin: 0 auto;
  text-align: center;
}
/* =========================
  タイトル
========================= */
.reason_title {
  margin: 0 0 10px;
  font-weight: 900;
  line-height: 1.6;
}
/* span強調（クラスなし条件対応） */
.reason_title span {
  color: #0A3F8F;
  background-image: radial-gradient(circle at center, #01418E 20%, transparent 30%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
  padding-top: .4em; /* 縦方向の位置調整 */
}
/* =========================
  カード3列
========================= */
.reason_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
/* =========================
  カード
========================= */
.reason_cards .reason_card {
  position: relative;
  background-color: #fff;
  border-radius: 6px;
  padding: 40px 20px 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
/* =========================
  丸アイコン（imgbox使用）
========================= */
.reason_cards .reason_icon {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%); !important;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #0A3F8F;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.reason_cards .reason_icon i {
  color: #01418E;
}
/* =========================
  カード内テキスト
========================= */
.reason_cards .reason_card .txtbox h2 {
  margin: 0;
  font-weight: 800;
  line-height: 1.6;
}
.reason_cards .reason_card .txtbox h2 span {
  color: #01418E;
}
/* =========================
  レスポンシブ
========================= */
@media screen and (max-width: 768px) {
  .reason_cards {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 300px;
  }
  .reason_cards .reason_card {
    padding: 36px 18px 24px;
  }
}
/* =========================
  FV（動画ヒーロー）
========================= */
.fv {
  position: relative;
  width: 100%;
  padding-top: 130px;
  overflow: hidden;
}
.fv::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%; /* ← FVの50%から下 */
  width: 100%;
  height: 50%; /* 下半分 */
  background-image: url("https://tsc-tsc.jp/system_panel/uploads/images/bg.png"); /* ← ハニカム画像 */
  background-repeat: repeat;
  background-size: auto;
  z-index: -2; /* FVトップより下 */
  pointer-events: none;
}
/* =========================
  FV TOP（枠・全体）
========================= */
.fv-top {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0px auto;
  border: 3px solid #1E64B7; /* 青枠 */
  border-radius: 10px;
  background: #fff;
}
/* =========================
  背景：動画
========================= */
.fv-top .topimgbox {
  position: relative;
  width: 100%;
  height: clamp(360px, 75vh, 800px);
  overflow: hidden;
}
.fv-top .topimgbox video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* =========================
  テキストBOX
========================= */
.fv-top .txtbox {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 3vw, 36px);
  top: clamp(100px, 15vh, 250px);
  max-width: 620px;
  color: #fff;
}
.fv-top .fv-lead {
  margin: 0 0 18px;
  font-weight: 800;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.fv-top .fv-title {
  margin: 0 0 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}
.fv-top .fv-sub {
  margin: 0 0 10px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.fv-top .fv-note {
  margin: 0;
  font-weight: 400;
  opacity: 0.75;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
/* =========================
  タグ（pタグ使用）
========================= */
.fv-top .fv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px;
}
.fv-top .fv-tags p {
  margin: 0;
  padding: 8px 14px;
  background-color: #0A3F8F;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.fv-top .fv-en{
  position: absolute;
  top: 100%;
  left: 0;

  white-space: nowrap;

  font-weight: 900;
  letter-spacing: 0.08em;
  color: rgba(30, 186, 238, 0.95);
  line-height: 1;
  pointer-events: none;

  display: inline-block;
  transform: translate3d(0, -50%, 0);
  will-change: transform;

  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, -50%, 0);
  }
  100% {
    transform: translate3d(-33.3333%, -50%, 0);
  }
}
@media screen and (max-width: 1080px) {
  .fv {
    padding-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .fv-top .txtbox {
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
      padding: 0 10px;
  }
  .fv-top .fv-en {
    font-size: 30px;
  }
}

.section01 .topvideo{
	display: block;
	margin: 0 auto 60px;
	width: 90%;
	max-width: 1000px;
}
.section01 .topvideo video{
	width: 100%;
	height: auto;
	border: 6px solid #01418E;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 0 30px rgba(0,0,0,0.3);
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {
.section01 .topvideo video{
	width: 100%;
	height: auto;
	border: 3px solid #01418E;
	border-radius: 6px;
	overflow: hidden;
}

}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {}