@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&display=swap");
/* 全体のベース設定 */
/* Ensure padding does not affect element width */
* {
  box-sizing: border-box;
}

/* CSS Custom Properties */
:root {
  /* Color Schemes */
  --ColorScheme1__Background: var(--Color__White);
  --ColorScheme1__Border: var(--Color__NeutralDarkest);
  --ColorScheme1__Text: var(--Color__NeutralDarkest);
  --ColorScheme1__Foreground: var(--Color__White);
  --ColorScheme1__Accent: var(--Color__NeutralDarkest);

  /* Primitives */
  --Color__NeutralDarkest: #222222;
  --Color__NeutralLighter: #cccccc;
  --Color__White: #ffffff;
  --Color__NeutralLightest: #eeeeee;
  --Color__NeutralLight: #aaaaaa;
  --Color__Neutral: #666666;
  --Color__NeutralDark: #444444;
  --Color__NeutralDarker: #222222;
  --Opacity__Transparent: rgba(255, 255, 255, 0);
  --Opacity__White5: rgba(255, 255, 255, 0.05);
  --Opacity__White10: rgba(255, 255, 255, 0.1);
  --Opacity__White15: rgba(255, 255, 255, 0.15);
  --Opacity__White20: rgba(255, 255, 255, 0.2);
  --Opacity__White30: rgba(255, 255, 255, 0.3);
  --Opacity__White40: rgba(255, 255, 255, 0.4);
  --Opacity__White50: rgba(255, 255, 255, 0.5);
  --Opacity__White60: rgba(255, 255, 255, 0.6);
  --Opacity__NeutralDarkest5: rgba(0, 0, 0, 0.05);
  --Opacity__NeutralDarkest10: rgba(0, 0, 0, 0.1);
  --Opacity__NeutralDarkest15: rgba(0, 0, 0, 0.15);
  --Opacity__NeutralDarkest20: rgba(0, 0, 0, 0.2);
  --Opacity__NeutralDarkest30: rgba(0, 0, 0, 0.3);
  --Opacity__NeutralDarkest40: rgba(0, 0, 0, 0.4);
  --Opacity__NeutralDarkest50: rgba(0, 0, 0, 0.5);
  --Opacity__NeutralDarkest60: rgba(0, 0, 0, 0.6);
  --Color__Primary: #ffcc33;
  --Color__PrimaryHover: #E5B72C;
  --Color__ButtonText: #0e1e2f;

  /* UI Styles */
  --Stroke__BorderWidth: 1px;
  --Stroke__DividerWidth: 1px;
  --Radius__Small: 4px;
  --Radius__Medium: 8px;
  --Radius__Large: 16px;

  /* Typography */
  --TextSizes__Heading1: 56px;
  --TextSizes__Heading2: 48px;
  --TextSizes__Heading3: 40px;
  --TextSizes__Heading4: 32px;
  --TextSizes__Heading5: 24px;
  --TextSizes__Heading6: 20px;
  --TextSizes__TextLarge: 20px;
  --TextSizes__TextMedium: 18px;
  --TextSizes__TextRegular: 16px;
  --TextSizes__TextSmall: 14px;
  --TextSizes__TextTiny: 12px;

  /* Spacing & Sizing */
  --Container__containersmall: 768px;
  --Container__containermedium: 1024px;
  --Container__containerlarge: 1280px;
  --MaxWidth__maxwidthxxsmall: 320px;
  --MaxWidth__maxwidthmedium: 560px;
  --MaxWidth__maxwidthlarge: 768px;
  --MaxWidth__maxwidthxsmall: 400px;
  --MaxWidth__maxwidthsmall: 480px;
  --MaxWidth__maxwidthxlarge: 1024px;
  --MaxWidth__maxwidthxxlarge: 1280px;
  --SectionPadding__paddingsectionsmall: 48px;
  --SectionPadding__paddingsectionmedium: 80px;
  --SectionPadding__paddingsectionlarge: 112px;
  --PagePadding__paddingglobal: 64px;
}

body {
  font-family: "Noto Sans JP", system-ui, sans-serif;
  margin: 0;
  width: 100%;
  color: var(--ColorScheme1__Text);
  background: var(--ColorScheme1__Background);
  line-height: 1.5;
  gap: 0px;
}

/* Generic container to limit inner width */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
  
  /* ヘッダー */
header {
  width: 100%;
  margin-bottom: 2rem;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--ColorScheme1__Background);
  overflow: visible;
}

header .container {
  display: flex;
  height: 72px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

button {
  /* wipe out the UA chrome */
  margin: 0;            /* optional, but keeps things tidy        */
  padding: 0;           /* ← the 1 px you’re seeing               */
  border: none;         /* UA gives buttons a border as well      */
  background: transparent;
  font: inherit;        /* keep page font instead of system font  */
  color: inherit;
  appearance: none;     /* removes OS-native styling (Safari/Firefox) */
}

p {
  margin: 0;
}

  .logo {
    height: 40px;
  }

.nav-menu {
  display: flex;
  gap: 1rem;
  margin: 0.5rem 0;
}

/* Dropdown menu */
.dropbtn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--Color__NeutralDark);
  font: inherit;
  display: flex;
  align-items: flex-start;
}


.arrow-icon {
  width: 26px;
  height: 26px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  width: 450px;
  padding: 3.5rem 3.75rem;
  background: #ffffff;
  border-top: 1px solid #d9dce1;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  z-index: 1010;
  flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
}

.dropdown-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -4px;
  width: 4px;
  height: 100%;
  background: #e9fafa;
}

.dropdown-content a {
  color: #222;
  text-decoration: none;
}

.info-card {
  position: relative;
  padding: 16px 16px;
  background: #ffffff;
  border-top: 1px solid #d9dce1;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  font-family: "Noto Sans JP", sans-serif;
  width: fit-content;
}


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

.info-list li {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 16px 0;

}

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


.dropdown-content.show {
  display: flex;
}

/* show dropdown on hover */
.dropbtn:hover + .dropdown-content,
.dropbtn:focus + .dropdown-content {
  display: flex;
}

/* Header navigation links */
nav a,
.dropbtn {
  position: relative;
  text-decoration: none;
  color: var(--Color__NeutralDark);
  font-size: var(--TextSizes__TextRegular);
  font-weight: 600;
  transition: none;
}

nav a:hover,
nav a:focus,
.dropbtn:hover,
.dropbtn:focus {
  color: var(--Color__Primary);
}
  
/* インラインコードの装飾 */
code {
  background: var(--Color__NeutralLightest);
  padding: 2px 4px;
  border-radius: var(--Radius__Small);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo,
    monospace;
}
  
  /* 見出し */
h1 {
  font-size: 2rem;
  margin: 0;
}

h2 {
  font-size: 1.25rem;
  margin: 0;
}

h3 {
  margin: 0;
}
  
  /* フッター */
footer {
  margin-top: 4rem;
  color: var(--Color__White);
  text-align: center;
}

footer a {
  text-decoration: underline;
}

section{
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  text-align: left;
  padding: 32px 64px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  section {
    padding: 48px 32px;
  }
}

.section-header{
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 8px;
  align-self: stretch;
  text-align: center;
}

.section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  align-self: stretch;
}

.section-wrapper {
  display: flex;
  flex-direction: column;
  align-items: left;
  align-self: stretch;
  margin: 0 0 32px 0;
}

.section-wrapper-h3 {
  display: flex;
  flex-direction: column;
  align-items: left;
  align-self: stretch;
  margin: 0 0 16px 0;
}

.section-title{
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 8px;
  align-self: stretch;
  text-align: left;
  width: 100%;
}
/* Gap between section title block and a following secondary button */
.section-title + .secondary-btn {
  margin-top: 8px;
}
/* Gap between section title block and a following primary button */
.section-title + .primary-btn {
  margin-top: 16px;
}

/* Left align primary button on 404 page */
.page-404 .primary-btn {
  align-self: flex-start;
}

/* Layout adjustments for news article detail pages */
.news-article .section-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}

/* Article layout for news detail pages */
.news-article .section-container {
  padding: 48px 64px;
}

.news-article .article-content {
  max-width: 800px;
  text-align: left;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .news-article .section-container {
    padding: 32px;
  }
  .news-article .section-title {
    padding: 0 32px;
  }
}

.footer-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  align-self: center;
  background: #111827;
  padding: 64px 80px;
}

.footer-bottom{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  align-self: center;
  color: var(--Color__White); /* space between items */
  background: #111827;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--PagePadding__paddingglobal);
}

.footer-content{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--PagePadding__paddingglobal);
}

.footer-text{
  font-size: 16px;
  font-weight: 500;
  color: var(--Color__White);
}

.footer-list{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.footer-left{ 
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  text-align: left;
  max-width: 40%;
}

.footer-middle{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  text-align: left;
}

.footer-links{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  text-align: center;
  list-style: none;   /* hides the bullet points */
  margin: 0;
  padding: 0;
}

.footer-links-vertical{
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 8px;
  align-self: stretch;
  text-align: left;
  list-style: none;   /* hides the bullet points */
  margin: 0;
  padding: 0;
}

.consulting-list{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  list-style: none;
  margin: 0;
}

.consulting-content{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}

/* (Optional) Display links side-by-side—remove if you prefer a vertical list */
li {
  display: flex;
  gap: 8px;
  flex-direction: row;

}

/* Reset link appearance */
a {
  color: inherit;      /* inherit the text color of the parent element */
  text-decoration: none; /* removes the underline */
}

.footer-contact-info{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

/* Icon styling within footer contact info */
.footer-contact-info img,
.footer-icon {
  width: 20px;
  height: 20px;
}

.footer-company-info{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.company-text{
  color: var(--Color__White);
  font-size: 23px;
  font-weight: 500;
}

/* Hero section */
.hero {
  position: relative;
  padding: 60px 5vw 16px;
  background: var(--ColorScheme1__Background);
  overflow: hidden;
}

.hero::before {
  content: "DEMOCRATIZE SECURITY";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 28vw;
  font-weight: 700;
  line-height: 0.8;
  color: var(--ColorScheme1__Text);
  opacity: 0.04;
  white-space: nowrap;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--Container__containerlarge);
  margin: 0 auto;
  text-align: left;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw + 1rem, 6rem);
  font-weight: 700;
  margin: 0 0 60px 0;
  line-height: 1.15;
}

.highlight {
  position: relative;
  display: inline-block;
  margin: 0 0 20px 0;
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.05em;
  width: 100%;
  height: 0.36em;
  background: var(--Color__Primary);
  z-index: -1;
}

.hero__subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
}

/* Logo showcase section */
.logo-section {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}

/* Logo slider */
.logo-container {
  width: 100%;
  overflow: hidden;
  background: var(--Color__White);
  margin-top: 2rem;
}

.logo-slider {
  display: flex;
  animation: scroll 20s linear infinite;
}

.logo-slider img {
  flex: 0 0 auto;
  height: 48px;
  width: auto;
  margin-right: 20px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

  
/* Service cards */
.card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 1rem;
  border: var(--Stroke__BorderWidth) solid var(--Color__NeutralLightest);
  border-radius: var(--Radius__Medium);
}


/* remove default paragraph margin within service cards */
.card p {
  margin: 0;
}

.card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.card-text {
  /* space between heading and description */
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.primary-btn {
  display: inline-flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: var(--Radius__Medium);
  background: var(--Color__Primary);
  color: var(--Color__ButtonText);
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--TextSizes__TextRegular);
  font-weight: 500;
  line-height: 150%; /* 24px */
  text-decoration: none;
  transition: background 0.3s ease;
}

.primary-btn:hover {
  background: var(--Color__PrimaryHover);
  color: var(--Color__ButtonText);
}

.header-contact-btn {
  margin-left: auto;
}
.contact-menu-btn {
  display: none;
}


.services-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: var(--SectionPadding__paddingsectionmedium) 0;
  gap: 32px;
}

.card-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Typography utility classes */
.Heading__H1 {
  font-size: var(--TextSizes__Heading1);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 120%;
}
.Heading__H2 {
  font-size: var(--TextSizes__Heading2);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 120%;
}
.Heading__H3 {
  font-size: var(--TextSizes__Heading3);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 120%;
}
.Heading__H4 {
  font-size: var(--TextSizes__Heading4);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 130%;
}
.Heading__H5 {
  font-size: var(--TextSizes__Heading5);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 140%;
}
.Heading__H6 {
  font-size: var(--TextSizes__Heading6);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 140%;
}
.Heading__Tagline {
  font-size: var(--TextSizes__TextRegular);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 150%;
}

.Text__Large__Light {
  font-size: var(--TextSizes__TextLarge);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 150%;
}
.Text__Large__Normal {
  font-size: var(--TextSizes__TextLarge);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 150%;
}
.Text__Large__Medium {
  font-size: var(--TextSizes__TextLarge);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 150%;
}
.Text__Large__SemiBold {
  font-size: var(--TextSizes__TextLarge);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 150%;
}
.Text__Large__Bold {
  font-size: var(--TextSizes__TextLarge);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 150%;
}
.Text__Large__ExtraBold {
  font-size: var(--TextSizes__TextLarge);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 150%;
}
.Text__Large__Link {
  font-size: var(--TextSizes__TextLarge);
  text-decoration: underline;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 150%;
}

.Text__Medium__Light {
  font-size: var(--TextSizes__TextMedium);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 150%;
}
.Text__Medium__Normal {
  font-size: var(--TextSizes__TextMedium);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 150%;
}
.Text__Medium__Medium {
  font-size: var(--TextSizes__TextMedium);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 150%;
}
.Text__Medium__SemiBold {
  font-size: var(--TextSizes__TextMedium);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 150%;
}
.Text__Medium__Bold {
  font-size: var(--TextSizes__TextMedium);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 150%;
}
.Text__Medium__ExtraBold {
  font-size: var(--TextSizes__TextMedium);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 150%;
}
.Text__Medium__Link {
  font-size: var(--TextSizes__TextMedium);
  text-decoration: underline;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 150%;
}

.Text__Regular__Light {
  font-size: var(--TextSizes__TextRegular);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 150%;
}
.Text__Regular__Normal {
  font-size: var(--TextSizes__TextRegular);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 150%;
}
.Text__Regular__Medium {
  font-size: var(--TextSizes__TextRegular);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 150%;
}
.Text__Regular__SemiBold {
  font-size: var(--TextSizes__TextRegular);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 150%;
}
.Text__Regular__Bold {
  font-size: var(--TextSizes__TextRegular);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 150%;
}
.Text__Regular__ExtraBold {
  font-size: var(--TextSizes__TextRegular);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 150%;
}
.Text__Regular__Link {
  font-size: var(--TextSizes__TextRegular);
  text-decoration: underline;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 150%;
}

.Text__Small__Light {
  font-size: var(--TextSizes__TextSmall);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 150%;
}
.Text__Small__Normal {
  font-size: var(--TextSizes__TextSmall);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 150%;
}
.Text__Small__Medium {
  font-size: var(--TextSizes__TextSmall);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 150%;
}
.Text__Small__SemiBold {
  font-size: var(--TextSizes__TextSmall);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 150%;
}
.Text__Small__Bold {
  font-size: var(--TextSizes__TextSmall);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 150%;
}
.Text__Small__ExtraBold {
  font-size: var(--TextSizes__TextSmall);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 150%;
}
.Text__Small__Link {
  font-size: var(--TextSizes__TextSmall);
  text-decoration: underline;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 150%;
}

.Text__Tiny__Light {
  font-size: var(--TextSizes__TextTiny);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 150%;
}
.Text__Tiny__Normal {
  font-size: var(--TextSizes__TextTiny);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 150%;
}
.Text__Tiny__Medium {
  font-size: var(--TextSizes__TextTiny);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 150%;
}
.Text__Tiny__SemiBold {
  font-size: var(--TextSizes__TextTiny);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 150%;
}
.Text__Tiny__Bold {
  font-size: var(--TextSizes__TextTiny);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 150%;
}
.Text__Tiny__ExtraBold {
  font-size: var(--TextSizes__TextTiny);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 150%;
}
.Text__Tiny__Link {
  font-size: var(--TextSizes__TextTiny);
  text-decoration: underline;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 150%;
}

/* Shadow utility classes */
.xxsmall {
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}
.xsmall {
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.06), 0px 1px 3px rgba(0, 0, 0, 0.1);
}
.small {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.06), 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.medium {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.03), 0px 12px 16px rgba(0, 0, 0, 0.08);
}
.large {
  box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.03), 0px 20px 24px rgba(0, 0, 0, 0.08);
}
.xlarge {
  box-shadow: 0px 24px 48px rgba(0, 0, 0, 0.18);
}
.xxlarge {
  box-shadow: 0px 32px 64px rgba(0, 0, 0, 0.14);
}


/* Company info section */
.company-info {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.company-info dl {
  margin: 0;
}

.company-info .row {
  display: flex;
  flex-wrap: wrap;
  padding: 24px 0;
  border-bottom: var(--Stroke__DividerWidth) solid var(--Color__NeutralLightest);
}

.company-info .row:last-of-type {
  border-bottom: none;
}


.company-info .row dt {
  flex: 0 0 160px;
  color: var(--Color__Neutral);
  font-weight: 600;
  font-size: var(--TextSizes__TextRegular);
}

.company-info .row dd {
  flex: 1;
  font-weight: 400;
  font-size: var(--TextSizes__TextRegular);
}

@media (max-width: 600px) {
  .company-info .row {
    flex-direction: column;
    padding: 16px 0;
  }
  .company-info .row dt {
    flex-basis: 100%;
    margin-bottom: 4px;
  }
  .company-info .row dd {
    font-size: var(--TextSizes__TextRegular);
    margin-left: 0;
  }
}

/* News section */


.news-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  grid-auto-rows: 1fr;
}

.news-card {
  display: flex;
  flex-direction: column;
  border: var(--Stroke__BorderWidth) solid var(--Color__NeutralLightest);
  border-radius: 8px;
  overflow: hidden;
  background: var(--Color__White);
  position: relative;
  cursor: pointer;
}

.news-card:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--Opacity__White40);
  pointer-events: none;
}

.news-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 1rem;
  flex-grow: 1;
}

.news-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* List style for news section on top page */
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.news-item {
  display: flex;
  flex-wrap: wrap;
  border-bottom: var(--Stroke__DividerWidth) solid var(--Color__NeutralLightest);
  padding: 24px 0;
}

.news-meta {
  flex: 0 0 300px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.news-title {
  flex: 1 1 auto;
  font-weight: 400;
  margin: 0;
}

/* Underline news titles on hover */
.news-title:hover {
  text-decoration: underline;
}

/* Change title color on hover of each news item */
.news-item:hover .news-title {
  color: var(--Color__Primary);
}

.news-label {
  display: inline-block;
  background: var(--Color__NeutralLightest);
  color: var(--Color__NeutralDark);
  padding: 4px 12px;
  font-size: var(--TextSizes__TextSmall);
  font-weight: 600;
  border-radius: 9999px;
  line-height: 1;
}

@media (max-width: 640px) {
  .news-meta {
    flex: 1 1 100%;
    margin-bottom: 6px;
  }
  .news-item {
    padding: 20px 0;
  }
  .news-label {
    padding: 3px 10px;
    font-size: var(--TextSizes__TextTiny);
  }
}

.secondary-btn {
  display: inline-flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: var(--Radius-Medium, 8px);
  border: 1px solid var(--Color-Neutral-Lighter, #CCC);
  background: var(--Color__White);
  color: var(--Color-Neutral-Darkest, #222);
  font-family: "Noto Sans JP";
  font-size: var(--Text-Sizes-Text-Regular, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 150% /* 24px */;
  text-decoration: none;
  transition: background 0.3s ease;
}

.secondary-btn:hover {
  background: var(--Color-Neutral-Lighter, #CCC);
}

/* Utility class for left-aligned items inside a flex container */
.align-left {
  align-self: flex-start;
}

/* Mission section */
.mission-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFF;
}

.mission-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 80px;
  align-self: stretch;
  width: 100%;
}


.mission-content {
  display: flex;
  align-items: center;
  gap: 80px;
  align-self: stretch;
  width: 100%;
  height: 100%;
}

.mission-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  flex: 1 0 0;
}

.mission-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.mission-second {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.mission-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-list li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mission-icon {
  width: 22px;
  height: 22px;
}

.mission-image {
  width: 30%;
  height: 100%;
  flex: 1 0 0;
  aspect-ratio: 1/1;
  border-radius: var(--Radius__Large, 16px);
  background: url("images/placeholder.svg") lightgray 50% /
    cover no-repeat;
}

/* Specific images for the Security Consulting page */
.consulting-first .mission-image {
  background: url("images/SecurityConsulting/Top_Image.png") lightgray 50% /
    cover no-repeat;
}

.consulting-second .mission-image {
  background: url("images/SecurityConsulting/Second_Image.png") lightgray 50% /
    cover no-repeat;
}

.mission-section.reverse .mission-content {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .mission-section.reverse .mission-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .mission-container {
    gap: 40px;
  }
  .mission-content {
    flex-direction: column;
    gap: 40px;
  }
  .mission-image {
    width: 100%;
  }
}

/* Team section */
.team-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 32px;
  text-align: center;
}

.team-section .subtitle {
  font-size: var(--TextSizes__TextMedium);
  color: var(--Color__Neutral);
}

.member-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px 80px;
}

.member-card {
  width: 40%;
  text-align: center;
}

.member-card .photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--Color__NeutralLightest);
  border-radius: var(--Radius__Medium);
  overflow: hidden;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.member-card .name {
  font-size: var(--TextSizes__Heading5);
  font-weight: 700;
  margin: 0 0 4px;
}

.member-card .role {
  font-size: var(--TextSizes__TextRegular);
  font-weight: 500;
  margin: 0 0 18px;
}

.member-card .bio {
  font-size: var(--TextSizes__TextSmall);
  margin: 0 0 30px;
  text-align: left;
}

.member-card .social a {
  color: var(--Color__NeutralDarkest);
  font-size: 24px;
  transition: color 0.3s;
}

.member-card .social a:hover {
  color: #0077b5;
}

@media (max-width: 768px) {
  .member-grid {
    gap: 70px 0;
  }
  .member-card {
    width: 100%;
  }
}

/* Responsive footer adjustments */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-container {
    padding: 48px;
  }
  .footer-left,
  .footer-middle {
    max-width: 100%;
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}


/* Responsive header adjustments */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--ColorScheme1__Background);
    margin: 0;
    padding: 16px 32px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 16px 32px;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    gap: 16px;
  }
  .contact-menu-btn {
    display: inline-flex;
  }
  .header-contact-btn {
    display: none;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-menu .dropdown {
    width: 100%;
  }
  .nav-menu .dropbtn {
    width: 100%;
    justify-content: space-between;
  }
  .nav-menu .dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0 0 0 16px;
    background: none;
    border: none;
    box-shadow: none;
  }
  .nav-menu .dropdown-menu li + li {
    margin-top: 8px;
  }
}

.policy-list {
  list-style: decimal;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy-list li {
  display: list-item;
}

/* Limit width of policy pages for easier reading; match news articles */
.policy-section {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

/* Wrapper positions the dropdown panel */
.nav-menu .dropdown {
  position: relative;
}

/* Panel – start hidden */
.dropdown-menu {
  display: none;              /* default */
  position: absolute;
  top: 100%;                  /* flush against the button – NO ‘+4px’ */
  left: 0;
  padding: 16px 16px;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--Color__NeutralLightest);
  box-shadow: 0 6px 12px rgba(0,0,0,.06);
  z-index: 1010;
  flex-direction: column;   
  list-style: none; 
  margin: 0;  /* matches your .info-card flex layout */
}

.dropdown-menu li + li {
  margin-top: 16px;      /* applies only to 2nd, 3rd, … items */
}
/* Show when the cursor is on the button **or** on the panel itself */
.dropdown:hover        .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: flex;
}

/* Show dropdown when toggled via JavaScript on mobile */
.dropdown.open .dropdown-menu {
  display: flex;
}

.dropdown.open .arrow-icon {
  transform: rotate(180deg);
  transition: transform .2s;
}

/* Optional: rotate arrow while open */
.dropdown:hover .arrow-icon,
.dropdown:focus-within .arrow-icon {
  transform: rotate(180deg);
  transition: transform .2s;
}
