@charset "utf-8";
/* reset */
* {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
}
html {
   scroll-behavior: smooth;
}
body {
   font-family: "Noto Sans JP", system-ui, sans-serif;
   color: #222;
   line-height: 1.7;
}
/* 背景動画のスタイル */
.background-video {
   position: fixed; /* ウィンドウに固定 */
   top: 0;
   left: 0;
   width: 100vw; /* ビューポートの幅いっぱいに */
   height: 100vh; /* ビューポートの高さいっぱいに */
   object-fit: cover; /* アスペクト比を保ちつつ全体を覆う */
   z-index: -1; /* 他のコンテンツの背面に配置 */
}
.smp-video {
   display: none;
}



.logo {
  display: flex;
  align-items: center;
  gap: -15px;              /* ロゴと文字の間隔 */
  font-weight: 600;      /* 今の雰囲気に合わせて調整 */
}

/* ロゴ画像 */
.logo::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url("../images/rogo.png"); /* ロゴ画像のパス */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


@media (max-width: 768px) {
  .logo::before {
    width: 22px;
    height: 22px;
  }
}





/* コンテンツ部分のスタイル */
.content {
   position: relative;
   z-index: 1; /* 動画の上に表示 */
   /* 必要に応じてパディングや配置を調整 */
   padding: 50px;
   text-align: center;
}
a {
   text-decoration: none;
   color: inherit;
}
/* header */
.header {
   position: fixed;
   top: 0;
   width: 100%;
   background: #fff;
   border-bottom: 1px solid #eee;
   z-index: 100;
   opacity: .9;
}
.header-inner {
   max-width: 1100px;
   margin: auto;
   padding: 16px 20px;
   display: flex;
   justify-content: space-between;
   align-items: center;
}
.logo {
   font-weight: 700;
   font-size: 20px;
}
/* navigation */
.nav a {
   margin-left: 24px;
   font-size: 14px;
   position: relative;
}
.nav a::after {
   content: "";
   position: absolute;
   bottom: -6px;
   left: 0;
   width: 0;
   height: 2px;
   background: #111;
   transition: .3s;
}
.nav a:hover::after {
   width: 100%;
}
/* menu button */
.menu-btn {
   display: none;
   font-size: 24px;
   background: none;
   border: none;
   cursor: pointer;
}
/* hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* ← センター */
  text-align: center;  /* ← テキスト中央 */
  padding: 0 8%;
  color: #fff;
  overflow: hidden;
}

/* 背景画像 */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
/*  background: url("../images/hero-bg.png") center / cover no-repeat;*/
  z-index: -2;
}

/* 文字可読性用のオーバーレイ */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}


.hero-title {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 2.5s ease-out forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* タイトル調整（任意） */
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin-bottom: 0.5em;
}

.hero p {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  opacity: 0.9;
}
/* hero-sub */
#hero-flex {
   display: flex;
   width: 100%;
}
/* ヒーロー全体（横幅100%） */
#hero-sub {
   width: 100%;
   min-height: 300px; /* 高さは調整OK */
   background: #fff; /* 白背景 */
   display: flex;
   justify-content: center; /* 左右中央 */
   align-items: center; /* 上下中央 */
}
/* 中身（テキストブロック） */
.hero-inner {
   text-align: center;
}
/* 見た目調整（任意） */
.hero-inner h1 {
   font-size: clamp(2rem, 4vw, 3rem);
   margin-bottom: 0.4em;
}
.hero-inner p {
   font-size: 1.1rem;
   color: #555;
}
/* section */
.section {
   padding: 90px 20px;
   max-width: 1000px;
   margin: 50px auto;
   opacity: 0.8;
}
.section.bg {
   background: #fafafa;
}
.section h2 {
   text-align: center;
   font-size: 35px;
   font-weight: 500;
   margin-bottom: 48px;
}
/* company table */
.company-table {
   width: 100%;
   border-collapse: collapse;
   background: #f1f1f1;
}
.company-table th {
   width: 30%;
   background: #CFCFCF;
   text-align: left;
}
.company-table th, .company-table td {
   border: 1px solid #ddd;
   padding: 14px;
}
/* service */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.service-grid .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-grid .card p {
  margin-bottom: 0.8em;
   text-align: center;
}

.service-grid .card .bt-sec {
  margin-top: auto; /* ← これが肝 */
}

.card {
   background: #fff;
   padding: 32px;
   border-radius: 14px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}
.card h3 {
   margin-bottom: 10px;
   text-align: center;
   font-weight: 700;
}
.bt-sec {}
.bt-sec a {
   width: 100%;
   display: block;
   text-align: center;
   margin: 20px auto 5px auto;
   padding: 15px 10px;
   color: #ffffff;
   border-radius: 5px;
   background-color: #02679A;
   border: 1px solid #5A5A5A;
   letter-spacing: 5px;
}
.sec-contents {
   padding: 0 50px;
}
/* contact */
.contact-form {
   max-width: 520px;
   margin: auto;
   display: grid;
   gap: 16px;
}
.contact-form input, .contact-form textarea {
   width: 100%;
   padding: 14px;
   border-radius: 8px;
   border: 1px solid #ccc;
}
.contact-form button {
	 display: flex;
  align-items: center;      /* 縦中央 */
  justify-content: center;  /* 横中央 */
  text-align: center;
   padding: 14px;
   background: #111;
   color: #fff;
   border: none;
   border-radius: 8px;
   cursor: pointer;
}




.hero-title {
  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    "Meiryo",
    sans-serif;

  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.04em;

  color: #fff;
  margin-bottom: 24px;
}


.hero-title span {
  display: block;
  font-weight: 600;
  letter-spacing: 0.06em;
}


.hero-title {
  max-width: 720px;
}



/* トップへ戻るボタン */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;

  border-radius: 50%;
  background: #fff;
  opacity: 0.6;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  z-index: 999;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* 矢印 */
.to-top::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  transform: rotate(45deg);
  margin-top: 4px;
}

/* hover */
.to-top:hover {
  opacity: 1;
  transform: translateY(-4px);
}

/* スマホ微調整 */
@media (max-width: 768px) {
  .to-top {
    width: 44px;
    height: 44px;
    right: 16px;
    bottom: 16px;
  }
}









/* ===============================
   料金表セクション
================================ */

.price-section {
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 20px;
}

.price-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.08em;
}

/* ===============================
   カード共通
================================ */

.price-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 35px 40px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-left: 15px;
}

.price-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 4px;
  height: 1.2em;
  background: #328043; /* WeissNet グリーン */
  border-radius: 2px;
}

/* ===============================
   リスト型料金
================================ */

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 0 0;
  border-bottom: 1px dashed #ddd;
  font-size: 0.95rem;
}

.price-card li:last-child {
  border-bottom: none;
}

.price-card li strong {
  font-weight: 600;
  color: #328043;
  white-space: nowrap;
   font-size: 1.2rem;
}

/* ===============================
   単価表示タイプ
================================ */

.price-main {
  font-size: 1.6rem;
  font-weight: 600;
  color: #328043;
  margin-bottom: 6px !important; /* 15px → 6px */
}

.price-note {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;   /* 1.7 → 1.5 */
}

/* ===============================
   スマホ対応
================================ */

@media screen and (max-width: 768px) {
  .price-card {
    padding: 25px;
  }

  .price-card li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .price-main {
    font-size: 1.4rem;
  }
}










/* ==========================
   WeissNet 会社概要ページ
========================== */

.company-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 80px 20px;
}





/* 見出し */
.company-wrap h3 {
  position: relative;
  font-size: 1.6rem;
  margin: 80px 0 24px;
  padding-left: 20px;
  color: #020617; /* ほぼ黒（ネイビー） */
  letter-spacing: 0.05em;
}

.company-wrap h3:first-of-type {
  margin-top: 0;
}

.company-wrap h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 5px;
  height: 1.4em;
  background: linear-gradient(180deg, #2387AF, #02679A);
  border-radius: 2px;
}

/* 本文 */
.company-wrap p {
  color: #020617;  /* 黒に近い色で可読性MAX */
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.03em;
  margin-bottom: 40px;
  white-space: pre-line; /* 改行を活かす */
}

/* 箇条書きっぽい行を強調 */
.company-wrap p span,
.company-wrap p strong {
  color: #0f172a;
  font-weight: 700;
}

/* セクションごとの余白 */
.company-wrap h3 + p {
  padding-left: 20px;
  border-left: 1px solid rgba(2, 6, 23, 0.15);
}

/* スマホ */
@media (max-width: 768px) {
  .company-wrap {
    padding: 60px 16px



	}
}


/* ==========================
   WeissNet Thanks Page
========================== */

.thanks-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a, #020617);
  padding: 40px 20px;
  font-family: "Noto Sans JP", "Segoe UI", sans-serif;
}

.thanks-box {
  max-width: 720px;
  width: 100%;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp 1s ease forwards;
}

.thanks-box h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  color: #38bdf8;
}

.thanks-box p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #e5e7eb;
  margin-bottom: 40px;
}

/* ロゴ or 会社名 */
.thanks-logo {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #94a3b8;
  margin-bottom: 40px;
}

/* ボタン */
.thanks-btn {
  display: inline-block;
  padding: 16px 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #020617;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(56,189,248,0.4);
}

.thanks-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(56,189,248,0.6);
}

/* フェードアップ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }






/* 共通サービスブロック */
.service-block {
  max-width: 900px;
  margin: 0 auto 120px;
  padding: 0 20px;
}

/* 小さなカテゴリラベル */
.service-label {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: #777;
  margin-bottom: 12px;
}

/* メイン見出し */
.service-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 48px;
}

/* 本文エリア */
.service-content {
  background: #f7f7f7;
  border-radius: 16px;
  padding: 40px 36px;
}

/* 小見出し */
.service-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-left: 14px;
}

.service-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 4px;
  height: 1em;
  background: #111;
  border-radius: 2px;
}

/* 段落 */
.service-content p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 1.5em;
}

/* 最後のメッセージを少し強調 */
.service-note {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #ddd;
  font-weight: 500;
}

/* SP調整 */
@media (max-width: 768px) {
  .service-content {
    padding: 28px 22px;
  }
}





/* footer */
.footer {
   background: #111;
   color: #fff;
   text-align: center;
   padding: 32px;
}




.about {
  max-width: 960px;
  margin: 0 auto;
  padding: 120px 20px;
  line-height: 1.9;
}

.about-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}

.about-lead p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 32px;
}

.about-text p {
  color: #555;
  margin-bottom: 64px;
}

.about-heading {
  font-size: 20px;
  font-weight: 600;
  margin: 80px 0 24px;
  padding-left: 16px;
  border-left: 3px solid #111;
}

.about-list,
.about-points,
.about-recommend {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
   
}

.about-list li,
.about-points li,
.about-recommend li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 14px;
  color: #333;
}

.about-list li::before,
.about-points li::before,
.about-recommend li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #888;
}

.about-note,
.about-support {
  margin: 40px 0;
  color: #555;
}

.about-cta {
  margin-top: 100px;
  padding-top: 40px;
  border-top: 1px solid #ddd;
  text-align: center;
}

.about-button {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 40px;
  border: 1px solid #111;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: 0.3s;
}

.about-button:hover {
  background: #111;
  color: #fff;
}



   
   /* ==========================
   見出しアクセントライン
========================== */
/* ==========================
   WeissNet 見出し用下線
========================== */

/* WeissNet 見出しアクセントライン（強制表示） */
.title-line {
  display: block;
  width: 64px;
  height: 4px;
  margin: 12px 0 32px;
  background: linear-gradient(90deg, #0284c7, #38bdf8);
  border-radius: 4px;
}

   
   
   
   


/* mobile */
@media (max-width: 768px) {
   .smp-video {
      display: block;
   }
   .pc-video {
      display: none;
   }
   .menu-btn {
      display: block;
   }
   .nav {
      position: absolute;
      top: 64px;
      right: 0;
      width: 220px;
      background: #fff;
      border: 1px solid #eee;
      display: none;
      flex-direction: column;
   }
   .nav a {
      margin: 0;
      padding: 16px;
      border-bottom: 1px solid #eee;
   }
   .nav.open {
      display: flex;
   }
   .hero h1 {
      font-size: 28px;
   }
}