@charset "UTF-8";
.page-hero .content-wrapper {
  padding-top: 20vh;
}
.page-hero .content-wrapper h1 {
  font-size: 60px;
  margin-bottom: 3vh;
}
.page-hero .content-wrapper .page-hero-disc {
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
}

@media (max-width: 768px) {
  .page-hero .content-wrapper {
    padding-top: 10vh;
  }
  .page-hero .content-wrapper .page-hero-disc {
    font-size: 13px;
  }
}
/* ヘッダーは共通で使用可能 */
header {
  background: #fff;
  color: #000;
}

/* 固定ページ全体のコンテナ */
.custom-content {
  padding: 2em 0;
}

/* ヒーローセクション */
.page-hero {
  padding: 2em 0;
  margin-bottom: 50px;
}

.page-hero .content-wrapper {
  margin: 0 7%;
}

.page-hero h1 {
  font-size: 2em;
  margin-bottom: 1em;
  font-weight: bold;
}

.page-hero-disc {
  font-size: 1em;
  line-height: 1.7;
  color: #333;
  margin-top: 1em;
}

/* 本文部分 */
.custom-content > div {
  margin: 0 7%;
  line-height: 1.7;
  margin-bottom: 2em;
}

.wp-block-heading {
  font-size: 18px;
}

.page-block-editor-section p {
  font-size: 14px;
}

/* 以下、ブロックエディター由来の要素に対するスタイル */
/* 画像ブロック */
.custom-content .wp-block-image {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  aspect-ratio: 1.6/1;
}

.custom-content .wp-block-image img {
  border-radius: 8px;
  max-width: 100%;
  height: -webkit-fill-available;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.custom-content .wp-block-image figcaption {
  margin-top: 0.5em;
  font-size: 0.9em;
  color: #555;
  text-align: center;
}

/* ギャラリーブロック */
.wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wp-block-gallery .blocks-gallery-item {
  width: calc(50% - 5px);
}

.wp-block-gallery .blocks-gallery-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* 必要に応じて、固定ページ特有の要素（要素名、クラス）を追加・カスタマイズしていってな！ */
.wpcf7 input {
  all: unset;
}

.wpcf7 label {
  font-size: 16px;
  margin-bottom: 10px;
}
.wpcf7 input:not(.wpcf7-submit),
.wpcf7 textarea {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
  border: solid 1px #000;
}
.wpcf7 input.wpcf7-submit {
  border: solid 1px #000;
  background: #000;
  color: #fff;
  padding: 5px 10px;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .wpcf7 {
    margin-top: 50px;
  }
}
ul *,
li {
  list-style-type: none;
}

li::marker {
  display: none;
}

.service-achievement-wrapper {
  margin-bottom: 75px;
}

.service-achievement-ttl {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}

.service-achievement-output .sao-ttl {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}
.service-achievement-output .sao-list {
  font-size: 12px;
}

.service-achievements-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.saw-content .saw-c-banner {
  position: relative;
  padding: 30px;
  border-radius: 25px;
  background-size: cover;
  background: #cdcdcd;
}
.saw-content .saw-c-banner h2,
.saw-content .saw-c-banner p,
.saw-content .saw-c-banner ul,
.saw-content .saw-c-banner .saw-c-disc {
  z-index: 10;
  position: inherit;
}
.saw-content .saw-c-banner h2 {
  font-size: 24px;
  margin-bottom: 15px;
}
.saw-content .saw-c-banner p {
  font-size: 16px;
  display: block;
  margin-top: 30px;
}
.saw-content .saw-c-banner ul {
  margin-top: 20px;
  padding-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
}
.saw-content .saw-c-banner ul li {
  margin-right: 20px;
  margin-bottom: 15px;
  font-size: 14px;
  background: #416b92;
  color: #fff;
  border-radius: 30px;
  padding: 5px 10px;
}
.saw-content .saw-c-banner::after {
  display: block;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.saw-content .saw-c-disc {
  margin-top: 30px;
}
.saw-content .saw-c-disc p {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .service-achievements-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
/* --- クリックする動画サムネイルのスタイル --- */
.video-thumbnail {
  cursor: pointer; /* クリックできることを示すカーソルに変更 */
  width: 100%;
  height: auto;
  display: block;
}

/* --- ポップアップ全体のラッパー --- */
.video-popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex; /* is-showでの切り替えから、常にflexにしておく */
  justify-content: center;
  align-items: center;
  /* フェードイン・アウトのための設定 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

/* ポップアップ表示時のスタイル */
.video-popup-wrapper.is-show {
  opacity: 1;
  visibility: visible;
}

/* --- 半透明の黒い背景 --- */
.video-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

/* --- 動画コンテンツ部分 --- */
.video-popup-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  z-index: 1;
}

.video-popup-content video {
  width: 350px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .video-popup-content video {
    width: 80%;
  }
}
/* --- 閉じるボタン（×） --- */
.video-popup-close {
  position: absolute;
  top: -26px;
  right: 0;
  font-size: 100px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* --- 再生ボタンのスタイル --- */
/* ボタンを配置するための基準として設定 */
.c-v-c-video {
  position: relative;
  cursor: pointer; /* カーソルを指マークに */
}

/* 円形の背景を作成 */
.c-v-c-video::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; /* 円の直径 */
  height: 60px; /* 円の直径 */
  background-color: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
  border-radius: 50%; /* 正円にする */
  z-index: 1;
  transition: background-color 0.2s ease; /* ホバー時のアニメーション */
  /* これが重要！ボタンがクリックの邪魔をしないようにする */
  pointer-events: none;
}

/* 三角形の再生マークを作成 */
.c-v-c-video::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  /* 三角形を円の少し右寄りに配置して中央に見せる */
  transform: translate(-40%, -50%);
  /* ボーダーを使って三角形を描画 */
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px; /* 上・右・下・左 */
  border-color: transparent transparent transparent #ffffff; /* 左のボーダーだけ白くする */
  z-index: 2;
  /* これが重要！ボタンがクリックの邪魔をしないようにする */
  pointer-events: none;
}

/* カード全体をホバーした時に円の背景色を少し濃くする */
.client-voice-card:hover .c-v-c-video::before {
  background-color: rgba(0, 0, 0, 0.7);
}

.client-voice-card {
  display: flex;
  gap: 100px;
  margin-bottom: 50px;
}
.client-voice-card .c-v-c-video {
  flex: 1;
}
.client-voice-card .c-v-c-video video {
  display: block;
  width: 50%;
  margin: 0 auto;
}
.client-voice-card .c-v-c-desc {
  flex: 1;
}

@media (max-width: 768px) {
  .client-voice-card {
    flex-direction: column;
    gap: 20px;
  }
  .client-voice-card .client-voice-card video {
    width: 66%;
  }
  .video-popup-close {
    font-size: 60px;
  }
}
/* WHY US セクション */
.about-desc-section {
  padding: 80px 0;
  background-color: #fff;
  margin: 0 auto;
  max-width: 1200px;
  border-radius: 8px;
}

.about-desc-section h2 {
  font-size: 32px;
  color: #3e6a94;
  margin-bottom: 40px;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 30px;
}

.about-desc-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 40px;
  background-color: #3e6a94;
}

.about-desc-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #212121;
  letter-spacing: 0.02em;
}

.about-desc-intro {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #334155;
}

.about-desc-description {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
}

.about-desc-description p {
  margin-bottom: 20px;
}

.about-desc-description p:last-child {
  margin-bottom: 0;
}

/* フェードインアニメーション対応 */
.about-desc-section.fadeinUp {
  opacity: 0;
}

.about-desc-section.fadeinUp.animate__animated {
  --animate-duration: 1.2s;
  --animate-delay: 0.3s;
  --animate-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: both;
}

/* レスポンシブデザイン - タブレット */
@media (max-width: 768px) {
  .about-desc-section {
    padding: 60px 0;
    margin: 30px 0px;
  }
  .about-desc-section h2 {
    font-size: 26px;
    margin-bottom: 30px;
    padding-left: 20px;
  }
  .about-desc-section h2::before {
    height: 30px;
  }
  .about-desc-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .about-desc-intro,
  .about-desc-description {
    font-size: 15px;
  }
}
/* レスポンシブデザイン - スマートフォン */
@media (max-width: 480px) {
  .about-desc-section {
    padding: 40px 0;
    margin: 20px 0px;
  }
  .about-desc-content {
    margin: 0;
  }
  .about-desc-section h2 {
    font-size: 20px;
    margin-bottom: 25px;
    padding-left: 15px;
  }
  .about-desc-section h2::before {
    width: 3px;
    height: 25px;
  }
  .about-desc-title {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.5;
  }
  .about-desc-intro,
  .about-desc-description {
    font-size: 14px;
    line-height: 1.7;
  }
  .about-desc-description p {
    margin-bottom: 15px;
  }
}
/* ミッションボックス */
.mission-box {
  background-color: #416b92;
  padding: 60px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.mission-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.mission-statement {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.mission-text {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.02em;
  max-width: 900px;
  margin: 0 auto;
}

.mission-box.fadeinUp {
  opacity: 0;
}

.mission-box.fadeinUp.animate__animated {
  --animate-duration: 1.2s;
  --animate-delay: 0.3s;
  --animate-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: both;
}

/* レスポンシブデザイン - タブレット */
@media (max-width: 768px) {
  .mission-box {
    padding: 40px 30px;
  }
  .mission-statement {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .mission-text {
    font-size: 18px;
  }
}
/* レスポンシブデザイン - スマートフォン */
@media (max-width: 480px) {
  .mission-box {
    padding: 30px 20px;
    border-radius: 6px;
  }
  .mission-statement {
    font-size: 20px;
    margin-bottom: 25px;
    line-height: 1.3;
  }
  .mission-text {
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
  }
}
/* バリュー項目 */
.value-items {
  display: grid;
  gap: 30px;
  margin-top: 50px;
}

.value-item {
  border-bottom: 2px solid #3e6a94;
  padding-bottom: 20px;
}

.value-item-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #212121;
}

.value-item-description {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
}

.value-item.fadeinUp {
  opacity: 0;
}

.value-item.fadeinUp.animate__animated {
  --animate-duration: 1.2s;
  --animate-delay: 0.3s;
  --animate-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: both;
}

.value-img img {
  width: 100%;
  display: block;
  margin: 0 auto;
  margin-top: 50px;
  max-width: 70%;
}

@media (max-width: 768px) {
  .value-img img {
    max-width: 100%;
  }
}
/* レスポンシブデザイン - タブレット */
@media (max-width: 768px) {
  .value-item-title {
    font-size: 18px;
  }
  .value-item-description {
    font-size: 15px;
  }
}
/* レスポンシブデザイン - スマートフォン */
@media (max-width: 480px) {
  .value-items {
    gap: 20px;
  }
  .value-item {
    padding-bottom: 15px;
  }
  .value-item-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .value-item-description {
    font-size: 14px;
    line-height: 1.7;
  }
}
/* Our Team セクション */
.team-section {
  padding: 80px 0;
  background-color: #fff;
}

.team-content {
  margin: 0 7%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.team-section h2 {
  font-size: 32px;
  color: #3e6a94;
  margin-bottom: 60px;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 30px;
}

.team-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 40px;
  background-color: #3e6a94;
}

/* チームメンバーグリッド */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 40px;
  margin-bottom: 40px;
}

.team-member {
  text-align: center;
}

.member-photo {
  width: 100%;
  max-width: 300px;
  height: 350px;
  background-color: #e8f0f8;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-photo:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.member-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.member-role {
  font-size: 14px;
  color: #666;
  letter-spacing: 0.05em;
  text-align: left;
  margin-top: 20px;
}

.member-name {
  font-size: 20px;
  font-weight: bold;
  color: #212121;
  letter-spacing: 0.1em;
  text-align: left;
}

.member-name-en {
  font-size: 18px;
  font-weight: 500;
  margin-top: 5px;
}

/* フェードインアニメーション対応 */
.team-section.fadeinUp,
.team-member.fadeinUp {
  opacity: 0;
}

.team-section.fadeinUp.animate__animated,
.team-member.fadeinUp.animate__animated {
  --animate-duration: 1.2s;
  --animate-delay: 0.3s;
  --animate-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: both;
}

.team-member:nth-child(2) {
  --animate-delay: 0.4s;
}

.team-member:nth-child(3) {
  --animate-delay: 0.5s;
}

.team-member:nth-child(4) {
  --animate-delay: 0.6s;
}

/* レスポンシブデザイン - タブレット */
@media (max-width: 768px) {
  .team-section {
    padding: 60px 0;
  }
  .team-content {
    margin: 0 5%;
  }
  .team-section h2 {
    font-size: 26px;
    margin-bottom: 40px;
    padding-left: 20px;
  }
  .team-section h2::before {
    height: 30px;
  }
  .team-grid {
    gap: 40px 30px;
  }
  .member-photo {
    max-width: 250px;
    height: 300px;
  }
  .member-photo::after {
    font-size: 40px;
  }
  .member-role {
    font-size: 13px;
  }
  .member-name {
    font-size: 18px;
  }
  .member-name-en {
    font-size: 16px;
  }
}
/* レスポンシブデザイン - スマートフォン */
@media (max-width: 480px) {
  .team-section {
    padding: 40px 0;
  }
  .team-content {
    margin: 0 4%;
  }
  .team-section h2 {
    font-size: 20px;
    margin-bottom: 30px;
    padding-left: 15px;
  }
  .team-section h2::before {
    width: 3px;
    height: 25px;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .member-photo {
    max-width: 100%;
    height: 320px;
  }
  .member-photo::after {
    font-size: 36px;
  }
  .member-role {
    font-size: 12px;
    margin-bottom: 6px;
  }
  .member-name {
    font-size: 16px;
  }
  .member-name-en {
    font-size: 14px;
  }
}
/* 大画面対応 */
@media (min-width: 1500px) {
  .team-grid {
    gap: 50px 40px;
  }
}
/* 企業概要セクション */
.company-info-section {
  padding: 80px 0;
  background-color: #fff;
}

.company-info-content {
  margin: 0 7%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.company-info-section h2 {
  font-size: 32px;
  color: #3e6a94;
  margin-bottom: 60px;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 30px;
}

.company-info-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 40px;
  background-color: #3e6a94;
}

/* 企業情報テーブル */
.company-info-table {
  width: 100%;
  border-collapse: collapse;
}

.company-info-table tr {
  border-bottom: 1px solid #3e6a94;
}

.company-info-table tr:last-child {
  border-bottom: 2px solid #3e6a94;
}

.company-info-table th,
.company-info-table td {
  padding: 25px 20px;
  text-align: left;
  vertical-align: top;
}

.company-info-table th {
  width: 180px;
  font-size: 16px;
  font-weight: 600;
  color: #212121;
  background-color: transparent;
}

.company-info-table td {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
}

/* 事業内容のリストスタイル */
.business-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.business-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  line-height: 1.8;
}

.business-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #3e6a94;
  font-weight: bold;
  font-size: 18px;
}

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

/* フェードインアニメーション対応 */
.company-info-section.fadeinUp,
.company-info-table tr.fadeinUp {
  opacity: 0;
}

.company-info-section.fadeinUp.animate__animated,
.company-info-table tr.fadeinUp.animate__animated {
  --animate-duration: 1.2s;
  --animate-delay: 0.3s;
  --animate-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: both;
}

.company-info-table tr:nth-child(2) {
  --animate-delay: 0.4s;
}

.company-info-table tr:nth-child(3) {
  --animate-delay: 0.5s;
}

.company-info-table tr:nth-child(4) {
  --animate-delay: 0.6s;
}

.company-info-table tr:nth-child(5) {
  --animate-delay: 0.7s;
}

.company-info-table tr:nth-child(6) {
  --animate-delay: 0.8s;
}

.company-info-table tr:nth-child(7) {
  --animate-delay: 0.9s;
}

.company-info-table tr:nth-child(8) {
  --animate-delay: 1.0s;
}

/* レスポンシブデザイン - タブレット */
@media (max-width: 768px) {
  .company-info-section {
    padding: 60px 0;
  }
  .company-info-content {
    margin: 0 5%;
  }
  .company-info-section h2 {
    font-size: 26px;
    margin-bottom: 40px;
    padding-left: 20px;
  }
  .company-info-section h2::before {
    height: 30px;
  }
  .company-info-table th {
    width: 140px;
    font-size: 15px;
  }
  .company-info-table td {
    font-size: 15px;
  }
  .company-info-table th,
  .company-info-table td {
    padding: 20px 15px;
  }
  .business-list li {
    margin-bottom: 10px;
  }
}
/* レスポンシブデザイン - スマートフォン */
@media (max-width: 480px) {
  .company-info-section {
    padding: 40px 0;
  }
  .company-info-content {
    margin: 0 4%;
  }
  .company-info-section h2 {
    font-size: 20px;
    margin-bottom: 30px;
    padding-left: 15px;
  }
  .company-info-section h2::before {
    width: 3px;
    height: 25px;
  }
  .company-info-table {
    display: block;
  }
  .company-info-table tr {
    display: block;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .company-info-table th,
  .company-info-table td {
    display: block;
    width: 100%;
    padding: 0;
    text-align: left;
  }
  .company-info-table th {
    font-size: 14px;
    margin-bottom: 8px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e0e0e0;
  }
  .company-info-table td {
    font-size: 14px;
    line-height: 1.7;
  }
  .business-list li {
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 18px;
  }
  .business-list li:before {
    font-size: 16px;
  }
}
.mobile-br {
  display: none;
}

@media (max-width: 768px) {
  .mobile-br {
    display: block;
  }
}/*# sourceMappingURL=page.css.map */