@charset "UTF-8";
/* _variables.scss */
/* _base.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0a0c10;
  color: #e0e0e0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: #00e5ff;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* _header.scss */
/* _mixin.scss */
/* _mixin.scss に追記 */
/*animation*/
header#site-header {
  width: 100%;
  max-width: 1280px;
  height: 80px;
  margin: 0 auto;
  padding: 20px clamp(20px, 4%, 60px);
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
  background: transparent;
}
header#site-header .logo-wrap {
  position: absolute;
  top: 10px;
  left: 30px;
}
header#site-header .logo-wrap a.logo-link {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}
header#site-header .logo-wrap a.logo-link .engine-unit {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 10px 20px 0px 30px;
}
header#site-header .logo-wrap a.logo-link .engine-unit .gear {
  position: absolute;
}
header#site-header .logo-wrap a.logo-link .engine-unit .core-light {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #00e5ff;
}
header#site-header .logo-wrap a.logo-link .site-name {
  display: flex;
  flex-direction: column;
}
header#site-header .logo-wrap a.logo-link .site-name .oss-text {
  font-family: "Courier New", Courier, monospace;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 900;
  color: #e0e0e0;
  letter-spacing: 0.1em;
}
header#site-header .logo-wrap a.logo-link .site-name .full-name {
  font-size: 0.6rem;
  color: #00e5ff;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
header#site-header .gear-nav {
  width: 90%;
  margin: 0 auto;
  text-align: right;
}
header#site-header .gear-nav #gear {
  display: flex;
  justify-content: flex-end;
}
header#site-header .gear-nav #gear .item {
  margin-right: 30px;
}

/* _front-page.scss */
.oss-ritual-section {
  position: relative;
  padding: 100px 0;
  background: radial-gradient(circle at top, #2d2f33 0%, #0a0c10 100%);
  text-align: center;
}
.oss-ritual-section .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: clamp(20px, 4%, 60px);
  padding-right: clamp(20px, 4%, 60px);
}
.oss-ritual-section .ritual-title {
  font-family: "Courier New", Courier, monospace;
  font-size: 1.2rem;
  color: #00e5ff;
  letter-spacing: 0.5em;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.oss-ritual-section .ritual-title::before {
  content: ">>> ";
  opacity: 0.5;
}
.oss-ritual-section .ritual-lead {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 700;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .oss-ritual-section .ritual-lead {
    font-size: 1.2rem;
  }
}
.oss-ritual-section .vow-content {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 60px);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(224, 224, 224, 0.1);
  backdrop-filter: blur(5px);
}
.oss-ritual-section .vow-content h3 {
  color: #00e5ff;
  margin-bottom: 20px;
}
.oss-ritual-section .vow-content .absolute-oath {
  margin-top: 60px;
  padding: 30px;
  border-top: 1px dashed rgba(0, 229, 255, 0.5);
}
.oss-ritual-section .vow-content .absolute-oath h4 {
  font-size: 0.9rem;
  margin-bottom: 15px;
  opacity: 0.7;
}
.oss-ritual-section .vow-content .absolute-oath .gold-text {
  font-size: 2.2rem;
  color: #c5a059;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
}
@media screen and (max-width: 767px) {
  .oss-ritual-section .vow-content .absolute-oath .gold-text {
    font-size: 1.5rem;
  }
}

.oss-section {
  padding: 120px 0;
  position: relative;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px dashed #0a0c10;
}
.oss-section::after {
  content: "--- ANALYSIS_LOG_FINALIZE: [] ---";
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 10px;
  color: #0a0c10;
  letter-spacing: 0.1em;
}
.oss-section .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: clamp(20px, 4%, 60px);
  padding-right: clamp(20px, 4%, 60px);
}
.oss-section .full-width-visual {
  width: 100%;
  margin: 40px 0;
}
.oss-section .full-width-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
}
.oss-section .section-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #e0e0e0;
}
@media screen and (max-width: 767px) {
  .oss-section .section-title {
    font-size: 1.6rem;
  }
}
.oss-section .section-lead {
  color: #00e5ff;
  font-weight: 500;
  margin-bottom: 60px;
  line-height: 1.8;
}
.oss-section ul[class*=-features] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  list-style: none;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .oss-section ul[class*=-features] {
    grid-template-columns: 1fr;
  }
}
.oss-section ul[class*=-features] li {
  padding: 30px;
  background: rgba(45, 47, 51, 0.2);
  border-left: 2px solid #2d2f33;
  transition: all 0.3s ease;
}
.oss-section ul[class*=-features] li:hover {
  background: rgba(0, 229, 255, 0.05);
  border-left-color: #00e5ff;
  transform: translateX(5px);
}
.oss-section ul[class*=-features] li h4 {
  color: #e0e0e0;
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.oss-section ul[class*=-features] li p {
  font-size: 0.9rem;
  color: #888888;
  line-height: 1.8;
}
.oss-section .analysis-box, .oss-section .reverse-engineering-box {
  background: #2d2f33;
  padding: 40px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.oss-section .analysis-box::before, .oss-section .reverse-engineering-box::before {
  content: "ANALYSIS_REPORT";
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: "Courier New", Courier, monospace;
  font-size: 9px;
  opacity: 0.3;
}
.oss-section .analysis-box h4, .oss-section .reverse-engineering-box h4 {
  color: #00e5ff;
  margin-bottom: 15px;
}
.oss-section .naviLink {
  text-align: center;
  margin-top: 60px;
}
.oss-section .naviLink .btn-more {
  display: inline-block;
  padding: 20px 40px;
  background: transparent;
  border: 1px solid #00e5ff;
  color: #00e5ff;
  font-family: "Courier New", Courier, monospace;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: all 0.3s ease;
  position: relative;
}
.oss-section .naviLink .btn-more:hover {
  background: #00e5ff;
  color: #0a0c10;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

body main #mainPanel {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding-bottom: 5.15%;
  background-image: url(https://omc-seo.site/wp-content/themes/omcthemes/images/main_kai.webp);
  background-repeat: no-repeat;
}
body main #mainPanel h1 {
  color: #00e5ff;
  font-size: 3.6vw;
  text-shadow: 4px 4px #808080;
  padding: 120px 0 0 36px;
  position: relative;
}
body main #mainPanel h1::after {
  position: absolute;
  content: "無駄を削ぎ落とす「システム化」と、\a価値を最大化する「マーケティング」の融合。";
  white-space: pre-wrap;
  top: 123%;
  left: 28%;
  width: 47%;
  font-size: 1.4rem;
  color: #808080;
  text-shadow: none;
  transform: translate(-50%, -50%);
}
body main #mainPanel p {
  margin-top: 100px;
  width: 41%;
  font-size: 1.2rem;
  color: #808080;
  padding-left: 25px;
  font-weight: bold;
}

/* _footer.scss */
#site-footer {
  position: relative;
  background-color: #0a0c10;
  border-top: 1px solid #2d2f33;
  overflow: hidden;
}
#site-footer .footer-metal-panel {
  position: relative;
  padding: 80px 0 40px;
  z-index: 1;
}
#site-footer .footer-metal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 255, 255, 0) 100%);
  background-size: 2px 100%;
  opacity: 0.4;
  z-index: -2;
}
#site-footer .footer-metal-panel::after {
  content: "";
  position: absolute;
  bottom: -5%;
  right: -2%;
  width: 500px;
  height: 500px;
  background: url("../images/kai=nano-emboss.png") no-repeat bottom right/contain;
  /* エンボスの魔術：
     - 左上に「科学の青」のハイライトを極薄く配置（光の反射）
     - 右下に「漆黒」のシャドウを配置（溝の深み）
     - overlayで鉄板の質感（ヘアライン）を透過させる
  */
  filter: drop-shadow(-1.5px -1.5px 1px rgba(0, 229, 255, 0.4)) drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.9));
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #site-footer .footer-metal-panel::after {
    width: 300px;
    height: 300px;
    bottom: 0;
    right: -10%;
    opacity: 0.12;
  }
}
#site-footer .footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  #site-footer .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}
#site-footer .footer-logo .oss-logo-mini {
  font-size: 1.8rem;
  font-weight: 900;
  color: #e0e0e0;
  letter-spacing: 0.2em;
}
#site-footer .footer-logo .system-status {
  display: block;
  font-family: "Courier New", Courier, monospace;
  font-size: 10px;
  color: #00e5ff;
  margin-top: 5px;
}
#site-footer .copyright {
  margin-top: 20px;
  font-size: 0.75rem;
  color: #888888;
  line-height: 1.8;
}
#site-footer .copyright .author {
  color: #e0e0e0;
}
#site-footer .footer-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  #site-footer .footer-nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
#site-footer .footer-nav ul a {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.8rem;
  color: #888888;
  text-transform: uppercase;
}
#site-footer .footer-nav ul a:hover {
  color: #00e5ff;
}
#site-footer .footer-trace {
  background-color: #000;
  padding: 15px 0;
  border-top: 1px solid rgba(0, 229, 255, 0.15);
}
#site-footer .footer-trace .log-text {
  font-family: "Courier New", Courier, monospace;
  font-size: 10px;
  color: rgba(0, 229, 255, 0.5);
  text-align: center;
  letter-spacing: 0.15em;
}/*# sourceMappingURL=front-page.css.map */