@charset "UTF-8";
/*
  Theme Name: meitaku
  Description: Styles for meitaku
*/
/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

/* 11. Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul, ul[role=list], ol[role=list] {
  list-style: none;
}

/* 12. links */
a {
  text-decoration: none;
}

/*
// 例: assets/fonts/ に配置したフォントファイルを読み込む場合
@font-face {
  font-family: 'MyCustomFont';
  src: url('../fonts/MyCustomFont-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MyCustomFont';
  src: url('../fonts/MyCustomFont-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*/
/* Breakpoints & Layout */
.l-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 768px) {
  .l-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.l-container--narrow {
  max-width: 800px;
}

.l-container--wide {
  max-width: 1440px;
}

.l-container--fluid {
  max-width: 100%;
}

.l-container--full {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  padding: 24px 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8) 0%, transparent 100%);
}
.l-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 12px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.l-header.is-scrolled .l-header__logo-text,
.l-header.is-scrolled .l-header__link {
  color: #0f172a;
  text-shadow: none;
}
.l-header.is-scrolled .l-header__logo-icon {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.l-header__logo-img {
  height: 40px;
  width: auto;
}
.l-header__logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(to top right, #3b82f6, #a5f3fc);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4), 0 0 15px rgba(34, 211, 238, 0.3);
  transition: box-shadow 0.3s ease;
}
.l-header__logo-text {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.05em;
  transition: color 0.3s, text-shadow 0.3s;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 4px 10px rgba(0, 0, 0, 0.7), 0 0 12px rgba(255, 255, 255, 0.3);
}
.l-header__nav {
  display: block;
  margin-left: auto;
  margin-right: 40px;
}
@media (max-width: 768px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__list {
  display: flex;
  gap: 32px;
}
.l-header__link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s, text-shadow 0.3s;
  position: relative;
  padding: 8px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 8px rgba(0, 0, 0, 0.5);
}
.l-header__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #3b82f6;
  transition: width 0.3s ease;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.8);
}
.l-header__link:hover {
  color: #93c5fd;
}
.l-header__link:hover::after {
  width: 100%;
}
.l-header__cta {
  display: block;
}
@media (max-width: 768px) {
  .l-header__cta {
    display: none;
  }
}
.l-header__cta .c-btn {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
}
.l-header__cta .c-btn:hover {
  background-color: #ffffff;
  color: #0f172a;
}

.l-header.is-scrolled .l-header__cta .c-btn {
  color: #0f172a;
  border-color: #cbd5e1;
  background-color: transparent;
}
.l-header.is-scrolled .l-header__cta .c-btn:hover {
  background-color: #f1f5f9;
}

.l-footer {
  background-color: #000000;
  color: #64748b;
  padding: 64px 0;
  border-top: 1px solid #0f172a;
}
.l-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .l-footer__cols {
    grid-template-columns: 1fr;
  }
}
.l-footer__info {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .l-footer__info {
    grid-column: span 1;
  }
}
.l-footer__logo {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.l-footer__logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: linear-gradient(to top right, #2563eb, #22d3ee);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}
.l-footer__logo-img {
  height: 32px;
  width: auto;
}
.l-footer__logo-text {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
}
.l-footer__desc {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
  max-width: 24rem;
  margin-bottom: 24px;
}
.l-footer__social {
  display: flex;
  gap: 16px;
}
.l-footer__social-link {
  width: 40px;
  height: 40px;
  background-color: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.3s ease;
  text-decoration: none;
}
.l-footer__social-link:hover {
  background-color: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  transform: translateY(-2px);
}
.l-footer__nav-title {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 24px;
}
.l-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
  list-style: none;
  padding: 0;
}
.l-footer__nav-link {
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s ease;
}
.l-footer__nav-link:hover {
  color: #60a5fa;
}
.l-footer__bottom {
  border-top: 1px solid #0f172a;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #475569;
}
@media (max-width: 768px) {
  .l-footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
.l-footer__copy, .l-footer__vision {
  margin: 0;
}

.l-grid {
  display: grid;
  width: 100%;
  gap: 24px;
  grid-template-columns: 1fr;
}

.l-grid--cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.l-grid--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.l-grid--cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.l-grid--cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.l-grid--cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.l-grid--cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.l-grid--cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.l-grid--cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.l-grid--cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.l-grid--cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.l-grid--cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.l-grid--cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

@media (max-width: 768px) {
  .md\:l-grid--cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .md\:l-grid--cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:l-grid--cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:l-grid--cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:l-grid--cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .md\:l-grid--cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .md\:l-grid--cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .md\:l-grid--cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .md\:l-grid--cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .md\:l-grid--cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .md\:l-grid--cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .md\:l-grid--cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
@media (max-width: 1024px) {
  .lg\:l-grid--cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .lg\:l-grid--cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:l-grid--cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:l-grid--cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:l-grid--cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .lg\:l-grid--cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .lg\:l-grid--cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .lg\:l-grid--cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .lg\:l-grid--cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .lg\:l-grid--cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .lg\:l-grid--cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .lg\:l-grid--cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
.l-grid--gap-sm {
  gap: 16px;
}

.l-grid--gap-lg {
  gap: 40px;
}

.l-grid--gap-0 {
  gap: 0;
}

.l-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-drawer.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.l-drawer__inner {
  width: 100%;
  padding: 24px;
  text-align: center;
}
.l-drawer__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}
.l-drawer__link {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  transition: color 0.3s;
}
.l-drawer__link:hover {
  color: #2563eb;
}

/*
  Theme Name: meitaku
  Description: Styles for meitaku
*/
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.5rem 1.5rem;
  width: auto;
  max-width: 100%;
  font-family: "Inter", "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5;
  text-decoration: none;
  text-align: center;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 640px) {
  .c-btn {
    padding: 0.75rem 2.5rem;
    font-size: 1rem;
  }
}
.c-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
.c-btn[disabled], .c-btn.is-disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
  box-shadow: none !important;
  transform: none !important;
}

.c-btn--primary {
  border: 1px solid #1658a0;
  background-color: #1658a0;
  color: #ffffff;
}
.c-btn--primary:hover {
  background-color: rgb(19.8, 79.2, 144);
  border-color: rgb(19.8, 79.2, 144);
}

.c-btn--secondary {
  border: 1px solid #cbd5e1;
  background-color: transparent;
  color: #cbd5e1;
}
.c-btn--secondary:hover {
  background-color: #cbd5e1;
  color: #ffffff;
}
.c-btn--secondary:hover .c-btn__icon {
  fill: #ffffff;
  stroke: #ffffff;
}
.c-btn--secondary {
  color: #334155;
  border-color: #cbd5e1;
}
.c-btn--secondary:hover {
  background-color: #f1f5f9;
  border-color: #94a3b8;
  color: #1658a0;
}

.c-btn--accent {
  border: 1px solid #ea580c;
  background-color: #ea580c;
  color: #ffffff;
}
.c-btn--accent:hover {
  background-color: rgb(210.6, 79.2, 10.8);
  border-color: rgb(210.6, 79.2, 10.8);
}
.c-btn--accent {
  font-weight: 700;
}
.c-btn--accent:hover .c-btn__icon--arrow {
  transform: translateX(4px);
}

.c-btn--sm {
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
}
@media (max-width: 640px) {
  .c-btn--sm {
    padding: 0.4rem 1.25rem;
    font-size: 0.875rem;
  }
}

.c-btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}
@media (max-width: 640px) {
  .c-btn--lg {
    padding: 1.25rem 4rem;
    font-size: 1.125rem;
  }
}

.c-btn--full {
  width: 100%;
  display: flex;
}

.c-btn__icon {
  width: 1em;
  height: 1em;
  transition: transform 0.3s ease;
  fill: currentColor;
}
.c-btn__icon--arrow {
  width: 0.8em;
  height: 0.8em;
}

.c-hamburger {
  display: none;
  width: 48px;
  height: 48px;
  position: relative;
  z-index: 250;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
@media (max-width: 768px) {
  .c-hamburger {
    display: block;
  }
}
.c-hamburger__line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.c-hamburger__line:nth-child(1) {
  top: 16px;
}
.c-hamburger__line:nth-child(2) {
  top: 23px;
}
.c-hamburger__line:nth-child(3) {
  top: 30px;
}
.is-scrolled .c-hamburger .c-hamburger__line, .c-hamburger.is-active .c-hamburger__line {
  background-color: #0f172a;
}
.c-hamburger.is-active__line:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}
.c-hamburger.is-active__line:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-active__line:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

.p-about {
  padding: 120px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-about {
    padding: 80px 0;
  }
}
.p-about__layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 96px;
}
@media (max-width: 1024px) {
  .p-about__layout {
    gap: 64px;
  }
}
@media (max-width: 768px) {
  .p-about__layout {
    flex-direction: column;
    gap: 48px;
  }
}
.p-about__image-area {
  width: 50%;
}
@media (max-width: 768px) {
  .p-about__image-area {
    width: 100%;
  }
}
.p-about__image-box {
  position: relative;
  cursor: pointer;
}
.p-about__image-box:hover .p-about__image-decor {
  transform: translate(8px, 8px);
}
.p-about__image-decor {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 100%;
  height: 100%;
  background-color: #f1f5f9;
  border-radius: 16px;
  z-index: 0;
  transition: transform 0.5s ease;
}
.p-about__image-wrapper {
  position: relative;
  z-index: 1;
  aspect-ratio: 16/9;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-about__placeholder {
  text-align: center;
  color: #94a3b8;
  font-weight: bold;
}
.p-about__placeholder-text {
  font-size: 1.125rem;
  color: #334155;
  margin-bottom: 8px;
}
.p-about__content-area {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .p-about__content-area {
    width: 100%;
  }
}
.p-about__title {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .p-about__title {
    font-size: 28px;
  }
}
.p-about__title-line {
  display: inline-block;
  width: 6px;
  height: 40px;
  background-color: #2563eb;
  margin-right: 24px;
  border-radius: 9999px;
}
.p-about__text {
  font-size: 18px;
  color: #475569;
  line-height: 2;
  text-align: justify;
}
.p-about__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-about__feature {
  display: flex;
  align-items: flex-start;
}
.p-about__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.p-about__feature-icon--pink {
  background-color: #fdf2f8;
  color: #ec4899;
}
.p-about__feature-icon--teal {
  background-color: #f0fdfa;
  color: #0d9488;
}
.p-about__feature-body {
  margin-left: 20px;
}
.p-about__feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}
.p-about__feature-desc {
  font-size: 16px;
  color: #475569;
  margin-top: 8px;
  line-height: 1.6;
}
.p-about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 8px;
}
.p-about__tag {
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #e2e8f0;
  background-color: #f8fafc;
  color: #475569;
  transition: all 0.2s ease;
  cursor: default;
}
.p-about__tag:hover {
  background-color: #f1f5f9;
  color: #2563eb;
}

.p-blog {
  padding: 128px 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .p-blog {
    padding: 80px 0;
  }
}
.p-blog {
  /* セクションヘッダー */
}
.p-blog__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f1f5f9;
}
@media (max-width: 768px) {
  .p-blog__header {
    margin-bottom: 40px;
  }
}
.p-blog__title {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
}
@media (max-width: 768px) {
  .p-blog__title {
    font-size: 28px;
  }
}
.p-blog__subtitle {
  color: #64748b;
  font-size: 16px;
  margin-top: 8px;
}
.p-blog__header-link {
  display: flex;
}
@media (max-width: 640px) {
  .p-blog__header-link {
    display: none;
  }
}
.p-blog__header-link a {
  display: inline-flex;
  align-items: center;
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}
.p-blog__header-link a:hover {
  color: #1d4ed8;
}
.p-blog__header-link a svg {
  margin-left: 8px;
}
.p-blog {
  /* グリッドレイアウト */
}
.p-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .p-blog__grid {
    grid-template-columns: 1fr;
  }
}
.p-blog {
  /* カード本体 */
}
.p-blog__card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.p-blog__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
  /* ホバー時の全体と画像の連動アニメーション */
}
.p-blog__card-link:hover {
  transform: translateY(-4px);
}
.p-blog__card-link:hover .p-blog__image-wrapper .p-blog__image,
.p-blog__card-link:hover .p-blog__no-image {
  transform: scale(1.05);
}
.p-blog__card-link:hover .p-blog__card-title {
  color: #2563eb;
}
.p-blog {
  /* 画像ラッパー */
}
.p-blog__image-wrapper {
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #f8fafc;
  border: 1px solid #f1f5f9;
  position: relative;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.p-blog__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.p-blog__no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8fafc;
  color: #cbd5e1;
  transition: transform 0.7s ease;
}
.p-blog {
  /* メタ情報（カテゴリ・日付） */
}
.p-blog__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 12px;
}
.p-blog__category {
  background-color: #eff6ff;
  color: #2563eb;
  border: 1px solid #dbeafe;
  padding: 4px 12px;
  border-radius: 9999px;
  font-weight: 500;
}
.p-blog__date {
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 4px;
}
.p-blog {
  /* 記事タイトル */
}
.p-blog__card-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.6;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-blog {
  /* スマホ用下部リンク */
}
.p-blog__footer {
  text-align: center;
  margin-top: 48px;
  display: none;
}
@media (max-width: 640px) {
  .p-blog__footer {
    display: block;
  }
}
.p-blog__footer a {
  display: inline-flex;
  align-items: center;
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
}
.p-blog__footer a:hover {
  color: #1d4ed8;
}
.p-blog__footer a svg {
  margin-left: 4px;
}
.p-blog {
  /* 記事がない場合 */
}
.p-blog__empty {
  text-align: center;
  padding: 64px 0;
  color: #64748b;
  background-color: #f8fafc;
  border-radius: 16px;
  border: 1px dashed #e2e8f0;
}

.p-contact {
  position: relative;
  padding: 128px 0;
  background-color: #0f172a;
  color: #ffffff;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-contact {
    padding: 80px 0;
  }
}
.p-contact__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .p-contact__glow {
    width: 400px;
    height: 400px;
  }
}
.p-contact__inner {
  position: relative;
  z-index: 10;
  max-width: 896px;
  margin: 0 auto;
}
.p-contact__header {
  text-align: center;
  margin-bottom: 48px;
}
.p-contact__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  background: linear-gradient(to right, #93c5fd, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
@media (max-width: 768px) {
  .p-contact__title {
    font-size: 36px;
  }
}
.p-contact__desc {
  color: #94a3b8;
  font-size: 18px;
  line-height: 1.8;
}
.p-contact__body {
  background-color: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(24px);
  padding: 48px;
  border-radius: 24px;
  border: 1px solid #334155;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-contact__body {
    padding: 32px;
  }
}
.p-contact__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #2563eb, #06b6d4, #2563eb);
}
.p-contact__empty {
  text-align: center;
  color: #94a3b8;
  padding: 64px 0;
  border: 1px dashed #475569;
  border-radius: 12px;
  font-size: 14px;
}
.p-contact__form .p-contact__form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .p-contact__form .p-contact__form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
.p-contact__form .p-contact__form-item {
  margin-bottom: 24px;
}
.p-contact__form-grid .p-contact__form .p-contact__form-item {
  margin-bottom: 0;
}
.p-contact__form .p-contact__form-item:last-child {
  margin-bottom: 0;
  margin-top: 16px;
}
.p-contact__form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #cbd5e1;
  margin-bottom: 8px;
  padding-left: 4px;
}
.p-contact__form input[type=text],
.p-contact__form input[type=email],
.p-contact__form input[type=tel],
.p-contact__form textarea,
.p-contact__form select {
  width: 100%;
  padding: 16px 20px;
  background-color: #0f172a;
  border: 1px solid #475569;
  border-radius: 12px;
  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  transition: all 0.3s ease;
  outline: none;
}
.p-contact__form input[type=text]::placeholder,
.p-contact__form input[type=email]::placeholder,
.p-contact__form input[type=tel]::placeholder,
.p-contact__form textarea::placeholder,
.p-contact__form select::placeholder {
  color: #475569;
}
.p-contact__form input[type=text]:focus,
.p-contact__form input[type=email]:focus,
.p-contact__form input[type=tel]:focus,
.p-contact__form textarea:focus,
.p-contact__form select:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}
.p-contact__form textarea {
  min-height: 160px;
  resize: vertical;
}
.p-contact__form select {
  appearance: none;
  cursor: pointer;
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%2364748b" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpolyline points="6 9 12 15 18 9"/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}
.p-contact__form input[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
  margin-top: 16px;
  background: linear-gradient(to right, #2563eb, #0891b2);
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(30, 58, 138, 0.3);
}
.p-contact__form input[type=submit]:hover {
  background: linear-gradient(to right, #3b82f6, #06b6d4);
  transform: translateY(-4px);
}
.p-contact__form input[type=submit]:active {
  transform: scale(0.98);
}
.p-contact__form .wpcf7-not-valid-tip {
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
  padding-left: 4px;
}
.p-contact__form .wpcf7-response-output {
  border-radius: 8px;
  padding: 16px;
  margin-top: 24px;
  font-size: 14px;
  background-color: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
  color: #ffffff;
}

.p-hero {
  position: relative;
  /* ★修正: min-height: 100vh; をやめ、余白でスッキリと制御 */
  padding: 180px 0 120px;
  display: flex;
  align-items: center;
  /* ★修正: コンテンツ全体を左寄せに */
  justify-content: flex-start;
  background-color: #0f172a;
  overflow: hidden;
  color: #ffffff;
}
.p-hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.8;
  pointer-events: none;
}
.p-hero__glow {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  border-radius: 9999px;
  mix-blend-mode: screen;
}
.p-hero__glow--top-right {
  top: 0;
  right: 0;
  width: 75%;
  height: 75%;
  background-color: rgba(30, 58, 138, 0.2);
  filter: blur(120px);
}
.p-hero__glow--bottom-left {
  bottom: 0;
  left: 0;
  width: 50%;
  height: 50%;
  background-color: rgba(22, 78, 99, 0.1);
  filter: blur(100px);
}
.p-hero__gradient-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(circle, transparent 0%, rgba(15, 23, 42, 0.4) 60%, #0f172a 100%);
}
.p-hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  /* ★修正: 左寄せを徹底 */
  text-align: left;
}
.p-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  background-color: rgba(30, 58, 138, 0.3);
  color: rgb(168.6, 208.6, 253.4);
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
  margin-bottom: 32px;
}
.p-hero__badge-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #22d3ee;
  margin-right: 12px;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.8);
}
.p-hero__title {
  /* ★修正: h1を相当でかくする (PCで最大約110px、最小でも56px) */
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}
.p-hero__title strong, .p-hero__title span {
  background: linear-gradient(to right, #93c5fd, #a5f3fc, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* ★修正: 左寄せをキープするため inline-block に変更 */
  display: inline-block;
  padding-bottom: 8px;
}
.p-hero__subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 42rem;
}
.p-hero__actions {
  display: flex;
  /* ★修正: ボタンも左寄せ */
  justify-content: flex-start;
  gap: 20px;
}
@media (max-width: 768px) {
  .p-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-hero__btn {
  padding: 16px 32px;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.p-hero__btn--primary {
  background-color: #2563eb;
  color: #ffffff;
  box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}
.p-hero__btn--primary:hover {
  background-color: rgb(18.5714285714, 76.1428571429, 202.4285714286);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.23);
}
.p-hero__btn--primary .c-btn__icon {
  margin-left: 8px;
  transition: transform 0.3s;
}
.p-hero__btn--primary:hover .c-btn__icon {
  transform: translateX(4px);
}
.p-hero__btn--secondary {
  border: 1px solid #475569;
  color: #cbd5e1;
  background-color: transparent;
  backdrop-filter: blur(4px);
}
.p-hero__btn--secondary:hover {
  border-color: #94a3b8;
  background-color: #1e293b;
  color: #ffffff;
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.p-hero__scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  opacity: 0.5;
  pointer-events: none;
  animation: bounce 2s infinite;
}
.p-hero__scroll-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #94a3b8;
}
.p-hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, #94a3b8, transparent);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -25%);
  }
}
.p-services {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .p-services {
    padding: 80px 0;
  }
}
.p-services {
  /* セクションヘッダー */
}
.p-services__header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 64px;
}
.p-services__subtitle {
  color: #2563eb;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 16px;
}
.p-services__title {
  font-size: 48px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
}
@media (max-width: 640px) {
  .p-services__title {
    font-size: 32px;
  }
}
.p-services__desc {
  color: #475569;
  font-size: 18px;
  line-height: 1.8;
}
.p-services {
  /* グリッドレイアウト */
}
.p-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .p-services__grid {
    grid-template-columns: 1fr;
  }
}
.p-services {
  /* カード本体 */
}
.p-services__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  text-decoration: none;
  transition: all 0.3s ease;
  /* ホバーアクション */
}
.p-services__card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}
.p-services__card:hover .p-services__arrow {
  color: #3b82f6;
}
.p-services__card:hover .p-services__action {
  opacity: 1;
  transform: translateY(0);
}
.p-services__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.p-services__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.p-services__arrow {
  color: #cbd5e1;
  transition: color 0.3s ease;
}
.p-services__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}
.p-services__card-desc {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 24px;
  flex-grow: 1;
}
.p-services {
  /* タグ */
}
.p-services__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid #f8fafc;
}
.p-services__tag {
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
  background-color: #f8fafc;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid #f1f5f9;
}
.p-services {
  /* 詳細を見るリンク */
}
.p-services__action {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}
.p-services {
  /* * カラーバリエーション（モディファイア） 
   * Reactの `${service.color}` に対応
   */
}
.p-services__card--blue .p-services__icon {
  background-color: #eff6ff;
  color: #2563eb;
}
.p-services__card--blue:hover .p-services__icon {
  background-color: #2563eb;
  color: #ffffff;
  transform: scale(1.1);
}
.p-services__card--indigo .p-services__icon {
  background-color: #eef2ff;
  color: #4f46e5;
}
.p-services__card--indigo:hover .p-services__icon {
  background-color: #4f46e5;
  color: #ffffff;
  transform: scale(1.1);
}
.p-services__card--pink .p-services__icon {
  background-color: #fdf2f8;
  color: #db2777;
}
.p-services__card--pink:hover .p-services__icon {
  background-color: #db2777;
  color: #ffffff;
  transform: scale(1.1);
}
.p-services__card--teal .p-services__icon {
  background-color: #f0fdfa;
  color: #0d9488;
}
.p-services__card--teal:hover .p-services__icon {
  background-color: #0d9488;
  color: #ffffff;
  transform: scale(1.1);
}

.p-about-page {
  background-color: #f8fafc;
}

.p-about-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 64px;
  text-align: center;
}
.p-about-section-title svg {
  color: #2563eb;
}
@media (max-width: 768px) {
  .p-about-section-title {
    font-size: 28px;
    margin-bottom: 48px;
  }
}

.p-about-hero {
  position: relative;
  background-color: #0f172a;
  color: #ffffff;
  padding: 160px 0 128px;
  overflow: hidden;
}
.p-about-hero__bg-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(30, 58, 138, 0.4), transparent);
}
.p-about-hero__bg-left {
  position: absolute;
  bottom: -96px;
  left: -96px;
  width: 384px;
  height: 384px;
  background-color: rgba(79, 70, 229, 0.2);
  border-radius: 50%;
  filter: blur(100px);
}
.p-about-hero__inner {
  position: relative;
  z-index: 10;
}
.p-about-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 48px;
  transition: color 0.3s, transform 0.3s;
}
.p-about-hero__back:hover {
  color: #ffffff;
  transform: translateX(-4px);
}
.p-about-hero__title-area {
  text-align: center;
}
.p-about-hero__subtitle {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 9999px;
  background-color: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #93c5fd;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.p-about-hero__title {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .p-about-hero__title {
    font-size: 40px;
  }
}

.p-about-message {
  padding: 96px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #f1f5f9;
}
.p-about-message__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.p-about-message__title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 32px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .p-about-message__title {
    font-size: 24px;
    text-align: left;
  }
}
.p-about-message__text {
  color: #475569;
  font-size: 16px;
  line-height: 2;
  text-align: left;
}
.p-about-message__text p {
  margin-bottom: 24px;
}
.p-about-message__text p:last-child {
  margin-bottom: 0;
}

.p-about-info {
  padding: 96px 0;
  background-color: #f8fafc;
}
.p-about-info__inner {
  max-width: 896px;
  margin: 0 auto;
}
.p-about-info__table-wrap {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}
.p-about-info__table {
  width: 100%;
  border-collapse: collapse;
}
.p-about-info__table th, .p-about-info__table td {
  padding: 24px 32px;
  border-bottom: 1px solid #f1f5f9;
  text-align: left;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .p-about-info__table th, .p-about-info__table td {
    display: block;
    padding: 16px 24px;
  }
}
.p-about-info__table tr:last-child th, .p-about-info__table tr:last-child td {
  border-bottom: none;
}
.p-about-info__table th {
  width: 30%;
  background-color: #f8fafc;
  color: #0f172a;
  font-weight: 700;
  border-right: 1px solid #f1f5f9;
}
@media (max-width: 768px) {
  .p-about-info__table th {
    width: 100%;
    border-right: none;
    background-color: rgba(241, 245, 249, 0.5);
  }
}
.p-about-info__table td {
  color: #334155;
}

.p-about-history {
  padding: 96px 0;
  background-color: #ffffff;
  border-top: 1px solid #f1f5f9;
}
.p-about-history__inner {
  max-width: 800px;
  margin: 0 auto;
}
.p-about-history__list {
  position: relative;
  padding-left: 24px;
}
.p-about-history__list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6px;
  width: 2px;
  background-color: #e2e8f0;
}
.p-about-history__item {
  position: relative;
  margin-bottom: 48px;
}
.p-about-history__item:last-child {
  margin-bottom: 0;
}
.p-about-history__dot {
  position: absolute;
  top: 6px;
  left: -24px;
  width: 14px;
  height: 14px;
  background-color: #2563eb;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #dbeafe;
}
.p-about-history__content {
  background-color: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 24px;
  transition: box-shadow 0.3s ease;
}
.p-about-history__content:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}
.p-about-history__year {
  display: block;
  color: #2563eb;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}
.p-about-history__item-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}
.p-about-history__item-desc {
  color: #475569;
  font-size: 14px;
  line-height: 1.8;
}

.p-about-cta {
  background-color: #0f172a;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}
.p-about-cta__inner {
  max-width: 896px;
  margin: 0 auto;
}
.p-about-cta__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}
.p-about-cta__desc {
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.p-about-cta__action {
  display: flex;
  justify-content: center;
}
.p-about-cta__action .c-btn {
  padding: 16px 32px;
  font-size: 16px;
}
.p-about-cta__action .c-btn .c-btn__icon {
  transition: transform 0.3s;
}
.p-about-cta__action .c-btn:hover .c-btn__icon {
  transform: translateX(4px);
}

.p-archive-page {
  background-color: #f8fafc;
  padding-bottom: 96px;
  min-height: 100vh;
}

.p-archive-hero {
  position: relative;
  background-color: #0f172a;
  color: #ffffff;
  padding: 96px 0 128px;
  overflow: hidden;
}
.p-archive-hero__bg-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(30, 58, 138, 0.4), transparent);
}
.p-archive-hero__bg-left {
  position: absolute;
  bottom: -96px;
  left: -96px;
  width: 384px;
  height: 384px;
  background-color: rgba(79, 70, 229, 0.2);
  border-radius: 50%;
  filter: blur(100px);
}
.p-archive-hero__inner {
  position: relative;
  z-index: 10;
  text-align: center;
}
.p-archive-hero__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}
@media (max-width: 768px) {
  .p-archive-hero__title {
    font-size: 36px;
  }
}
.p-archive-hero__desc {
  color: #94a3b8;
  font-size: 18px;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
}

.p-archive-content {
  position: relative;
  z-index: 20;
  margin-top: -32px;
}

.p-archive-filter {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 32px;
  border: 1px solid #f1f5f9;
  margin-bottom: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .p-archive-filter {
    flex-direction: column;
    padding: 24px;
    align-items: stretch;
  }
}
.p-archive-filter__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .p-archive-filter__categories {
    justify-content: center;
  }
}
.p-archive-filter__cat {
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  background-color: #f1f5f9;
  color: #475569;
}
.p-archive-filter__cat:hover {
  background-color: #e2e8f0;
}
.p-archive-filter__cat.is-active {
  background-color: #2563eb;
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.p-archive-filter__search {
  position: relative;
  width: 320px;
}
@media (max-width: 768px) {
  .p-archive-filter__search {
    width: 100%;
  }
}
.p-archive-filter__search input {
  width: 100%;
  padding: 12px 16px 12px 40px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background-color: #f8fafc;
  transition: all 0.3s ease;
  outline: none;
  font-size: 16px;
  color: #1e293b;
}
.p-archive-filter__search input:focus {
  border-color: #3b82f6;
  background-color: #ffffff;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}
.p-archive-filter__search button {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) {
  .p-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .p-archive-grid {
    grid-template-columns: 1fr;
  }
}

.p-archive-card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.p-archive-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.p-archive-card:hover .p-archive-card__image {
  transform: scale(1.05);
}
.p-archive-card:hover .p-archive-card__title {
  color: #2563eb;
}
.p-archive-card:hover .p-archive-card__readmore {
  opacity: 1;
  transform: translateY(0);
}
.p-archive-card__link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.p-archive-card__image-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  background-color: #f1f5f9;
  overflow: hidden;
}
.p-archive-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.p-archive-card__no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  background-color: #f1f5f9;
}
.p-archive-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: #2563eb;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #dbeafe;
  z-index: 10;
}
.p-archive-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.p-archive-card__meta {
  display: flex;
  align-items: center;
  color: #64748b;
  font-size: 12px;
  margin-bottom: 12px;
  gap: 8px;
}
.p-archive-card__meta svg {
  width: 14px;
  height: 14px;
}
.p-archive-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-archive-card__desc {
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-archive-card__readmore {
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  color: #2563eb;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}
.p-archive-card__readmore svg {
  margin-left: 8px;
}

.p-archive-empty {
  text-align: center;
  padding: 80px 0;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px dashed #e2e8f0;
}
.p-archive-empty__icon {
  width: 64px;
  height: 64px;
  background-color: #f8fafc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #cbd5e1;
}
.p-archive-empty__text {
  color: #64748b;
  font-size: 18px;
  margin-bottom: 16px;
}
.p-archive-empty__link {
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
}
.p-archive-empty__link:hover {
  text-decoration: underline;
}

.p-archive-pagination {
  margin-top: 64px;
}
.p-archive-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.p-archive-pagination .page-numbers {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: #ffffff;
  color: #475569;
  border: 1px solid #e2e8f0;
}
.p-archive-pagination .page-numbers:hover {
  background-color: #eff6ff;
  color: #2563eb;
}
.p-archive-pagination .page-numbers.current {
  background-color: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
}
.p-archive-pagination .page-numbers.dots {
  border: none;
  background: none;
  pointer-events: none;
}

.p-archive-empty__link {
  color: #2563eb;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 0;
}
.p-archive-empty__link:hover {
  text-decoration: underline;
}

.p-archive-pagination .page-numbers {
  cursor: pointer;
}
.p-archive-pagination .page-numbers[disabled] {
  background-color: #f1f5f9;
  color: #cbd5e1;
  cursor: not-allowed;
  pointer-events: none;
}

.p-profile-page {
  background-color: #f8fafc;
}

.p-profile-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 64px;
  text-align: center;
}
.p-profile-section-title svg {
  color: #2563eb;
}
@media (max-width: 768px) {
  .p-profile-section-title {
    font-size: 28px;
    margin-bottom: 48px;
  }
}

.p-profile-hero {
  position: relative;
  background-color: #0f172a;
  color: #ffffff;
  padding: 160px 0 128px;
  overflow: hidden;
}
.p-profile-hero__bg-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(30, 58, 138, 0.4), transparent);
}
.p-profile-hero__bg-left {
  position: absolute;
  bottom: -96px;
  left: -96px;
  width: 384px;
  height: 384px;
  background-color: rgba(79, 70, 229, 0.2);
  border-radius: 50%;
  filter: blur(100px);
}
.p-profile-hero__inner {
  position: relative;
  z-index: 10;
}
.p-profile-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 48px;
  transition: color 0.3s, transform 0.3s;
}
.p-profile-hero__back:hover {
  color: #ffffff;
  transform: translateX(-4px);
}
.p-profile-hero__layout {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media (max-width: 768px) {
  .p-profile-hero__layout {
    flex-direction: column;
    text-align: center;
  }
}
.p-profile-hero__image-box {
  width: 256px;
  height: 256px;
  border-radius: 24px;
  background-color: #1e293b;
  border: 4px solid rgba(59, 130, 246, 0.3);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .p-profile-hero__image-box {
    width: 192px;
    height: 192px;
  }
}
.p-profile-hero__image-box:hover .p-profile-hero__image-overlay {
  opacity: 1;
}
.p-profile-hero__image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(37, 99, 235, 0.2), transparent);
}
.p-profile-hero__image-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  opacity: 0.5;
}
.p-profile-hero__image-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.p-profile-hero__info {
  flex-grow: 1;
}
.p-profile-hero__badge {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 9999px;
  background-color: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #93c5fd;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.p-profile-hero__name {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .p-profile-hero__name {
    font-size: 48px;
  }
}
.p-profile-hero__role {
  font-size: 20px;
  color: #cbd5e1;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .p-profile-hero__role {
    font-size: 16px;
  }
}

.p-profile-message {
  padding: 96px 0;
}
.p-profile-message__inner {
  max-width: 896px;
  margin: 0 auto;
  position: relative;
}
.p-profile-message__quote-icon {
  position: absolute;
  top: -32px;
  left: -32px;
  color: #dbeafe;
  z-index: -1;
}
.p-profile-message__title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 32px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-profile-message__title {
    font-size: 24px;
  }
}
.p-profile-message__text {
  color: #475569;
  font-size: 18px;
  line-height: 2;
  text-align: justify;
}
.p-profile-message__text p {
  margin-bottom: 24px;
}
.p-profile-message__text p:last-child {
  margin-bottom: 0;
}

.p-profile-history {
  padding: 96px 0;
  background-color: #ffffff;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}
.p-profile-history__inner {
  max-width: 1024px;
  margin: 0 auto;
}
.p-profile-history__list {
  position: relative;
}
.p-profile-history__list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #e2e8f0;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .p-profile-history__list::before {
    display: none;
  }
}
.p-profile-history__item {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 48px;
}
.p-profile-history__item:last-child {
  margin-bottom: 0;
}
.p-profile-history__item:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}
@media (max-width: 768px) {
  .p-profile-history__item {
    flex-direction: column !important;
    text-align: left !important;
    margin-bottom: 32px;
  }
}
.p-profile-history__dot {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background-color: #2563eb;
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
@media (max-width: 768px) {
  .p-profile-history__dot {
    display: none;
  }
}
.p-profile-history__content {
  width: calc(50% - 32px);
  background-color: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}
.p-profile-history__content:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .p-profile-history__content {
    width: 100%;
    padding: 24px;
  }
}
.p-profile-history__year {
  display: block;
  color: #2563eb;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}
.p-profile-history__item-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}
.p-profile-history__item-desc {
  color: #475569;
  font-size: 14px;
  line-height: 1.8;
}

.p-profile-qual {
  padding: 96px 0;
  background-color: #f8fafc;
}
.p-profile-qual__inner {
  max-width: 1024px;
  margin: 0 auto;
}
.p-profile-qual__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .p-profile-qual__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .p-profile-qual__grid {
    grid-template-columns: 1fr;
  }
}
.p-profile-qual__card {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.3s ease;
}
.p-profile-qual__card:hover {
  border-color: #3b82f6;
}
.p-profile-qual__card:hover .p-profile-qual__icon {
  background-color: #2563eb;
  color: #ffffff;
}
.p-profile-qual__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.p-profile-qual__name {
  font-size: 14px;
  font-weight: 700;
  color: #334155;
  line-height: 1.4;
}

.p-profile-cta {
  background-color: #0f172a;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}
.p-profile-cta__inner {
  max-width: 896px;
  margin: 0 auto;
}
.p-profile-cta__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}
.p-profile-cta__desc {
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.p-profile-cta__action {
  display: flex;
  justify-content: center;
}
.p-profile-cta__action .c-btn {
  padding: 16px 32px;
  font-size: 16px;
}
.p-profile-cta__action .c-btn .c-btn__icon {
  transition: transform 0.3s;
}
.p-profile-cta__action .c-btn:hover .c-btn__icon {
  transform: translateX(4px);
}

.p-single-page {
  background-color: #f8fafc;
  padding-bottom: 96px;
  min-height: 100vh;
}

.p-single-hero {
  position: relative;
  background-color: #0f172a;
  color: #ffffff;
  padding: 160px 0 128px;
  overflow: hidden;
}
.p-single-hero__bg-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(30, 58, 138, 0.4), transparent);
}
.p-single-hero__bg-left {
  position: absolute;
  bottom: -96px;
  left: -96px;
  width: 384px;
  height: 384px;
  background-color: rgba(79, 70, 229, 0.2);
  border-radius: 50%;
  filter: blur(100px);
}
.p-single-hero__inner {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}
.p-single-hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.p-single-hero__category {
  background-color: rgba(59, 130, 246, 0.2);
  color: #bfdbfe;
  border: 1px solid rgba(96, 165, 250, 0.3);
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(4px);
}
.p-single-hero__date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  font-size: 14px;
}
.p-single-hero__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.025em;
}
@media (max-width: 768px) {
  .p-single-hero__title {
    font-size: 24px;
  }
}

.p-single-content {
  position: relative;
  z-index: 20;
  margin-top: -64px;
  max-width: 1080px;
}

.p-single-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  overflow: hidden;
  margin-bottom: 64px;
}
.p-single-card__thumbnail {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #f1f5f9;
}
.p-single-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-single-card__body {
  padding: 64px;
}
@media (max-width: 768px) {
  .p-single-card__body {
    padding: 32px 24px;
  }
}

.p-single-article {
  color: #334155;
  font-size: 16px;
  line-height: 1.9;
}
.p-single-article h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 64px 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
}
.p-single-article h2:first-child {
  margin-top: 0;
}
.p-single-article h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 40px 0 16px;
  display: flex;
  align-items: center;
}
.p-single-article h3::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 24px;
  background-color: #2563eb;
  margin-right: 12px;
  border-radius: 2px;
}
.p-single-article h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 32px 0 16px;
}
.p-single-article p {
  margin-bottom: 24px;
}
.p-single-article img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 32px 0;
}
.p-single-article a {
  color: #2563eb;
  text-decoration: underline;
  transition: color 0.3s;
}
.p-single-article a:hover {
  color: #1e40af;
}
.p-single-article ul, .p-single-article ol {
  margin-bottom: 24px;
  padding-left: 24px;
}
.p-single-article ul li, .p-single-article ol li {
  margin-bottom: 8px;
}
.p-single-article ul {
  list-style-type: disc;
}
.p-single-article ol {
  list-style-type: decimal;
}
.p-single-article blockquote {
  border-left: 4px solid #3b82f6;
  color: #64748b;
  font-style: italic;
  margin: 32px 0;
  background-color: #f8fafc;
  padding: 24px;
  border-radius: 0 8px 8px 0;
}
.p-single-article blockquote p:last-child {
  margin-bottom: 0;
}
.p-single-article .wp-block-image {
  margin: 32px 0;
}
.p-single-article .wp-block-image figcaption {
  text-align: center;
  color: #94a3b8;
  font-size: 12px;
  margin-top: 8px;
}

.p-single-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .p-single-nav {
    flex-direction: column;
    gap: 32px;
  }
}
.p-single-nav__prev, .p-single-nav__next {
  flex: 1;
  width: 100%;
}
.p-single-nav__prev a, .p-single-nav__next a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #475569;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  line-height: 1.4;
}
.p-single-nav__prev a:hover, .p-single-nav__next a:hover {
  color: #2563eb;
  transform: translateY(-2px);
}
.p-single-nav__prev a {
  justify-content: flex-start;
}
.p-single-nav__next a {
  justify-content: flex-end;
  text-align: right;
}
.p-single-nav__back {
  flex-shrink: 0;
}
.p-single-nav__back-link {
  display: inline-flex;
  padding: 12px 32px;
  background-color: #ffffff;
  color: #334155;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
}
.p-single-nav__back-link:hover {
  background-color: #f8fafc;
  border-color: #cbd5e1;
  color: #2563eb;
}

.p-status-page {
  background-color: #f8fafc;
  padding-bottom: 96px;
  min-height: 100vh;
}

.p-status-hero {
  position: relative;
  background-color: #0f172a;
  color: #ffffff;
  padding: 160px 0 128px;
  overflow: hidden;
  text-align: center;
}
.p-status-hero__bg-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(30, 58, 138, 0.4), transparent);
}
.p-status-hero__bg-left {
  position: absolute;
  bottom: -96px;
  left: -96px;
  width: 384px;
  height: 384px;
  background-color: rgba(79, 70, 229, 0.2);
  border-radius: 50%;
  filter: blur(100px);
}
.p-status-hero__inner {
  position: relative;
  z-index: 10;
}
.p-status-hero__title {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  background: linear-gradient(to right, #93c5fd, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
@media (max-width: 768px) {
  .p-status-hero__title {
    font-size: 48px;
  }
}
.p-status-hero__desc {
  color: #94a3b8;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.p-status-content {
  position: relative;
  z-index: 20;
  margin-top: -64px;
}

.p-status-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  padding: 80px 32px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-status-card {
    padding: 64px 24px;
  }
}
.p-status-card__icon {
  color: #3b82f6;
  margin: 0 auto 24px;
}
.p-status-card__title {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .p-status-card__title {
    font-size: 20px;
  }
}
.p-status-card__text {
  color: #475569;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .p-status-card__text {
    font-size: 14px;
  }
}
.p-status-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: #2563eb;
  color: #ffffff;
  font-weight: 700;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
}
.p-status-card__btn:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.23);
}
.p-status-card__btn:hover .p-status-card__btn-icon {
  transform: translateX(-4px);
}
.p-status-card__btn-icon {
  transition: transform 0.3s ease;
}

/*# sourceMappingURL=style.css.map */
