@charset "UTF-8";
.bg-white {
  background-color: #fff;
}

.bg-purple {
  background-color: #2A78B3;
}

.bg-cyaan {
  background-color: #4c10ee;
}

.bg-gray {
  background-color: #F5F5F5;
}

.c-white {
  color: #fff;
}

.c-purple {
  color: #2A78B3;
}

.c-gray {
  color: #C9C9C9;
}

/****************************************************************************
****    TOP
****************************************************************************/
/**      メインビジュアル      **/
section.mv-sec {
  width: 100%;
  height: 100vh;
  max-height: 960px;
  position: relative;
  overflow-y: hidden;
}
section.mv-sec::before {
  content: "";
  content: "";
  display: block;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
  background-color: #10216D;
}

.mv-container {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}

h1.mv-copy_top {
  font-size: clamp(24px, 4.5vw, 40px);
  font-weight: bold;
  line-height: 1.6;
}

p.mv-text {
  font-size: 16px;
  margin-top: 40px;
}

.mv-text_area {
  width: 100%;
  overflow-x: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}

.mv-text_en {
  display: flex;
  animation: textScroll 20s linear infinite;
  gap: 60px;
}
.mv-text_en span {
  font-size: 120px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 4px rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  letter-spacing: 0.05em;
  font-family: "Poppins", sans-serif;
  flex-shrink: 0;
}
.mv-text_en img {
  width: 100%;
}

@keyframes textScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.mv-link_btn {
  gap: 24px;
  margin-top: 40px;
}

.mv-info_area {
  position: absolute;
  bottom: 16%;
  right: 24px;
  background-color: #fff;
  padding: 16px 24px;
  border-radius: 8px;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

/* BASEポップアップ（Newsの上に配置） */
.mv-info_area.mv-info_base {
  bottom: 24%;
}

.mv-info_text {
  align-items: center;
  gap: 12px;
}

.mv-info_head {
  font-size: 14px;
}

.mv-info_date {
  font-size: 12px;
}

.mv-info_category {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
}

.mv-info_title {
  font-size: 14px;
}

.shape-circle01_img, .shape-circle02_img, .shape-circle03_img, .shape-circle04_img {
  position: absolute;
  z-index: -3;
}
.shape-circle01_img img, .shape-circle02_img img, .shape-circle03_img img, .shape-circle04_img img {
  max-width: 100%;
}

.shape-circle01_img {
  bottom: 0;
  left: 2%;
  animation: shapeAnimation 5s linear infinite 0s;
}

.shape-circle02_img {
  bottom: 0;
  left: 24%;
  animation: shapeAnimation 9s linear infinite 0s;
}

.shape-circle03_img {
  bottom: 0;
  right: 24%;
  animation: shapeAnimation 7s linear infinite 0s;
}

.shape-circle04_img {
  bottom: 0;
  right: 1%;
  animation: shapeAnimation 13s linear infinite 0s;
}

/**      キャッチコピー シマーエフェクト      **/
h1.mv-copy_shimmer {
  font-size: clamp(24px, 4.5vw, 40px);
  font-weight: bold;
  line-height: 1.6;
  color: #fff;
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 35%,
    #7dd3fc 50%,
    #fff 65%,
    #fff 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s ease-in-out infinite;
}

@keyframes shimmerText {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/**      OPRIONシンボル（価値の核）      **/
.mv-symbol_area {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mv-symbol_container {
  position: relative;
  width: 280px;
  height: 161px;
}

.mv-symbol_svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 40px rgba(106, 159, 179, 0.4));
  animation: symbolGlow 4s ease-in-out infinite;
}

@keyframes symbolGlow {
  0%, 100% { 
    filter: drop-shadow(0 0 40px rgba(106, 159, 179, 0.4));
    opacity: 0.9;
  }
  50% { 
    filter: drop-shadow(0 0 60px rgba(106, 159, 179, 0.6));
    opacity: 1;
  }
}

.mv-symbol_pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(106, 159, 179, 0.4);
  border-radius: 80px;
  animation: symbolPulse 3s ease-out infinite;
  pointer-events: none;
}
.mv-symbol_pulse:nth-child(2) { animation-delay: 1s; }
.mv-symbol_pulse:nth-child(3) { animation-delay: 2s; }

@keyframes symbolPulse {
  0% { width: 260px; height: 150px; opacity: 0.6; }
  100% { width: 450px; height: 260px; opacity: 0; }
}

.mv-symbol_label {
  margin-top: 20px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 4px;
  color: rgba(168, 216, 255, 0.8);
}

section.about-sec {
  margin-top: 140px;
  position: relative;
  padding-bottom: 90px;
}

.about-shape01_img, .about-shape02_img {
  position: absolute;
  z-index: -5;
}
.about-shape01_img img, .about-shape02_img img {
  max-width: 100%;
}

.about-shape01_img {
  position: absolute;
  bottom: 0%;
  left: 2%;
  animation: shapeSwing 5s infinite ease-in-out;
}

.about-shape02_img {
  position: absolute;
  top: 10%;
  right: 0%;
  animation: shapeSwing 4s infinite ease-in-out;
}

.about-sec_container {
  justify-content: center;
  align-items: center;
  gap: 80px;
  row-gap: 32px;
}

.about-text_area {
  max-width: 680px;
}

.about-btn {
  margin: 48px auto auto 0;
}

.about-img_area {
  max-width: 580px;
}
.about-img_area img {
  width: 100%;
  animation: shapeSwing 8s infinite ease-in-out;
}

section.service-sec {
  margin-top: 80px;
}

ul.service-list_area {
  margin-top: 60px;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  row-gap: 60px;
}

li.service-list_wrap {
  max-width: 360px;
}

.service-list_thumnail {
  width: 100%;
}
.service-list_thumnail img {
  width: 100%;
}

p.service-title_en {
  font-size: 12px;
  font-weight: bold;
  margin-top: 10px;
}

h3.service-title_jp {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
}

/* 価格タグ（トップページ用） */
.service-price_tag {
  font-size: 14px;
  color: #6b7280;
  margin-top: 12px;
  font-weight: 500;
}

/* 3サービスレイアウト */
.service-three-items {
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .service-three-items {
    grid-template-columns: 1fr;
  }
}

.service-btn {
  margin: 50px auto 0;
}
.service-btn:hover {
  background-color: #fff;
}

section.standard-sec {
  position: relative;
  padding: 80px 0;
  margin-top: 120px;
  overflow-y: hidden;
}
section.standard-sec::before {
  content: "";
  display: block;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
  background-color: #1B244D;
  border-radius: 45px;
}

.standard-shape01_img, .standard-shape02_img, .standard-shape03_img {
  position: absolute;
  z-index: -3;
}
.standard-shape01_img img, .standard-shape02_img img, .standard-shape03_img img {
  max-width: 100%;
}

.standard-shape01_img {
  position: absolute;
  bottom: 0;
  left: 1%;
  animation: shapeAnimation 5s linear infinite 0s;
}

.standard-shape02_img {
  position: absolute;
  bottom: 0;
  right: 25%;
  animation: shapeAnimation 6s linear infinite 0s;
}

.standard-shape03_img {
  position: absolute;
  bottom: 0;
  right: 0;
  animation: shapeAnimation 3s linear infinite 0s;
}

.standard-title_wrap {
  align-items: end;
  gap: 32px;
  row-gap: 24px;
}

ul.standard-list_area {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  row-gap: 24px;
  margin-top: 60px;
}

li.standard-list_wrap {
  padding: 24px;
  border-radius: 16px;
}

.standard-title_top {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  row-gap: 12px;
}

h3.standard-title_head {
  font-size: 20px;
  font-weight: bold;
}

p.standard-title_en {
  font-size: 32px;
  font-weight: bold;
}

p.standard-text {
  margin-top: 24px;
  font-size: 16px;
}

.standard-btn {
  margin: 50px auto 0;
}

section.recruit-sec {
  margin-top: 180px;
  position: relative;
  padding-bottom: 100px;
}

.recuir-text_en {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -5;
}
.recuir-text_en img {
  width: 100%;
}

.recruit-sec_container {
  justify-content: center;
  align-items: center;
  gap: 80px;
  row-gap: 40px;
}

.recruit-text_area {
  max-width: 580px;
}

.recruit-btn {
  max-width: 320px;
  margin-top: 60px;
}
.recruit-btn img {
  width: 100%;
  transition: .4s;
}
.recruit-btn img:hover {
  filter: hue-rotate(45deg);
}

.recruit-img_area {
  width: 540px;
  gap: 32px;
}

.recruit-move01_img, .recruit-move02_img, .recruit-move03_img {
  max-width: 140px;
}
.recruit-move01_img img, .recruit-move02_img img, .recruit-move03_img img {
  width: 100%;
}

.recruit-move01_img {
  animation: recruitMoveImg01 2.3s ease-in-out infinite alternate-reverse;
}

.recruit-move02_img {
  animation: recruitMoveImg02 2.3s ease-in-out infinite alternate-reverse;
}

.recruit-move03_img {
  animation: recruitMoveImg03 2.3s ease-in-out infinite alternate-reverse;
}

@keyframes recruitMoveImg01 {
  0% {
    transform: translateY(60px);
  }
  100% {
    transform: translateY(-60px);
  }
}
@keyframes recruitMoveImg02 {
  0% {
    transform: translateY(-60px);
  }
  100% {
    transform: translateY(60px);
  }
}
@keyframes recruitMoveImg03 {
  0% {
    transform: translateY(60px);
  }
  100% {
    transform: translateY(-60px);
  }
}
section.news-sec {
  position: relative;
  padding: 80px 0;
  margin-top: 140px;
}
section.news-sec::before {
  content: "";
  display: block;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
  background-color: #FAFAFA;
}

ul.news-list_area {
  max-width: 760px;
  margin: 60px auto 0;
}

li.news-list_wrap {
  margin-bottom: 26px;
  padding: 26px 16px;
  border-bottom: dotted 1px #cdcdcd;
  justify-content: space-between;
  align-items: center;
}

.news-list_text {
  align-items: center;
  gap: 24px;
}

.news-date {
  font-size: 12px;
}

.news-category {
  font-size: 10px;
  border-radius: 2px;
  padding: 2px 8px;
}

.news-title {
  font-size: 16px;
}

section.faq-sec {
  margin-top: 120px;
}

ul.faq-list_area {
  margin-top: 60px;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

li.faq-list_wrap {
  width: 48%;
  padding: 25px;
  border-radius: 12px;
}

h3.faq-title_head {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: dotted 2px #fff;
}

p.faq-text {
  margin-top: 24px;
  font-size: 16px;
}

section.eligibility-sec {
  margin-top: 120px;
}

ul.eligibility-list_area {
  margin-top: 60px;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

li.eligibility-list_img {
  max-width: 340px;
  min-height: 100px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
li.eligibility-list_img:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
li.eligibility-list_img img {
  width: auto;
  height: auto;
  max-width: 160px;
  max-height: 50px;
  object-fit: contain;
}

/* AWS, GCP, Azure, Difyアイコンのサイズ調整（他より小さいため拡大） */
li.eligibility-list_img img[src*="tech-aws"],
li.eligibility-list_img img[src*="tech-gcp"],
li.eligibility-list_img img[src*="tech-azure"],
li.eligibility-list_img img[src*="tech-dify"] {
  transform: scale(1.4);
}

.ai-tech-note {
  margin-top: 32px;
  font-size: 14px;
  color: #888;
}

/****************************************************************************
****    下層ページ
****************************************************************************/
section.message-sec {
  position: relative;
  padding-bottom: 80px;
  overflow-x: hidden;
}

.message-sec_container {
  justify-content: center;
  align-items: center;
  gap: 80px;
  row-gap: 32px;
}

.message-text_area {
  max-width: 560px;
}

.message-img_area {
  max-width: 680px;
}
.message-img_area img {
  width: 100%;
}

.message-text_en {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  animation: textScroll 20s linear infinite;
  gap: 60px;
}
.message-text_en span {
  font-size: 120px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 4px rgba(30, 60, 114, 0.3);
  white-space: nowrap;
  letter-spacing: 0.05em;
  font-family: "Poppins", sans-serif;
  flex-shrink: 0;
}
.message-text_en img {
  width: 100%;
}

section.strength-sec {
  margin-top: 140px;
}

.strength-img_area {
  margin: 60px auto 0;
  max-width: 1080px;
}
.strength-img_area img {
  width: 100%;
}

aside.business-message {
  margin-top: 80px;
}

h2.business-title_head {
  font-size: clamp(24px, 7vw, 56px);
  font-weight: bold;
}

p.business-text_en {
  margin-top: 40px;
  font-size: 32px;
  font-weight: bold;
}

.owner-sec_container {
  justify-content: center;
  align-items: center;
  gap: 80px;
  row-gap: 32px;
}

.owner-img_area {
  max-width: 640px;
}
.owner-img_area img {
  width: 100%;
}

.owner-text_area {
  max-width: 560px;
}

.owner-name {
  font-size: 24px;
  font-weight: bold;
  margin-top: 24px;
}

.owner-works {
  font-size: 14px;
  margin-top: 16px;
}

section.company-sec {
  position: relative;
  padding: 80px 0;
  margin-top: 100px;
}
section.company-sec::before {
  content: "";
  display: block;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
  background-color: #FAFAFA;
}

ul.company-list_area {
  max-width: 960px;
  margin: 80px auto 0;
}

li.company-list_wrap {
  grid-template-columns: 1fr 2fr;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: dotted 2px #c7c7c7;
}

.company-list_head {
  font-size: 16px;
  font-weight: bold;
}

.company-list_text {
  font-size: 16px;
}

section.contact-sec {
  padding: 80px;
  position: relative;
}
section.contact-sec::before {
  content: "";
  display: block;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
  width: 90%;
  background-color: #fbfbfb;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 45px;
}

.contact-form_area {
  max-width: 600px;
  margin: 80px auto 0;
}

.contact-input_wrap {
  margin-bottom: 32px;
}

.contact-input_head {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: bold;
}

.contact-input {
  font-size: 16px;
}
.contact-input input[type=text] {
  width: 100%;
  height: 40px;
  border: solid 1px #c0c0c0;
  padding: 6px;
  background-color: unset;
  font-size: 16px;
  border-radius: 6px;
}
.contact-input input[type=tel] {
  width: 100%;
  height: 40px;
  border: solid 1px #c0c0c0;
  padding: 6px;
  background-color: unset;
  font-size: 16px;
  border-radius: 6px;
}
.contact-input input[type=email] {
  width: 100%;
  height: 40px;
  border: solid 1px #c0c0c0;
  padding: 6px;
  background-color: unset;
  font-size: 16px;
  border-radius: 6px;
}
.contact-input textarea {
  width: 100%;
  height: 220px;
  border: solid 1px #c0c0c0;
  padding: 6px;
  background-color: unset;
  resize: none;
  font-size: 16px;
  border-radius: 6px;
}
span.required {
    margin-left: 12px;
    font-size: 12px;
    color: #c03838;
}
.contact-submit {
  margin: 32px auto 0;
  width: 200px;
}
.contact-submit input[type=submit] {
  width: 200px;
  height: 56px;
  background-color: #2A78B3;
  border: unset;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
}

section.service-contents-sec {
  width: 96%;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}
section.service-contents-sec::before {
  content: "";
  display: block;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
  background: linear-gradient(to bottom, #324186, #1A329B);
  border-radius: 45px;
}

.service-contents_wrap {
  gap: 80px;
  row-gap: 32px;
  align-items: center;
  margin-top: 80px;
}

.service-contents_img {
  max-width: 600px;
}
.service-contents_img img {
  width: 100%;
}

.service-contents_text {
  max-width: 560px;
}

p.service-top_number {
  font-size: 20px;
  font-weight: bold;
}

h3.service-contents_title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 12px;
}

/* 価格・期間情報 */
.service-price_info {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.service-price_item {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.service-price_item:last-child {
  margin-bottom: 0;
}

.service-price_label {
  display: inline-block;
  width: 60px;
  font-weight: bold;
  margin-right: 16px;
}

/* サービスページ注釈・CTA */
.service-note {
  font-size: 14px;
  margin-top: 60px;
  opacity: 0.8;
}

.service-cta-btn {
  margin: 40px auto 0;
  max-width: 320px;
}

/* 3カラム用（Focus Area） */
.core-three-items {
  justify-content: center;
}

.core-three-items .core-list_wrap {
  width: 30%;
}

.service-contract_wrap {
  padding-top: 24px;
  gap: 10px;
}

.contract-tag {
  padding: 2px 8px;
  font-size: 12px;
  font-weight: bold;
}

p.contract-text {
  font-size: 14px;
  font-weight: 500;
}

.service-result {
  margin-top: 60px;
  padding: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}
.service-result:last-child {
  margin-bottom: 0;
}

h3.service-result_head {
  font-size: 24px;
  font-weight: bold;
}

ul.service-result_area {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.service-result_thumnail {
  width: 100%;
}
.service-result_thumnail img {
  width: 100%;
}

h4.service-result_title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 12px;
}

p.service-result_text {
  font-size: 14px;
  margin-top: 12px;
}

section.core-sec {
  margin-top: 80px;
}

ul.core-list_area {
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

li.core-list_wrap {
  max-width: 300px;
  padding: 32px;
  border-radius: 16px;
  background-color: #fff;
  filter: drop-shadow(2px 2px 2px #e1e1e1);
}

h3.core-title {
  font-size: 20px;
  font-weight: bold;
}

p.core-text {
  font-size: 14px;
  margin-top: 16px;
}

/* サービスページ 新デザイン要素 */
.service-tagline {
  font-size: 16px;
  margin-top: 12px;
  opacity: 0.9;
  line-height: 1.6;
}

.service-price_highlight {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-price_main {
  font-size: 18px;
  font-weight: bold;
}

.service-price_main .price-number {
  font-size: 32px;
  font-family: "Poppins", sans-serif;
  margin-right: 2px;
}

.service-price_sub {
  font-size: 14px;
  margin-top: 8px;
  opacity: 0.85;
}

.service-recommend {
  margin-top: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.service-recommend_head {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.service-recommend_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-recommend_list li {
  font-size: 14px;
  padding-left: 20px;
  margin-bottom: 8px;
  position: relative;
  line-height: 1.5;
}

.service-recommend_list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7dd3fc;
  font-weight: bold;
}

.service-recommend_list li:last-child {
  margin-bottom: 0;
}

/* 診断項目・成果物グリッド */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.service-detail-single {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-detail-block {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-detail_head {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.service-detail_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-detail_list li {
  font-size: 14px;
  padding-left: 16px;
  margin-bottom: 10px;
  position: relative;
  line-height: 1.6;
}

.service-detail_list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #7dd3fc;
}

.service-detail_list li:last-child {
  margin-bottom: 0;
}

.service-detail_list li strong {
  color: #7dd3fc;
}

/* 2カテゴリ表示 */
.service-two-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.service-category-block {
  padding: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-category_head {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.service-category_desc {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.service-category_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-category_list li {
  font-size: 14px;
  padding-left: 16px;
  margin-bottom: 12px;
  position: relative;
  line-height: 1.6;
}

.service-category_list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #7dd3fc;
}

.service-category_list li:last-child {
  margin-bottom: 0;
}

.service-category_list li strong {
  color: #7dd3fc;
}

/* 逆順配置 */
.service-contents_wrap.reverse {
  flex-direction: row-reverse;
}

/****************************************************************************
****    レスポンシブ
****************************************************************************/
@media screen and (min-width: 781px) {
  .sp_part {
    display: none;
  }
}
@media screen and (max-width: 780px) {
  .pc_part {
    display: none;
  }
  /**      メインビジュアル      **/
  section.mv-sec {
    max-height: 780px;
  }
  .mv-container {
    width: 90%;
    left: 5%;
  }
  h1.mv-copy_top {
    font-size: clamp(24px, 4.5vw, 40px);
  }
  p.mv-text {
    font-size: 14px;
    margin-top: 32px;
  }
  .mv-text_area {
    width: 100%;
  }
  .mv-text_en {
    display: flex;
    animation: textScroll 20s linear infinite;
    gap: 24px;
  }
  .mv-text_en span {
    font-size: 48px;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
  }
  .mv-text_en img {
    width: 200%;
  }
  .mv-link_btn {
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  .mv-info_area {
    display: none;
  }
  .mv-info_category {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
  }
  .mv-info_title {
    font-size: 14px;
  }
  .shape-circle01_img, .shape-circle02_img, .shape-circle03_img, .shape-circle04_img {
    position: absolute;
    z-index: -3;
  }
  .shape-circle01_img img, .shape-circle02_img img, .shape-circle03_img img, .shape-circle04_img img {
    max-width: 120px;
  }
  section.about-sec {
    margin-top: 80px;
    padding-bottom: 60px;
  }
  .about-shape01_img img, .about-shape02_img img {
    max-width: 190px;
  }
  .about-sec_container {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    row-gap: 32px;
  }
  .about-text_area {
    max-width: 680px;
  }
  .about-btn {
    margin: 48px auto auto 0;
  }
  section.service-sec {
    margin-top: 80px;
  }
  ul.service-list_area {
    margin-top: 50px;
    grid-template-columns: 1fr;
    gap: 24px;
    row-gap: 36px;
  }
  li.service-list_wrap {
    max-width: 360px;
    margin: 0 auto;
  }
  .service-list_thumnail {
    width: 100%;
  }
  .service-list_thumnail img {
    width: 100%;
  }
  p.service-title_en {
    font-size: 14px;
    margin-top: 10px;
  }
  h3.service-title_jp {
    font-size: 18px;
  }
  .service-btn {
    margin: 50px auto 0;
  }
  section.standard-sec {
    padding: 60px 0;
    margin-top: 70px;
  }
  section.standard-sec::before {
    border-radius: 0;
  }
  .standard-title_wrap {
    align-items: end;
    gap: 32px;
    row-gap: 24px;
    flex-wrap: wrap;
  }
  ul.standard-list_area {
    grid-template-columns: 1fr;
    gap: 32px;
    row-gap: 24px;
    margin-top: 60px;
  }
  li.standard-list_wrap {
    padding: 24px;
    border-radius: 16px;
  }
  .standard-title_top {
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    row-gap: 12px;
  }
  h3.standard-title_head {
    font-size: 24px;
    font-weight: bold;
  }
  p.standard-title_en {
    font-size: 32px;
    font-weight: bold;
  }
  p.standard-text {
    margin-top: 24px;
    font-size: 16px;
  }
  .standard-btn {
    margin: 50px auto 0;
  }
  section.recruit-sec {
    margin-top: 140px;
    padding-bottom: 70px;
  }
  .recruit-sec_container {
    flex-wrap: wrap;
    row-gap: 40px;
    flex-direction: column-reverse;
  }
  .recruit-text_area {
    max-width: 580px;
    margin-top: 40px;
  }
  .recruit-btn {
    max-width: 320px;
    margin-top: 40px;
  }
  .recruit-btn img {
    width: 100%;
  }
  .recruit-img_area {
    max-width: 540px;
    width: 100%;
    gap: 16px;
    margin: 0 auto;
    justify-content: center;
  }
  .recruit-move01_img, .recruit-move02_img, .recruit-move03_img {
    max-width: 90px;
  }
  @keyframes recruitMoveImg01 {
    0% {
      transform: translateY(30px);
    }
    100% {
      transform: translateY(-30px);
    }
  }
  @keyframes recruitMoveImg02 {
    0% {
      transform: translateY(-30px);
    }
    100% {
      transform: translateY(30px);
    }
  }
  @keyframes recruitMoveImg03 {
    0% {
      transform: translateY(30px);
    }
    100% {
      transform: translateY(-30px);
    }
  }
  section.news-sec {
    padding: 60px 0;
    margin-top: 70px;
  }
  ul.news-list_area {
    max-width: 760px;
    margin: 40px auto 0;
  }
  li.news-list_wrap {
    margin-bottom: 16px;
    padding: 16px 12px;
    display: block;
  }
  .news-list_text {
    display: block;
  }
  .news-date {
    font-size: 14px;
  }
  .news-category {
    font-size: 10px;
    border-radius: 2px;
    padding: 2px 8px;
    width: -moz-max-content;
    width: max-content;
    margin-top: 10px;
  }
  .news-title {
    font-size: 16px;
    margin-top: 10px;
  }
  .news-arrow {
    display: none;
  }
  section.faq-sec {
    margin-top: 70px;
  }
  ul.faq-list_area {
    margin-top: 40px;
    gap: 24px;
    flex-wrap: wrap;
  }
  li.faq-list_wrap {
    width: 100%;
    max-width: 360px;
    padding: 25px;
    border-radius: 12px;
  }
  h3.faq-title_head {
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: dotted 2px #fff;
  }
  p.faq-text {
    margin-top: 24px;
    font-size: 16px;
  }
  section.eligibility-sec {
    margin-top: 70px;
  }
  ul.eligibility-list_area {
    margin-top: 40px;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  li.eligibility-list_img {
    max-width: none;
    min-height: 60px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 8px;
  }
  li.eligibility-list_img img {
    width: auto;
    height: auto;
    max-width: 80px;
    max-height: 32px;
  }
  .ai-tech-note {
    margin-top: 24px;
    font-size: 13px;
  }
  /****************************************************************************
  ****    下層ページ
  ****************************************************************************/
  section.message-sec {
    position: relative;
    padding-bottom: 130px;
    overflow-x: hidden;
  }
  .message-sec_container {
    justify-content: center;
    align-items: center;
    gap: 80px;
    row-gap: 32px;
    flex-wrap: wrap;
  }
  .message-text_area {
    max-width: 560px;
  }
  .message-img_area {
    display: block;
    margin: 0 auto 30px;
    max-width: 600px;
    width: 90%;
  }
  .message-text_en {
    gap: 24px;
  }
  .message-text_en span {
    font-size: 48px;
    -webkit-text-stroke: 2px rgba(30, 60, 114, 0.3);
  }
  .message-text_en img {
    width: 200%;
  }
  section.strength-sec {
    margin-top: 80px;
  }
  .strength-img_area {
    margin: 40px auto 0;
    max-width: 580px;
  }
  aside.business-message {
    margin: 90px auto 0;
    width: 90%;
  }
  h2.business-title_head {
    font-size: clamp(24px, 7vw, 56px);
    font-weight: bold;
  }
  p.business-text_en {
    margin-top: 32px;
    font-size: 20px;
  }
  .owner-sec_container {
    display: block;
  }
  .owner-img_area {
    max-width: 640px;
    margin: 0 auto;
  }
  .owner-text_area {
    max-width: 560px;
  }
  .owner-name {
    font-size: 24px;
    font-weight: bold;
    margin-top: 24px;
  }
  .owner-works {
    font-size: 14px;
    margin-top: 16px;
  }
  section.company-sec {
    padding: 60px 0;
    margin-top: 70px;
  }
  ul.company-list_area {
    max-width: 960px;
    margin: 60px auto 0;
  }
  li.company-list_wrap {
    grid-template-columns: 1fr;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  .company-list_head {
    font-size: 16px;
    font-weight: bold;
  }
  .company-list_text {
    font-size: 16px;
    margin-top: 10px;
  }
  section.contact-sec {
    padding: 60px 24px;
  }
  .contact-form_area {
    margin: 50px auto 0;
  }
  .contact-input_wrap {
    margin-bottom: 24px;
  }
  .contact-input_head {
    font-size: 16px;
  }
  section.service-contents-sec {
    width: 100%;
    margin: 0 auto;
    padding: 60px 0;
  }
  .service-contents_wrap {
    gap: 50px;
    row-gap: 24px;
    margin-top: 50px;
    flex-wrap: wrap;
  }
  .service-contents_img {
    max-width: 600px;
  }
  .service-contents_img img {
    width: 100%;
  }
  .service-contents_text {
    max-width: 560px;
  }
  p.service-top_number {
    font-size: 16px;
  }
  h3.service-contents_title {
    font-size: 26px;
  }
  .service-contract_wrap {
    padding-top: 24px;
    gap: 10px;
  }
  .contract-tag {
    padding: 2px 8px;
    font-size: 12px;
    font-weight: bold;
  }
  p.contract-text {
    font-size: 14px;
    font-weight: 500;
  }
  .service-result {
    margin-top: 40px;
    padding: 24px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
  }
  h3.service-result_head {
    font-size: 20px;
    font-weight: bold;
  }
  ul.service-result_area {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
  }
  .service-result_thumnail {
    width: 100%;
  }
  .service-result_thumnail img {
    width: 100%;
  }
  h4.service-result_title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 12px;
  }
  p.service-result_text {
    font-size: 14px;
    margin-top: 12px;
  }
  .reverse {
    flex-direction: column-reverse;
  }
  /* サービスページ新デザイン モバイル */
  .service-tagline {
    font-size: 14px;
  }
  .service-price_main .price-number {
    font-size: 28px;
  }
  .service-recommend {
    margin-top: 20px;
    padding: 16px;
  }
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }
  .service-detail-block {
    padding: 20px;
  }
  .service-two-categories {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }
  .service-category-block {
    padding: 20px;
  }
  .service-category_head {
    font-size: 16px;
  }
  section.core-sec {
    margin-top: 80px;
  }
  ul.core-list_area {
    gap: 24px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  li.core-list_wrap {
    max-width: 300px;
    padding: 24px;
  }
}

.service-result_container {
  margin-top: 40px;
}
.service-result_container img {
  border-radius: 16px;
  width: 100%;
}
.service-result_container h3 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-top: 14px;
}
.service-result_container p {
  font-size: 14px;
  color: #fff;
  margin-top: 14px;
}

.service-contents_wrap {
  justify-content: center;
}

.page-contents_area {
  max-width: 1080px;
  margin: 0 auto;
}



.page-contents_area h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2A78B3;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* h3 見出し */
.page-contents_area h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2A78B3;
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
}
/* 見出し h4 (以前の h2) */
.page-contents_area h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2A78B3;
  margin-bottom: 0.8rem;
  margin-top: 1.5rem;
}

/* 段落 p (note.com風スタイル) */
.page-contents_area p {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 1.8em;
  color: #333;
}

/* リスト ul/li */
.page-contents_area ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
    padding: 24px;
    border: solid 1px #2A78B3;
}
.page-contents_area li {
  margin-bottom: 0.6em;
  font-size: 17px;
  line-height: 1.9;
  color: #333;
}

/* 特定部分の強調 span */
.page-contents_area span {
  color: #2A78B3;
  font-weight: 500;
}

.back-btn {
  margin: 40px auto 0;
}

.wp-block-columns {
  padding: 32px;
  margin: 0px auto;
}
figure.wp-block-image.size-full {
  text-align: center;
  margin: 32px auto;
}
figure.wp-block-image.size-full img {
  width: 100%;
}



.smf-form .smf-text-control__control {
  width: 80%;
  margin-top: 10px;
  height: 40px;
  border: solid 1px #c0c0c0;
  padding: 6px;
  background-color: unset;
  font-size: 16px;
  border-radius: 6px;
}
.smf-item__label {
  margin-top: 24px;
}
.smf-action {
    margin: 24px auto 0;
    text-align: center;
}
.smf-form .smf-textarea-control__control {
  resize: none;
}
.smf-item__label__text {
	position: relative;
}

.smf-item__label__text::after {
	 position: absolute;
	 content: '必須';
	 color:  #fff;
	 width:  40px;
	 height: 22px;
	 top: 50%;
	 transform: translateY(-50%);
	 right: -60px;
	 display: grid;
	 place-items: center;
	 background:  #DD3234;
	 border-radius: 4px;
	 font-size: 12px;
}

.wp-block-snow-monkey-forms-item:first-child .smf-item__label__text::after {
	display: none;
}
.wp-block-snow-monkey-forms-item:nth-child(3) .smf-item__label__text::after {
	display: none;
}
.wp-block-snow-monkey-forms-item:nth-child(4) .smf-item__label__text::after {
	display: none;
}
.wp-block-snow-monkey-forms-item:last-child .smf-item__label__text::after {
	display: none;
}
.smf-action .smf-button-control__control {
  width: 200px !important;
  height: 56px !important;
  background-color: #2A78B3 !important;
  border: unset !important;
  font-size: 18px !important;
  color: #fff !important;
  font-weight: bold !important;
  cursor: pointer !important;
  border-radius: 6px !important;
  background-image: unset !important;
}

/* =====================
   News Card Styles
===================== */
ul.news-card_area {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border: none;
  padding: 0;
}

/* News page title */
.page-contents_area .news-sec h2.sec-title_head {
  font-size: clamp(40px, 8vw, 72px);
}

.page-contents_area .news-sec p.sec-title_jp {
  font-size: clamp(20px, 5vw, 32px);
}

li.news-card_wrap {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

li.news-card_wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

li.news-card_wrap a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-card_thumnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.news-card_thumnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

li.news-card_wrap:hover .news-card_thumnail img {
  transform: scale(1.05);
}

.news-card_body {
  padding: 20px;
}

.news-card_meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.news-card_category {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: bold;
  color: #fff !important;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 4px;
}

.page-contents_area .news-card_category,
.page-contents_area span.news-card_category {
  color: #fff !important;
}

.news-card_date {
  font-size: 12px;
  color: #333;
}

.news-card_title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-contents_area .news-card_date,
.page-contents_area .news-card_title {
  color: #333 !important;
}

.news-empty {
  text-align: center;
  padding: 60px 0;
  color: #888;
}

/* News Card Responsive */
@media screen and (max-width: 780px) {
  ul.news-card_area {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }

  li.news-card_wrap {
    border-radius: 12px;
  }

  .news-card_body {
    padding: 16px;
  }

  .news-card_title {
    font-size: 14px;
  }

  /* NEWS記事本文 モバイル用 */
  .page-contents_area p {
    font-size: 16px;
    line-height: 1.85;
  }

  .page-contents_area li {
    font-size: 16px;
    line-height: 1.85;
  }

  .page-contents_area h2 {
    font-size: 1.4rem;
  }

  .page-contents_area h3 {
    font-size: 1.2rem;
  }
}

/* =====================
   Recruit Page Styles
===================== */

/* 働く魅力セクション */
section.recruit-appeal-sec {
  margin-top: 80px;
}

ul.recruit-appeal_area {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

li.recruit-appeal_wrap {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.appeal-number {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.appeal-title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 16px;
  line-height: 1.6;
  color: #333;
}

.appeal-text {
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.8;
  color: #666;
}

/* 募集職種セクション */
section.recruit-position-sec {
  margin-top: 100px;
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

section.recruit-position-sec .sec-title_head,
section.recruit-position-sec .sec-title_jp {
  color: #fff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #fff;
}

ul.recruit-position_area {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

li.recruit-position_wrap {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

li.recruit-position_wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.position-category {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 4px;
}

.position-title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 16px;
  color: #333;
}

.position-text {
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.8;
  color: #666;
}

ul.position-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding: 0;
  border: none;
}

ul.position-tags li {
  padding: 4px 10px;
  font-size: 11px;
  background: #f0f0f0;
  border-radius: 4px;
  color: #666;
}

/* 募集要項セクション */
section.recruit-requirements-sec {
  margin-top: 100px;
}

.recruit-table_area {
  margin-top: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

table.recruit-table {
  width: 100%;
  border-collapse: collapse;
}

table.recruit-table tr {
  border-bottom: 1px solid #e0e0e0;
}

table.recruit-table th {
  width: 160px;
  padding: 24px 20px;
  text-align: left;
  font-weight: bold;
  color: #333;
  background: #f8f8f8;
  vertical-align: top;
}

table.recruit-table td {
  padding: 24px 20px;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

/* 選考フローセクション */
section.recruit-flow-sec {
  margin-top: 100px;
}

ul.recruit-flow_area {
  margin-top: 60px;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}

li.recruit-flow_wrap {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  width: 180px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

li.recruit-flow_arrow {
  color: #667eea;
  font-size: 20px;
  padding-top: 40px;
}

.flow-step {
  font-size: 12px;
  font-weight: bold;
  color: #667eea;
}

.flow-title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 12px;
  color: #333;
}

.flow-text {
  font-size: 12px;
  margin-top: 12px;
  line-height: 1.6;
  color: #666;
}

/* 働く魅力 - アイコン */
.appeal-icon {
  font-size: 40px;
  margin-bottom: 8px;
}

/* 数字で見るOPRION */
section.recruit-numbers-sec {
  margin-top: 100px;
  padding: 80px 0;
  background: #f8f9fa;
}

ul.recruit-numbers_area {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

li.recruit-numbers_wrap {
  text-align: center;
  padding: 24px;
}

.numbers-value {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
}

.numbers-unit {
  font-size: 24px;
}

.numbers-label {
  font-size: 14px;
  margin-top: 12px;
  color: #666;
  line-height: 1.6;
}

/* 募集職種 - 追加スタイル */
.position-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.position-status {
  display: inline-block;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  background: #e74c3c;
  border-radius: 4px;
}

.position-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  font-size: 13px;
  color: #888;
}

.position-location,
.position-type {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* CTAセクション */
section.recruit-cta-sec {
  margin-top: 100px;
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.recruit-cta_container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-catch {
  font-size: 16px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.cta-title {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  line-height: 1.6;
}

.cta-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 24px;
  line-height: 1.8;
}

.cta-btn_area {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn-sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn-sub:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cta-btn_icon {
  font-size: 18px;
}

/* Recruit レスポンシブ */
@media screen and (max-width: 780px) {
  ul.recruit-appeal_area {
    grid-template-columns: 1fr;
  }
  
  ul.recruit-numbers_area {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .numbers-value {
    font-size: 48px;
  }
  
  ul.recruit-position_area {
    grid-template-columns: 1fr;
  }
  
  ul.recruit-flow_area {
    flex-direction: column;
    align-items: center;
  }
  
  li.recruit-flow_wrap {
    width: 100%;
    max-width: 300px;
  }
  
  li.recruit-flow_arrow {
    transform: rotate(90deg);
    padding: 0;
  }
  
  table.recruit-table th {
    display: block;
    width: 100%;
    padding: 16px 20px 8px;
  }
  
  table.recruit-table td {
    display: block;
    padding: 8px 20px 16px;
  }
  
  .cta-title {
    font-size: 24px;
  }
  
  .cta-btn_area {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn,
  .cta-btn-sub {
    width: 100%;
    max-width: 300px;
  }
}

/* =====================
   Privacy Policy Styles
===================== */
section.privacy-sec {
  margin-top: 40px;
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 48px;
}

.privacy-section {
  margin-bottom: 40px;
}

.privacy-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #667eea;
}

.privacy-text {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}

.privacy-list {
  padding-left: 24px;
  margin: 16px 0;
  border: none;
}

.privacy-list li {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 8px;
  list-style-type: disc;
}

.privacy-contact {
  background: #f8f9fa;
  padding: 24px;
  border-radius: 8px;
  margin-top: 16px;
}

.privacy-contact p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 8px;
}

.privacy-contact p:last-child {
  margin-bottom: 0;
}

.privacy-contact a {
  color: #667eea;
  text-decoration: underline;
}

.privacy-date {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
  text-align: right;
}

.privacy-date p {
  font-size: 14px;
  color: #666;
}

/* =====================
   Recruit Form Styles
===================== */
section.recruit-form-sec {
  margin-top: 100px;
  padding: 80px 0;
  background: #f8f9fa;
}

.recruit-form_intro {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-top: 24px;
}

.recruit-form_area {
  max-width: 800px;
  margin: 60px auto 0;
  background: #fff;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

@media screen and (max-width: 780px) {
  .recruit-form_area {
    padding: 24px;
    margin-top: 40px;
  }
}

/* =====================
   Recruit Form Styles
===================== */
.recruit-form .form-group {
  margin-bottom: 28px;
}

.recruit-form .form-group label {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.recruit-form .form-group.required > label::after {
  content: '必須';
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: bold;
  color: #fff;
  background: #e74c3c;
  border-radius: 4px;
}

.recruit-form input[type="text"],
.recruit-form input[type="email"],
.recruit-form input[type="tel"],
.recruit-form input[type="url"],
.recruit-form input[type="number"],
.recruit-form select,
.recruit-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.recruit-form input:focus,
.recruit-form select:focus,
.recruit-form textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.recruit-form input::placeholder,
.recruit-form textarea::placeholder {
  color: #aaa;
}

.recruit-form .form-note {
  font-size: 12px;
  color: #888;
  margin-top: 6px;
}

.recruit-form .form-row {
  display: flex;
  gap: 20px;
}

.recruit-form .form-group.half {
  flex: 1;
}

/* Radio buttons */
.recruit-form .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.recruit-form .radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: normal;
}

.recruit-form .radio-label input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  accent-color: #667eea;
}

.recruit-form .radio-label span {
  font-size: 15px;
  color: #333;
}

/* File upload */
.recruit-form .file-upload {
  position: relative;
}

.recruit-form .file-upload input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.recruit-form .file-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #f8f9fa;
  border: 2px dashed #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.recruit-form .file-label:hover {
  border-color: #667eea;
  background: #f0f4ff;
}

.recruit-form .file-icon {
  font-size: 20px;
}

.recruit-form .file-text {
  font-size: 14px;
  color: #666;
}

.recruit-form .file-name {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #667eea;
}

/* Checkbox */
.recruit-form .checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-weight: normal;
}

.recruit-form .checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-top: 2px;
  accent-color: #667eea;
}

.recruit-form .checkbox-label span {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.recruit-form .checkbox-label a {
  color: #667eea;
  text-decoration: underline;
}

/* Error state */
.recruit-form .form-group.error input,
.recruit-form .form-group.error select,
.recruit-form .form-group.error textarea {
  border-color: #e74c3c;
}

.recruit-form .error-message {
  font-size: 13px;
  color: #e74c3c;
  margin-top: 6px;
}

/* Form actions */
.recruit-form .form-actions {
  margin-top: 40px;
  text-align: center;
}

.btn-confirm {
  display: inline-block;
  padding: 16px 48px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-confirm:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Confirm section */
.recruit-confirm {
  padding: 40px;
  background: #f8f9fa;
  border-radius: 12px;
}

.confirm-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 16px;
}

.confirm-intro {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-bottom: 32px;
}

.confirm-list {
  display: grid;
  gap: 20px;
}

.confirm-list dt {
  font-size: 13px;
  font-weight: bold;
  color: #888;
  margin-bottom: 4px;
}

.confirm-list dd {
  font-size: 15px;
  color: #333;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
  white-space: pre-wrap;
}

.confirm-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.btn-back {
  padding: 14px 32px;
  font-size: 15px;
  font-weight: bold;
  color: #666;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.btn-back:hover {
  border-color: #999;
}

.btn-submit {
  padding: 14px 32px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Complete section */
.recruit-complete {
  text-align: center;
  padding: 60px 40px;
}

.complete-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
}

.complete-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.complete-text {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 32px;
}

.btn-home {
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: bold;
  color: #667eea;
  background: #fff;
  border: 2px solid #667eea;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-home:hover {
  background: #667eea;
  color: #fff;
}

/* Recruit form responsive */
@media screen and (max-width: 780px) {
  .recruit-form .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .recruit-form .radio-group {
    flex-direction: column;
    gap: 12px;
  }
  
  .recruit-confirm {
    padding: 24px;
  }
  
  .confirm-actions {
    flex-direction: column;
  }
  
  .btn-back,
  .btn-submit {
    width: 100%;
  }
}

/* =====================
   Contact Form Styles
===================== */
section.contact-form-sec {
  margin-top: 100px;
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-form_intro {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-top: 24px;
}

.contact-form_area {
  max-width: 800px;
  margin: 60px auto 0;
  background: #fff;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

@media screen and (max-width: 780px) {
  .contact-form_area {
    padding: 24px;
    margin-top: 40px;
  }
}

/* Contact form sections */
.contact-form .form-section {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #eee;
}

.contact-form .form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 32px;
}

.contact-form .form-section_title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 24px;
  padding-left: 12px;
  border-left: 4px solid #667eea;
}

/* Contact form fields */
.contact-form .form-group {
  margin-bottom: 28px;
}

.contact-form .form-group > label {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.contact-form .form-group.required > label::after {
  content: '必須';
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: bold;
  color: #fff;
  background: #e74c3c;
  border-radius: 4px;
}

.contact-form .label-note {
  font-size: 13px;
  font-weight: normal;
  color: #888;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form .form-note {
  font-size: 12px;
  color: #888;
  margin-top: 6px;
}

/* Vertical checkbox group */
.contact-form .checkbox-group-vertical {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form .checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-weight: normal;
}

.contact-form .checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-right: 10px;
  margin-top: 2px;
  accent-color: #667eea;
}

.contact-form .checkbox-label span {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

/* Vertical radio group */
.contact-form .radio-group-vertical {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form .radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: normal;
}

.contact-form .radio-label input[type="radio"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-right: 10px;
  accent-color: #667eea;
}

.contact-form .radio-label span {
  font-size: 15px;
  color: #333;
}

/* Privacy checkbox group */
.contact-form .checkbox-group {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.contact-form .checkbox-label a {
  color: #667eea;
  text-decoration: underline;
}

/* Error state */
.contact-form .form-group.error input,
.contact-form .form-group.error textarea {
  border-color: #e74c3c;
}

.contact-form .form-group.error .checkbox-group-vertical,
.contact-form .form-group.error .radio-group-vertical {
  padding: 12px;
  border: 1px solid #e74c3c;
  border-radius: 8px;
  background: rgba(231, 76, 60, 0.02);
}

.contact-form .error-message {
  font-size: 13px;
  color: #e74c3c;
  margin-top: 6px;
}

/* Form actions */
.contact-form .form-actions {
  margin-top: 40px;
  text-align: center;
}

/* Confirm section */
.contact-confirm {
  padding: 40px;
  background: #f8f9fa;
  border-radius: 12px;
}

/* Complete section */
.contact-complete {
  text-align: center;
  padding: 60px 40px;
}

/* Contact form responsive */
@media screen and (max-width: 780px) {
  .contact-form .form-section {
    margin-bottom: 32px;
    padding-bottom: 24px;
  }

  .contact-confirm {
    padding: 24px;
  }

  .contact-complete {
    padding: 40px 20px;
  }
}

/* =====================
   Header Menu Hover Effects
===================== */
.menu-list a {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.menu-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #6A9FB3 0%, #0F4C8C 100%);
  transition: width 0.3s ease, left 0.3s ease;
}

.menu-list a:hover::after {
  width: 100%;
  left: 0;
}

.menu-list a:hover {
  color: #0F4C8C;
}

/* CONTACTボタンのホバー */
.menu-list_contact {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #6A9FB3 0%, #0F4C8C 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-list_contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transition: left 0s;
}

.menu-list_contact:hover::before {
  left: 100%;
  transition: left 0.6s ease;
}

.menu-list_contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(106, 159, 179, 0.5);
  background: linear-gradient(135deg, #7BBACE 0%, #2A78B3 100%);
}

.menu-list_contact a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.menu-list_contact a::after {
  display: none;
}

/* =====================
   TOP Page Image Border Radius
===================== */
.service-list_thumnail img {
  border-radius: 12px;
}

.service-contents_img img {
  border-radius: 12px;
}

.recruit-move01_img img,
.recruit-move02_img img,
.recruit-move03_img img {
  border-radius: 12px;
}

/* =====================
   Page Header Circle Image
===================== */
.page-header_img img {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.message-img_area img {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.owner-img_area img {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* =====================
   Strength Section (HTML/CSS版)
===================== */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  max-width: 900px;
  margin: 60px auto 0;
  position: relative;
}

.strength-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.strength-item:nth-child(1) .strength-content,
.strength-item:nth-child(2) .strength-content,
.strength-item:nth-child(3) .strength-content,
.strength-item:nth-child(4) .strength-content {
  align-items: flex-start;
  text-align: left;
}

.strength-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6A9FB3 0%, #0F4C8C 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(15, 76, 140, 0.2);
}

.strength-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}

.strength-icon svg {
  width: 100%;
  height: 100%;
  color: #fff;
}

.strength-title {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

.strength-content {
  display: flex;
  flex-direction: column;
}

.strength-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-style: italic;
  color: #6A9FB3;
  margin-bottom: 8px;
}

.strength-text {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  max-width: 200px;
}

/* レスポンシブ */
@media screen and (max-width: 780px) {
  .strength-grid {
    gap: 30px 20px;
    margin: 40px auto 0;
  }
  
  .strength-circle {
    width: 120px;
    height: 120px;
  }
  
  .strength-icon {
    width: 32px;
    height: 32px;
  }
  
  .strength-title {
    font-size: 14px;
  }
  
  .strength-label {
    font-size: 12px;
  }
  
  .strength-text {
    font-size: 12px;
    max-width: 150px;
  }
  
  .strength-item:nth-child(1) .strength-content,
  .strength-item:nth-child(2) .strength-content,
  .strength-item:nth-child(3) .strength-content,
  .strength-item:nth-child(4) .strength-content {
    align-items: center;
    text-align: center;
  }
}


/* =====================
   OPRIONシンボル レスポンシブ
===================== */
@media screen and (max-width: 1200px) {
  .mv-symbol_area {
    right: 5%;
  }
  .mv-symbol_container {
    width: 220px;
    height: 127px;
  }
  @keyframes symbolPulse {
    0% { width: 200px; height: 115px; opacity: 0.6; }
    100% { width: 350px; height: 200px; opacity: 0; }
  }
}

@media screen and (max-width: 900px) {
  .mv-symbol_area {
    display: none;
  }
}


/* =====================
   Tech × People キーワード（A案）
===================== */
.mv-keyword_area {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.mv-keyword_container {
  position: relative;
  width: 320px;
  height: 400px;
}

/* TECHNOLOGY - 縦書き */
.mv-keyword_tech {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 8px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(106, 159, 179, 0.6);
  animation: mvTechPulse 4s ease-in-out infinite;
}

@keyframes mvTechPulse {
  0%, 100% { 
    -webkit-text-stroke: 1.5px rgba(106, 159, 179, 0.5);
    filter: drop-shadow(0 0 10px rgba(106, 159, 179, 0.2));
  }
  50% { 
    -webkit-text-stroke: 1.5px rgba(106, 159, 179, 0.8);
    filter: drop-shadow(0 0 20px rgba(106, 159, 179, 0.4));
  }
}

/* PEOPLE - 横書き */
.mv-keyword_people {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 6px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(139, 92, 246, 0.6);
  animation: mvPeoplePulse 4s ease-in-out infinite 0.5s;
}

@keyframes mvPeoplePulse {
  0%, 100% { 
    -webkit-text-stroke: 1.5px rgba(139, 92, 246, 0.5);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.2));
  }
  50% { 
    -webkit-text-stroke: 1.5px rgba(139, 92, 246, 0.8);
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
  }
}

/* 交差点の × マーク */
.mv-keyword_cross {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-cross_glow {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 216, 255, 0.3) 0%, rgba(168, 216, 255, 0) 70%);
  animation: mvCrossGlow 2s ease-in-out infinite;
}

@keyframes mvCrossGlow {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.5;
  }
  50% { 
    transform: scale(1.3);
    opacity: 1;
  }
}

.mv-cross_symbol {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 300;
  color: rgba(168, 216, 255, 0.9);
  text-shadow: 0 0 20px rgba(168, 216, 255, 0.5);
  z-index: 2;
}

/* パーティクル Canvas */
#mvParticleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}

/* レスポンシブ */
@media screen and (max-width: 1100px) {
  .mv-keyword_area {
    right: 5%;
  }
  .mv-keyword_container {
    width: 250px;
    height: 320px;
  }
  .mv-keyword_tech {
    font-size: 36px;
  }
  .mv-keyword_people {
    font-size: 32px;
  }
}

@media screen and (max-width: 900px) {
  .mv-keyword_area {
    display: none;
  }
  #mvParticleCanvas {
    display: none;
  }
}

/* =====================
   BASE Article Styles
===================== */

/* カテゴリフィルター */
.base-category-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.base-category-filter a {
  padding: 8px 20px;
  border: 1px solid #6A9FB3;
  border-radius: 20px;
  font-size: 14px;
  color: #6A9FB3;
  text-decoration: none;
  transition: all 0.3s;
}

.base-category-filter a.current,
.base-category-filter a:hover {
  background: linear-gradient(135deg, #6A9FB3 0%, #0F4C8C 100%);
  color: #fff;
  border-color: transparent;
}

/* BASE記事一覧 */
section.base-sec {
  position: relative;
  padding: 40px 0;
}

section.base-sec .sec-title_head {
  font-size: clamp(40px, 8vw, 72px);
}

section.base-sec .sec-title_jp {
  font-size: clamp(16px, 4vw, 24px);
  margin-top: 8px;
}

.base-card_area {
  margin-top: 40px;
}

.base-empty {
  text-align: center;
  padding: 60px 0;
  color: #888;
  grid-column: 1 / -1;
}

/* BASE カテゴリバッジ（青系） */
.base-card_category {
  background: linear-gradient(135deg, #6A9FB3 0%, #0F4C8C 100%) !important;
}

/* 個別記事ページ */
.base-single-contents {
  max-width: 800px;
  margin: 0 auto;
}

.base-article_meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}

.base-article_category {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #6A9FB3 0%, #0F4C8C 100%);
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.base-article_category:hover {
  opacity: 0.8;
}

.base-article_date {
  font-size: 14px;
  color: #666;
}

/* note.com風スタイル */
.base-article_content {
  font-size: 17px;
  line-height: 1.9;
  color: #333;
}

.base-article_content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0F4C8C;
  margin-top: 56px;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid #6A9FB3;
}

.base-article_content h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #0F4C8C;
  margin-top: 40px;
  margin-bottom: 16px;
}

.base-article_content p {
  margin-bottom: 1.8em;
}

.base-article_content pre {
  background: #1e1e1e;
  color: #d4d4d4;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 24px 0;
  font-size: 14px;
  line-height: 1.6;
}

.base-article_content code {
  background: #f5f5f5;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  color: #d63384;
}

.base-article_content pre code {
  background: none;
  padding: 0;
  color: inherit;
}

.base-article_content blockquote {
  border-left: 4px solid #6A9FB3;
  padding: 16px 24px;
  margin: 24px 0;
  background: #f8f9fa;
  font-style: italic;
  color: #555;
}

.base-article_content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
}

.base-article_content ul,
.base-article_content ol {
  margin: 16px 0;
  padding-left: 24px;
  border: none;
}

.base-article_content li {
  margin-bottom: 0.6em;
  line-height: 1.9;
}

.base-article_footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
}

.base-article_tags {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tag-label {
  font-size: 14px;
  color: #666;
}

.base-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  color: #6A9FB3;
  background: #f0f7fa;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s;
}

.base-tag:hover {
  background: #e0f0f5;
}

/* 関連記事セクション */
section.base-related-sec {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid #e0e0e0;
}

section.base-related-sec .sec-title_head {
  font-size: clamp(32px, 6vw, 48px);
}

section.base-related-sec .news-card_area {
  margin-top: 40px;
}

/* ページネーション */
.pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}

.pagination a:hover {
  background: #6A9FB3;
  color: #fff;
  border-color: #6A9FB3;
}

.pagination .current {
  background: linear-gradient(135deg, #6A9FB3 0%, #0F4C8C 100%);
  color: #fff;
  border-color: transparent;
}

/* BASE レスポンシブ */
@media screen and (max-width: 780px) {
  .base-category-filter {
    gap: 8px;
    margin-bottom: 30px;
  }

  .base-category-filter a {
    padding: 6px 14px;
    font-size: 12px;
  }

  section.base-sec {
    padding: 30px 0;
  }

  .base-single-contents {
    padding: 0 16px;
  }

  .base-article_meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .base-article_content {
    font-size: 16px;
    line-height: 1.85;
  }

  .base-article_content h2 {
    font-size: 1.4rem;
    margin-top: 40px;
  }

  .base-article_content h3 {
    font-size: 1.2rem;
    margin-top: 28px;
  }

  .base-article_content pre {
    padding: 16px;
    font-size: 13px;
  }

  section.base-related-sec {
    margin-top: 60px;
    padding-top: 40px;
  }

  section.base-related-sec .news-card_area {
    grid-template-columns: 1fr;
  }
}
