@charset "UTF-8";
html, body {
  height: 100%;
  margin: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: hidden;
  font-family: "Prompt", sans-serif;
  background: #ffffff;
  color: #0073e6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Orbitron", sans-serif;
}

h1 {
  font-size: 5rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 3.3rem;
  }
}

h2 {
  font-size: 4rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  h2 {
    margin-top: 0;
  }
}

p {
  font-size: 1.4rem;
}

a {
  position: relative;
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
}
a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  transition: opacity 0.3s ease-in-out;
  opacity: 0.7;
}
a:hover::after {
  opacity: 1;
}

@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease;
}

#particles-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: transparent;
  opacity: 0;
  transition: background 0.3s ease, opacity 0.5s ease;
  mix-blend-mode: screen; /* 発光感 */
}

/*
body {
  /** スクロールバーを非表示 *
  scrollbar-width: none;               // Firefox
  -ms-overflow-style: none;            // IE11対応（念のため）

  &::-webkit-scrollbar {
    display: none;                     // Chrome / Safari
  }
}
*/
.scroll-glow.scrollable::after {
  opacity: 1;
}
.scroll-glow.at-bottom::after {
  opacity: 0;
  animation: none;
}
.scroll-glow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7%; /* 光の高さ調整可 */
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 170, 255, 0.6), rgba(0, 170, 255, 0));
  opacity: 0;
  transition: all 0.5s ease;
  border-radius: 0 0 12px 12px; /* モーダルに合わせ調整可 */
  animation: glowFade 3s ease-in-out infinite;
}

@keyframes glowFade {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
@keyframes digitalZoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
    box-shadow: 0 0 0px #00bfff;
  }
  60% {
    transform: scale(1.05);
    opacity: 1;
    box-shadow: 0 0 20px #00bfff, 0 0 40px #00bfff inset;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px #00bfff;
  }
}
@keyframes modalFadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}
@keyframes glow-pulse {
  0% {
    text-shadow: 0 0 0px #00bfff;
    opacity: 1;
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 20px #00bfff;
    opacity: 0.8;
    transform: scale(1.05);
  }
  100% {
    text-shadow: 0 0 0px #00bfff;
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes light-sweep {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
#company {
  padding-top: 0px;
}
@media (max-width: 768px) {
  #company {
    margin-bottom: 10px;
  }
}
#company h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.company-content-field {
  position: relative;
  width: 70%;
  height: 600px; /* ← 適宜調整可能、例: 400〜600pxが自然 */
  transition: height 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .company-content-field {
    width: 95%;
    height: 55%;
    min-height: 400px;
  }
}

.company-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .company-buttons {
    margin-top: 20px;
  }
}

.company-btn {
  width: 160px;
  height: 45px;
  font-family: "Prompt", "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: white;
  background: linear-gradient(to right, #00bfff, #007acc);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 191, 255, 0.3);
}
.company-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 12px #00bfff, 0 0 24px rgba(0, 191, 255, 0.6);
  text-shadow: 0 0 6px #00bfff, 0 0 12px #00bfff, 0 0 18px #00bfff, 0 0 24px #00bfff;
}
.company-btn.active {
  background: linear-gradient(to right, #007acc, #005fa3);
  box-shadow: 0 6px 16px rgba(0, 122, 204, 0.8);
  font-weight: bold;
  text-shadow: 0 0 6px #00bfff, 0 0 12px #00bfff, 0 0 18px #00bfff, 0 0 24px #00bfff;
}
@media (max-width: 768px) {
  .company-btn {
    width: 38vw;
    height: 5.5vh;
    font-size: 0.9rem;
  }
}

.company-content {
  position: absolute;
  width: 100%;
  height: 92%;
  overflow: auto;
  margin-top: 0px;
  padding: 10px 0;
  font-family: "Prompt", sans-serif;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: opacity 0.5s ease;
  opacity: 0;
  visibility: hidden;
  /* スクロールバー全体 */
  /* スクロールバーの軌道（背景） */
  /* スクロールバーのつまみ（ドラッグ部分） */
}
.company-content::-webkit-scrollbar {
  width: 8px; /* 横幅（縦スクロール用） */
}
.company-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1); /* 軽く透けさせる */
  border-radius: 4px;
}
.company-content::-webkit-scrollbar-thumb {
  background: rgba(0, 191, 255, 0.6); /* サイトに合う青系 */
  border-radius: 4px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.company-content::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 191, 255, 0.8);
}
.company-content.active {
  opacity: 1;
  visibility: visible;
  position: absolute;
}
.company-content h3 {
  font-size: 3rem;
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .company-content h3 {
    font-size: 2rem;
    margin-bottom: 5px;
  }
}
.company-content h4 {
  font-size: 25px;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .company-content h4 {
    margin-top: 15px;
  }
}
.company-content p, .company-content ul {
  font-size: 16px;
  line-height: 1.8;
  margin: 10px;
}
@media (max-width: 768px) {
  .company-content p, .company-content ul {
    margin: 5px;
  }
}
.company-content hr.custom-hr {
  border: none;
  height: 2px;
  background-color: #00bfff;
  width: 80%;
  margin: 0 auto 20px auto; /* 中央寄せ＆下余白 */
  background: linear-gradient(to right, #00bfff, #007acc);
}
@media (max-width: 768px) {
  .company-content hr.custom-hr {
    margin-bottom: 10px;
  }
}
.company-content .content-area {
  width: 80%;
  margin: 0 auto;
}

p.vision {
  font-family: "Orbitron", sans-serif;
  font-size: 4rem;
  position: relative;
  display: inline-block;
  margin: 4rem;
}
@media (max-width: 768px) {
  p.vision {
    font-size: 2rem;
    margin: 1rem 0;
  }
}
p.vision::after {
  content: "";
  display: block;
  height: 4px;
  margin-top: 5px;
  background: linear-gradient(to right, #0073e6 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 2px;
}

p.glow-line {
  font-size: 4rem;
  overflow: hidden;
}
p.glow-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(0, 191, 255, 0.4) 50%, transparent 100%);
  transform: skewX(-20deg);
}
p.glow-line:hover::before {
  animation: light-sweep 1.2s ease-out forwards;
}

.pulse-glow {
  transition: text-shadow 0.3s ease;
}
.pulse-glow:hover {
  animation: glow-pulse 1s ease-out;
}

#mission h3 {
  font-family: "Orbitron", "Prompt", sans-serif;
  color: #007acc;
  margin-bottom: 10px;
  position: relative;
}
#mission p {
  font-family: "Prompt", sans-serif;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  #mission p {
    padding: 5px;
    margin-bottom: 0;
    font-size: 12px;
  }
}
#mission ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#mission ul li {
  font-family: "Prompt", sans-serif;
  font-size: 16px;
  margin: 10px 0;
  position: relative;
}
@media (max-width: 768px) {
  #mission ul li {
    font-size: 12px;
  }
}

#message {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow-y: scroll;
  justify-content: flex-start !important;
  height: 90%;
}
#message p {
  width: 75%;
  text-align: left;
}
@media (max-width: 768px) {
  #message p {
    font-size: 12px;
  }
}
#message p.sign {
  text-align: center;
  font-size: 20px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: bold;
}
@media (max-width: 768px) {
  #message p.sign {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  #aboutus p {
    font-size: 14px;
    padding: 0 10px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 15px 30px;
  background: linear-gradient(135deg, #004080, #0073e6);
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease-in-out;
}
header .logo {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  header {
    height: 4vh;
  }
}

.menu-button {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}
@media (max-width: 768px) {
  .menu-button {
    display: block;
    margin: 0 -1rem 0.1rem 0;
  }
}

nav {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  margin: 0 0 0 auto;
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}
nav ul li {
  display: inline-block;
  transition: transform 0.3s ease;
}
nav ul li:hover {
  transform: translateY(-3px) scale(1.1);
}
nav ul li a {
  color: #ffffff;
  font-weight: 500;
  transition: text-shadow 0.3s ease;
}
nav ul li a:hover {
  color: #ffffff;
  font-weight: bold;
  text-shadow: 0 0 6px #00bfff, 0 0 12px #00bfff, 0 0 18px #00bfff, 0 0 24px #00bfff;
}

#popupModal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#popupModal.show {
  display: flex;
}

#modal-box {
  position: relative;
  top: 3vh;
  border-radius: 10px;
  animation: digitalZoomIn 0.6s ease-out forwards;
  margin-bottom: 1rem;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
#modal-box.closing {
  animation: modalFadeOut 0.4s ease forwards !important;
}

#popupModalContent {
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 10px #00bfff;
  border: 2px solid #00bfff;
  width: 85vw;
  max-width: 1200px;
  height: 75vh;
  overflow-y: scroll;
  /* スクロールバー全体 */
  /* スクロールバーの軌道（背景） */
  /* スクロールバーのつまみ（ドラッグ部分） */
  /* スクロールバー全体 */
  /* スクロールバーの軌道（背景） */
  /* スクロールバーのつまみ（ドラッグ部分） */
}
#popupModalContent::-webkit-scrollbar {
  width: 8px; /* 横幅（縦スクロール用） */
}
#popupModalContent::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1); /* 軽く透けさせる */
  border-radius: 4px;
}
#popupModalContent::-webkit-scrollbar-thumb {
  background: rgba(0, 191, 255, 0.6); /* サイトに合う青系 */
  border-radius: 4px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
#popupModalContent::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 191, 255, 0.8);
}
@media (max-width: 768px) {
  #popupModalContent {
    width: 85vw;
    height: 65vh;
    overflow-y: scroll;
  }
}
#popupModalContent .modal-content {
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 12px;
  font-family: "Rajdhani", sans-serif;
  height: 85%;
  overflow-y: visible;
}
@media (max-width: 768px) {
  #popupModalContent .modal-content {
    padding: 0.5rem 1rem;
  }
}
#popupModalContent .modal-content h3 {
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #0090c0;
  border-left: 4px solid #0090c0;
  padding-left: 0.5rem;
}
@media (max-width: 768px) {
  #popupModalContent .modal-content h3 {
    margin-top: 1rem;
  }
}
#popupModalContent .modal-content p {
  font-size: 1.3rem;
  margin: 1rem;
}
@media (max-width: 768px) {
  #popupModalContent .modal-content p {
    margin: 0.5rem 1rem;
    font-size: 1rem;
  }
}
#popupModalContent .modal-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}
#popupModalContent .modal-content ul li {
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  #popupModalContent .modal-content ul li {
    font-size: 1rem;
  }
}
#popupModalContent .modal-content ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #0090c0;
  font-weight: bold;
}
#popupModalContent::-webkit-scrollbar {
  width: 8px; /* 横幅（縦スクロール用） */
}
#popupModalContent::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1); /* 軽く透けさせる */
  border-radius: 4px;
}
#popupModalContent::-webkit-scrollbar-thumb {
  background: rgba(0, 191, 255, 0.6); /* サイトに合う青系 */
  border-radius: 4px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
#popupModalContent::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 191, 255, 0.8);
}

h2.in-modal {
  margin: 1rem;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #0073e6;
  font-family: "Orbitron", sans-serif;
  border-bottom: 2px solid rgba(0, 191, 255, 0.4);
  padding-bottom: 0.5rem;
}
@media (max-width: 768px) {
  h2.in-modal {
    margin: 0.5rem;
    font-size: 1.5rem;
  }
}

.in-modal-content {
  padding-bottom: 20px;
}

.close-icon {
  position: relative;
  margin-top: 40px;
  padding: 10px 24px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(0.8);
  pointer-events: none; /* クリック不可 */
}
.close-icon.show {
  opacity: 1;
  pointer-events: auto; /* クリック可に戻す */
  transform: scale(1);
}
.close-icon::before, .close-icon::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 5px;
  background: #0090c0;
  top: 15px;
  left: 4px;
  border-radius: 1px;
}
.close-icon::before {
  transform: rotate(45deg);
}
.close-icon::after {
  transform: rotate(-45deg);
}

/* 画像（コメントアウト中） */
img.work-img {
  width: 70%;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
}

/* CTAボタン（コメントアウト中） */
.modal-cta .more-button {
  display: inline-block;
  padding: 12px 24px;
  background: #0073e6;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.modal-cta .more-button:hover {
  background: #0090c0;
}

.header__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: 999;
  transition: visibility 1.2s ease, opacity 1.2s ease;
  /* background: linear-gradient(#FF8A00 0%, #DB7700 100%); */
}
.header__nav.open {
  visibility: visible;
  opacity: 1;
}
.header__nav .header-nav__bg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85%;
  height: 65%;
  min-height: 450px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 64, 128, 0.8), rgba(0, 115, 230, 0.8));
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  will-change: backdrop-filter;
  box-shadow: 4px 7px 7px rgba(0, 89, 255, 0.4);
}
.header__nav .header-nav__container {
  max-width: 100%;
  width: 100%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .header__nav .header-nav__container {
    padding: 7rem 1rem;
    flex-direction: column;
    box-sizing: border-box;
  }
}
.header__nav .header-nav__list {
  max-width: 32rem;
  width: 100%;
}
@media (max-width: 768px) {
  .header__nav .header-nav__list {
    padding-left: 0;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    gap: 1.25rem 0;
    margin-bottom: 1.875rem;
    box-sizing: border-box;
  }
}
.header__nav .header-nav__item {
  font-size: 4rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  position: relative;
  transition: transform 0.3s ease;
}
.header__nav .header-nav__item:hover {
  opacity: 0.8;
  transform: translateY(-3px) scale(1.1);
}
.header__nav .header-nav__item a {
  font-family: second-font-family;
  color: #ffffff;
  font-weight: 500;
  transition: text-shadow 0.3s ease;
  letter-spacing: 0.1em;
  display: inline-block;
  height: 100%;
  color: white;
}
.header__nav .header-nav__item a:hover {
  color: #ffffff;
  font-weight: bold;
  text-shadow: 0 0 6px #00bfff, 0 0 12px #00bfff, 0 0 18px #00bfff, 0 0 24px #00bfff;
}
.header__nav .header-nav__item:not(:last-child) {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .header__nav .header-nav__item:not(:last-child) {
    margin-bottom: 0;
  }
}
.header__nav .header-nav__item::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1.5rem;
  background: url(../../assets/images/common/icon_btn_arrow.png) no-repeat center center/cover;
}
@media (max-width: 768px) {
  .header__nav .header-nav__item {
    font-size: 1.125rem;
  }
}
.header__nav .header-nav__info {
  max-width: 46rem;
  width: 100%;
  margin-left: 18.48%;
}
@media (max-width: 768px) {
  .header__nav .header-nav__info {
    max-width: 100%;
    margin-left: 0;
  }
}
.header__nav .header-nav__info p {
  margin-left: 1rem;
}
.header__nav .header-nav__info .header-info__copy {
  max-width: 45rem;
  width: 100%;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .header__nav .header-nav__info .header-info__copy {
    max-width: 13.75rem;
    margin-bottom: 1.29375rem;
  }
}
.header__nav .header-nav__info .header-info__company {
  font-size: 1.8rem;
  line-height: 1.44;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .header__nav .header-nav__info .header-info__company {
    font-size: 1.5rem;
    margin-bottom: 0.6875rem;
  }
}
.header__nav .header-nav__info .header-info__address {
  font-size: 1.4rem;
  line-height: 1.428;
  margin-bottom: 1.4rem;
}
@media (max-width: 768px) {
  .header__nav .header-nav__info .header-info__address {
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }
}
.header__nav .header-nav__info .header-info__tell {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .header__nav .header-nav__info .header-info__tell {
    font-size: 1.3rem;
  }
}
.header__nav .header-nav__info .header-info__tell a {
  font-size: 3rem;
  font-weight: medium;
  line-height: 1.46;
  color: white;
}
@media (max-width: 768px) {
  .header__nav .header-nav__info .header-info__tell a {
    font-size: 2rem;
  }
}

.main-contents {
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  height: 100vh;
}

section {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;
  text-align: center;
  height: 100vh;
  scroll-snap-align: start;
}
section.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
section.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  section .hero h1 {
    font-size: 3rem;
  }
  section .hero h2 {
    font-size: 1.5rem;
  }
  section .hero p {
    font-size: 1rem;
  }
  section h2 {
    font-size: 2rem;
  }
}

.click-glow {
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(0, 191, 255, 0.6) 0%, rgba(0, 191, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: glow-fade 0.6s ease-out forwards;
  z-index: 9999;
}

@keyframes glow-fade {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2);
  }
}
.ripple-ring {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.5);
  animation: ripple-ring-expand 0.6s ease-out forwards, ripple-color-change 0.6s ease-out forwards;
  z-index: 10001;
  /*border-image: linear-gradient(90deg, #00bfff, #007acc, #00bfff) 1; /* グラデ */
  border-image-slice: 1;
}

@keyframes ripple-ring-expand {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2);
  }
}
@keyframes ripple-color-change {
  0% {
    border-color: #39ff14; /* ネオン緑 */
  }
  50% {
    border-color: #00bfff; /* 中間ブルー */
  }
  100% {
    border-color: #00ffff; /* ネオンブルー */
  }
}
/** 事業内容 **/
#services h2 {
  margin: 3rem 0 1rem 0;
}
@media (max-width: 768px) {
  #services h2 {
    margin-top: 1rem;
  }
}

.swiper {
  padding: 20px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .swiper {
    margin-left: 0;
    margin-right: 0;
    padding: 10px 0;
  }
}
.swiper .swiper-slide {
  box-sizing: border-box;
  margin: 0 auto;
  opacity: 0.5;
}
.swiper .swiper-slide.service-card {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  will-change: backdrop-filter;
  width: 80%;
  max-width: 450px;
  height: 550px;
  border-radius: 12px;
  box-shadow: 1px 7px 7px rgba(0, 89, 255, 0.4);
  text-align: left;
  transition: transform 0.3s ease;
  padding: 30px;
  position: relative;
  align-items: center;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .swiper .swiper-slide.service-card {
    max-width: 80vw;
    height: 450px;
  }
}
.swiper .swiper-slide.service-card:hover {
  transform: translateY(-5px);
}
.swiper .swiper-slide.service-card h3 {
  font-size: 2rem;
  font-family: "Orbitron", sans-serif;
  color: #0073e6;
  margin-bottom: 10px;
  border-bottom: 2px solid #0073e6;
  width: 100%;
  display: inline-block;
  padding-bottom: 5px;
}
@media (max-width: 768px) {
  .swiper .swiper-slide.service-card h3 {
    font-size: 1.2rem;
    margin-top: 0;
  }
}
.swiper .swiper-slide.service-card p {
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .swiper .swiper-slide.service-card p {
    font-size: 1rem;
  }
}
.swiper .swiper-slide h3 {
  font-family: "Orbitron", sans-serif;
  color: #0073e6;
  margin-bottom: 10px;
}
.swiper .swiper-slide p {
  color: #333;
  line-height: 1.5;
}
.swiper .swiper-slide a.more-button {
  position: absolute;
  margin: 15px auto 0;
  bottom: 30px;
  width: 80%;
  max-width: 260px;
  padding: 14px 28px;
  display: inline-block;
  text-align: center;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #0073e6;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #00bfff;
  border-radius: 6px;
  font-size: 1.5rem;
  font-family: "Orbitron", sans-serif;
  outline: none;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
@media (max-width: 768px) {
  .swiper .swiper-slide a.more-button {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .swiper .swiper-slide a.more-button {
    font-size: 1.3rem;
  }
}
.swiper .swiper-slide a.more-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 100%;
  background: #00bfff;
  border-radius: 0 50% 50% 0;
  transition: all 0.3s ease;
  transform: translateX(0) translateY(0);
  z-index: 1;
}
.swiper .swiper-slide a.more-button:after {
  display: none;
}
.swiper .swiper-slide a.more-button:hover {
  background: #00bfff !important;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 4px 6px rgba(63, 217, 255, 0.5);
  color: #ffffff;
  transition: all 0.3s ease;
}
.swiper .swiper-slide a.more-button:hover:before {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #ffffff;
  background: #00bfff;
  transform: translateX(270px) translateY(1rem);
  border-radius: 50%;
  text-align: center;
}
.swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.news-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  border: 1px solid rgba(0, 191, 255, 0.3);
  padding: 1.5rem;
  max-width: 800px;
  margin: 2rem auto;
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
  max-height: 320px; /* 最大5件ぶんの高さ */
  overflow-y: auto; /* スクロール可能に */
}

.news-list {
  list-style: none; /* 「・」削除 */
  padding: 0;
  margin: 0;
}
.news-list li {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 191, 255, 0.3);
  font-size: 1rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .news-list li {
    gap: 0.5rem;
  }
}
.news-list li:last-child {
  border-bottom: none;
}

.news-date {
  color: #0066cc;
  font-family: "Exo", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  min-width: 110px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .news-date {
    font-size: 0.8rem;
    min-width: 90px;
  }
}

.news-title {
  color: #3fd9ff;
  margin-bottom: 2px;
  font-family: "Orbitron", sans-serif;
  font-size: 1.2rem;
  text-decoration: none;
  transition: text-shadow 0.3s ease;
}
.news-title a {
  color: #3fd9ff !important;
}
@media (max-width: 768px) {
  .news-title {
    font-size: 0.75rem;
  }
}
.news-title:hover {
  text-shadow: 0 0 5px #3fd9ff;
}

/** 問い合わせフォーム **/
@media (max-width: 768px) {
  #contact h2 {
    margin-top: 1rem;
  }
}

form {
  width: 50%;
  max-width: 600px;
  margin: 0 auto;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05); /* 透明感 */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  will-change: backdrop-filter;
  color: #ffffff;
  font-family: "Orbitron", sans-serif;
}
@media (max-width: 768px) {
  form {
    width: 85%;
    max-width: 10000px;
    padding: 20px;
  }
}
form label {
  display: block;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 1.2rem;
  color: #0073e6;
}
@media (max-width: 768px) {
  form label {
    font-size: 1.2rem;
    font-weight: 300;
  }
}
form input, form textarea {
  width: 92%;
  padding: 12px 16px;
  margin-bottom: 16px;
  border: 1px solid #3fd9ff;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #000;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  resize: vertical;
}
form input:focus, form textarea:focus {
  background: rgba(63, 217, 255, 0.1);
}
@media (max-width: 768px) {
  form input, form textarea {
    margin-bottom: 7px;
    padding: 5px 10px;
  }
}
form textarea {
  height: 150px;
  min-height: 120px;
  margin-bottom: 15px !important;
}
form input {
  height: 10px;
}
form button[type=submit] {
  position: relative;
  width: 80%;
  max-width: 260px;
  padding: 10px 0 10px;
  display: inline-block;
  text-align: center;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #0073e6;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #00bfff;
  border-radius: 6px;
  font-size: 1.5rem;
  font-family: "Orbitron", sans-serif;
  outline: none;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
@media (max-width: 768px) {
  form button[type=submit] {
    font-size: 1.3rem;
  }
}
form button[type=submit]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 100%;
  background: #00bfff;
  border-radius: 0 50% 50% 0;
  transition: all 0.3s ease;
  transform: translateX(0) translateY(0);
  z-index: 1;
}
form button[type=submit]:after {
  display: none;
}
form button[type=submit]:hover {
  background: #00bfff !important;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 4px 6px rgba(63, 217, 255, 0.5);
  color: #ffffff;
  transition: all 0.3s ease;
}
form button[type=submit]:hover:before {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #ffffff;
  background: #00bfff;
  transform: translateX(200px) translateY(35%);
  border-radius: 50%;
  text-align: center;
}
form .form-row {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  form .form-row {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 5px;
  }
}
form .form-row label {
  width: 150px;
  margin-right: 12px;
  font-weight: bold;
  font-size: 18px;
}
@media (max-width: 768px) {
  form .form-row label {
    font-size: 0.8rem;
    width: auto;
    font-weight: 300;
    margin-bottom: 5px;
  }
}
form .form-row input, form .form-row textarea {
  flex: 1;
  border: 1px solid rgba(63, 217, 255, 0.6);
  border-radius: 6px;
  /*background: rgba(255, 255, 255, 0.1);*/
  color: #000;
  font-size: 1rem;
  resize: vertical;
}

/* ローディング背景 */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5); /* 半透明黒 */
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px); /* 背景ぼかし */
  display: none; /* 初期非表示 */
  z-index: 9998;
}

#loading-spinner {
  border: 6px solid rgba(0, 191, 255, 0.4);
  border-top: 6px solid #00bfff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 1s linear infinite;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* トースト */
#toast-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 191, 255, 0.3); /* 半透明ブルー */
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px); /* 背景ぼかし */
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: "Prompt", "Noto Sans JP", sans-serif;
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 1000;
  /* 表示切替用クラス */
}
#toast-message .show {
  opacity: 1 !important;
  pointer-events: auto;
}
#toast-message .hidden {
  display: none;
}

#openingAnimation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff; /* お好みの背景色 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  z-index: 10000;
  opacity: 1;
  transition: opacity 1s ease;
}
#openingAnimation.hide {
  opacity: 0;
  pointer-events: none;
}

#particles-opening {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#svg-logo {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translateX(-50%);
}
#svg-logo text {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawText 2s ease-out forwards, colorShift 2s ease-out forwards;
}

@keyframes drawText {
  to {
    stroke-dashoffset: 0;
  }
}
.opening-logo.scan-logo {
  position: relative;
  font-size: 2rem;
  color: white;
  overflow: hidden;
}
.opening-logo.scan-logo::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, transparent, #3fd9ff, transparent);
  animation: scan 1.5s ease-out forwards;
}
.opening-logo.zoom {
  animation: logoZoom 1s ease-out;
}
.opening-logo.draw {
  font-size: 2rem;
  color: transparent;
  -webkit-text-stroke: 1px #3fd9ff;
  animation: drawText 2s forwards;
}
.opening-logo.typing-logo {
  font-family: monospace;
  overflow: hidden;
  border-right: 0.1em solid #3fd9ff;
  white-space: nowrap;
  animation: typing 2s steps(11), blink 0.5s step-end infinite;
}
.opening-logo.glitch-logo {
  font-size: 2rem;
  color: white;
  position: relative;
  animation: glitch 1s linear 0s 1 normal forwards;
}

@keyframes scan {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}
@keyframes logoZoom {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes drawText {
  0% {
    stroke-dashoffset: 100%;
    opacity: 0;
  }
  100% {
    color: #3fd9ff;
    opacity: 1;
  }
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 10ch;
  }
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
@keyframes glitch {
  0% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  10% {
    clip-path: inset(10% 0 90% 0);
    opacity: 1;
  }
  20% {
    clip-path: inset(20% 0 80% 0);
  }
  40% {
    clip-path: inset(0 0 0 0);
  }
  60% {
    transform: skewX(10deg);
  }
  80% {
    transform: skewX(-10deg);
  }
  100% {
    transform: none;
    clip-path: none;
    opacity: 1;
  }
}
@keyframes colorShift {
  0% {
    stroke: #9933ff;
  }
  100% {
    stroke: #0073e6;
  }
}/*# sourceMappingURL=style.css.map */