@charset "UTF-8";
/* =========================
   基本設定・レイアウト共通
   ========================= */
:root {
  --orange:#ff8a00;
  --green:#4cd964;
  --yellow:#ffd60a;
  --black:#050608;
  --gray:#f5f5f5;
  --text-main:#222;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif;
  color: var(--text-main);
  line-height: 1.7;
  background-color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.pc {
  display: block;
}

.pc {
  display: none;
}

.document .container {
  max-width: 700px;
}
.document .container .btn {
  display: block;
  width: 20rem;
  text-align: center;
  margin: auto;
  box-shadow: unset;
}
.document .section-title {
  font-size: 1.2rem;
  margin-bottom: -0.5rem;
}

/* =========================
   ヘッダー共通
   ========================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(5, 6, 8, 0.9);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  color: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  max-width: 1120px;
  margin: 0 auto;
}

.logo {
  font-weight: 700;
  background: url(img/logo_wht.png) left/contain no-repeat;
  width: 10rem;
}
.logo a {
  color: transparent;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}
nav a {
  color: #fff;
  opacity: 0.8;
}
nav a:hover {
  opacity: 1;
}

/* ハンバーガーボタン */
.hamburger {
  display: none;
  width: 32px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 4px;
  background: #fff;
  border-radius: 4px;
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* 開いたときのアニメ */
/* =========================
   TOP：ヒーローエリア
   ========================= */
main::before {
  content: "";
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.6666666667)), radial-gradient(circle at top left, rgba(255, 138, 0, 0.6), transparent 40%), radial-gradient(circle at top right, rgba(76, 217, 100, 0.6), transparent 40%), radial-gradient(circle at bottom, rgba(255, 214, 10, 0.5), transparent 40%), url(img/top.png) center/cover !important;
}

.hero {
  color: #fff;
  padding: 120px 0 96px;
  position: relative;
  overflow: hidden;
  background: none !important;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.hero-title-main {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 16px;
  letter-spacing: -0.05em;
  font-weight: 400;
}

.hero-title-sub {
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 0 12px;
  opacity: 0.92;
}

.hero-text {
  font-size: 0.95rem;
  max-width: 760px;
  margin: 0.5rem 0 2rem;
  opacity: 0.9;
}

.hero-badges {
  display: inline-flex;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-badge {
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
}

/* =========================
   共通ボタン
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  color: #111;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.btn-line {
  background: linear-gradient(to right, #4aad33, #1bd108);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}
.btn-line::before {
  content: "";
  font-size: 0.75rem;
  background-image: url(img/line_icon_wh.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 8px;
  display: inline-block;
  width: 2rem;
  height: 2rem;
}
.btn-line:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

ul {
  padding-inline-start: 1.5rem;
}

/* =========================
   セクション共通
   ========================= */
.services section:nth-of-type(odd) {
  background: rgba(0, 0, 0, 0.7019607843);
}
.services section:nth-of-type(odd) .section-title {
  color: #fff;
}
.services section:nth-of-type(odd) .section-subtitle {
  color: #fff;
}
.services section:nth-of-type(even) {
  background: #ffffff;
}
.services section:nth-of-type(even) .section-title {
  color: #333;
}
.services section:nth-of-type(even) .section-subtitle {
  color: #333;
}

section {
  padding: 2.5rem 0;
}
section.cta-section {
  background: none !important;
}
section.cta-section .section-title {
  font-size: 1.4rem;
}
section.cta-section .section-subtitle {
  color: #fff !important;
}
section.cta-section .btn {
  width: 100%;
  max-width: 35%;
}
section:nth-of-type(odd) {
  background: #ffffff;
}
section:nth-of-type(odd) .section-subtitle {
  color: #333;
}
section:nth-of-type(even) {
  background: rgba(0, 0, 0, 0.7019607843);
}
section:nth-of-type(even) .section-title {
  color: #fff;
}
section.reasons .section-title {
  color: var(--black);
  text-align: center;
}

.section-title {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 32px;
}

.section-title.orange {
  color: var(--orange);
}

/* =========================
   ② サービス導線カード
   ========================= */
.service-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.service-links a {
  padding: 20px 18px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  z-index: 1;
  border-radius: 1rem;
  border: solid 2px #fff;
}
.service-links a::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.service-links a::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0rem;
  right: 0rem;
  width: 9.5rem;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  clip-path: ellipse(100% 100% at 100% 20%);
}
.service-links a:nth-of-type(1)::after {
  background-image: url(img/s_bg_a.webp);
}
.service-links a:nth-of-type(2)::after {
  background-image: url(img/s_bg_b.webp);
}
.service-links a:nth-of-type(3)::after {
  background-image: url(img/s_bg_c.webp);
}

.service-link-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.service-link-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.service-link-desc {
  font-size: 0.85rem;
  color: #666;
  padding-right: 50%;
}

/* =========================
   ③ AllBloomとは？
   ========================= */
.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 40px;
}

.about-highlight {
  border-left: 4px solid var(--orange);
  padding-left: 14px;
  margin-bottom: 18px;
}

.about-targets {
  font-size: 0.9rem;
  background: #f1f7ff;
  border-radius: 8px;
  padding: 12px 16px;
}

.branch-visual {
  width: 100%;
  height: 220px;
  border-radius: 20px;
  background: radial-gradient(circle at 20% 80%, rgba(76, 217, 100, 0.5), transparent 50%), radial-gradient(circle at 70% 20%, rgba(255, 214, 10, 0.6), transparent 50%), radial-gradient(circle at 90% 80%, rgba(255, 138, 0, 0.6), transparent 50%), #111;
  position: relative;
  overflow: hidden;
}
.branch-visual::before, .branch-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.branch-visual::before {
  width: 260px;
  height: 260px;
  bottom: -80px;
  left: -80px;
}
.branch-visual::after {
  width: 160px;
  height: 160px;
  top: -40px;
  right: 10px;
}

/* =========================
   ④ 選ばれる理由
   ========================= */
.reasons {
  background: var(--black);
  color: #fff;
}
.reasons .section-title {
  color: #fff !important;
  text-align: center;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.reason-card {
  background: linear-gradient(145deg, #6b6b6b, #050505);
  padding: 0.5rem 1rem;
  border: 1px solid rgb(141, 141, 141);
}

.reason-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--orange);
}

.reason-title {
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
}
.reason-title img {
  width: 5.5rem;
  margin: 0 auto 1rem;
}

.reason-text {
  font-size: 0.9rem;
  color: #ccc;
}

/* =========================
   ⑤ 主力サービス
   ========================= */
.service-block {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 4fr);
  gap: 28px;
  margin-bottom: 40px;
  align-items: center;
}
.service-block:nth-of-type(even) {
  grid-template-columns: minmax(0, 4fr) minmax(0, 5fr);
}

.service-label {
  font-size: 1.1rem;
  letter-spacing: 0.14rem;
  color: #fd8a00;
  text-transform: uppercase;
  border-bottom: solid 1px;
  margin-bottom: 6px;
  font-weight: bold;
}

.service-name {
  font-size: 1.4rem;
  margin-bottom: 8px;
  letter-spacing: 1px;
  margin-top: 0;
  color: #333;
}

.service-desc {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.growth-visual {
  height: 180px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.1), rgba(76, 217, 100, 0.18)), repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.4) 0, rgba(255, 255, 255, 0.4) 1px, transparent 1px, transparent 6px), #111;
  position: relative;
  overflow: hidden;
}
.growth-visual::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 10%;
  width: 80%;
  height: 140%;
  border-radius: 999px 999px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* =========================
   ⑥ 代表メッセージ（共通）
   ========================= */
.ceo-section {
  background: #fff;
}

.ceo-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 32px;
  align-items: center;
  color: #fff;
}

.ceo-message {
  font-size: 0.95rem;
}

.ceo-photo {
  border-radius: 18px;
  background: linear-gradient(135deg, #fdf2e9, #e3f6ff);
  height: 240px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 0.9rem;
}
.ceo-photo::after {
  content: "代表写真（ダミー）";
}

/* =========================
   ⑦ CTA 共通
   ========================= */
.cta-section {
  background: var(--black);
  color: #fff;
  text-align: center;
}
.cta-section .section-title {
  color: #fff;
  margin-bottom: 16px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

/* =========================
   ⑧ フッター 共通
   ========================= */
footer {
  background: #111;
  color: #ccc;
  padding: 32px 0 20px;
  font-size: 0.85rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr;
  gap: 28px;
}

.footer-title {
  font-weight: 400;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 1.2rem;
}

.footer-links a {
  padding: 0.5rem 0;
  display: block;
  margin-bottom: 4px;
  color: #ccc;
  font-size: 0.9rem;
  border-bottom: solid 1px #555;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: #777;
}

/* =========================
   下層ページ用 追加スタイル
   ========================= */
/* サブページ上部ヒーロー */
.page-hero {
  color: #fff;
  padding: 96px 0 64px;
  text-align: center;
}
.page-hero h1 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.page-hero p {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Services詳細 */
#launch img {
  max-width: 450px;
  width: 100%;
  margin: 1rem auto;
}

#line .line_float {
  list-style: none;
  margin-block-start: 0;
  padding-left: 0;
  display: flex;
  gap: 1.5rem;
}
#line .line_float li {
  background: linear-gradient(0deg, #5f5447, rgba(0, 12, 11, 0.9803921569), #79726a);
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  width: 25%;
  margin-bottom: 1rem;
  position: relative;
}
#line .line_float li:nth-child(n+2)::before {
  content: "";
  width: 1rem;
  height: 2rem;
  position: absolute;
  top: 3rem;
  left: -1.2rem;
  background: #ff8000;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
#line .line_float img {
  width: 3.5rem;
  margin: 0 auto 0.5rem;
}

.service-detail {
  border-radius: 16px;
  background: #fff;
  padding: 4rem;
  margin-bottom: 32px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
.service-detail .service-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.service-detail h3 {
  margin-top: 0;
  font-size: 1.4rem;
}

.service-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 12px 0 16px;
}

.flow-box {
  border-radius: 12px;
  padding: 1rem;
  font-size: 0.85rem;
  background: #f7f7f7;
  width: calc(50% - 0.25rem);
  margin-bottom: 0.5rem;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.ba-box {
  padding: 0.5rem;
  background: #ffffff;
  font-size: 0.85rem;
  padding-top: 9rem;
  background-repeat: no-repeat;
  background-size: 100%;
  box-shadow: inset 0.2rem 0.2rem 0.5rem #b8b8b8;
  position: relative;
}
.ba-box.box_a {
  background-image: url(img/youtube_before.webp);
  background-size: 70%;
  background-position: bottom -10rem left -1rem;
  padding-top: 4rem;
  padding-bottom: 1rem;
}
.ba-box.box_a ul {
  padding-left: 50%;
}
.ba-box.box_a .ba-title {
  background: #b0b0b0;
}
.ba-box.box_b {
  background-image: url(img/youtube_after.webp);
  background-position: top -4rem center;
  background-size: 140%;
}

.ba-title {
  font-weight: 600;
  margin-bottom: 6px;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.5rem 0;
  background: #fd9426;
  color: #fff;
  width: 9rem;
  line-height: 1;
  text-align: center;
}

.small-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  border-left: solid 2px orange;
  line-height: 1.3;
  padding-left: 0.5rem;
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem 3rem;
  margin-top: 16px;
}

.other-service-box {
  padding: 4px 0;
  background: #fff;
  font-size: 0.9rem;
  border-bottom: solid 1px #dbdbdb;
}

/* 代表挨拶（下層用レイアウト） */
.ceo-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 32px;
  align-items: start;
}

.vision-box {
  border-left: 4px solid var(--orange);
  padding-left: 12px;
  margin-top: 10px;
}

/* 会社概要 */
table.company-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.company-table th, .company-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
}
.company-table th {
  width: 24%;
  background: #fafafa;
  text-align: left;
  font-weight: 600;
}

.map-placeholder {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
}
.map-placeholder iframe {
  border: 0;
  width: 100%;
  height: 260px;
}

/* お問い合わせフォーム */
#services .btn {
  display: block;
  margin: 2rem auto 0;
  box-shadow: unset;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.contact-form {
  max-width: 620px;
  padding: 20px 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  margin: 1rem auto;
}
.contact-form .btn {
  display: block;
  margin: 0 auto;
  box-shadow: unset;
  width: 80%;
}

.form-row {
  margin-bottom: 14px;
}

label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

input[type=text], input[type=email] {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 0.9rem;
  font-family: inherit;
}

textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 0.9rem;
  font-family: inherit;
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: #666;
  margin-top: 4px;
}

.line-box {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #e8ffe8;
  font-size: 0.9rem;
}

.line-link {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  font-weight: 600;
}
.line-link span {
  display: inline-block;
  background: #00c300;
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  margin-right: 6px;
}

.privacy-mini {
  margin-top: 12px;
  font-size: 0.8rem;
  color: #666;
}

/* =========================
   レスポンシブ
   ========================= */
@media (max-width: 900px) {
  /* ハンバーガーは表示 */
  .hamburger {
    display: flex;
  }
  /* ナビメニューはデフォ非表示 */
  nav {
    position: absolute;
    top: 50px;
    right: 0;
    width: 100%;
    background: #111;
    display: none;
    height: 100vh;
  }
  nav ul {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
  }
  nav a {
    display: block;
    padding: 0.8rem 0;
    font-size: 1rem;
    text-align: center;
    border-bottom: solid 1px #fff;
  }
  nav.open {
    display: block;
  }
  /* 開いた時だけ表示 */
  .header-inner {
    align-items: flex-start;
    gap: 6px;
  }
  nav ul {
    flex-wrap: wrap;
  }
  .about-inner, .ceo-inner, .service-block {
    grid-template-columns: minmax(0, 1fr);
    display: flex;
  }
  .reasons-grid, .service-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-inner, .ceo-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
  .growth-visual {
    width: 100%;
    display: block;
  }
  .footer-links a {
    text-align: center;
  }
  .service-detail {
    padding: 3rem;
  }
  .ba-box {
    padding-top: 6rem;
  }
  .ba-box.box__a {
    padding-top: 3.5rem;
    background-size: 18rem;
  }
  .ba-box.box_b {
    background-position: top -2.8rem center;
  }
  .about-inner {
    flex-direction: column;
  }
  #line .line_float {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #line .line_float li {
    width: calc(25% - 1.5rem);
    flex-direction: row;
    align-items: center;
    height: 7.5rem;
  }
  #line .line_float li figure {
    margin: 0 auto;
  }
  #line .line_float li figcaption {
    white-space: nowrap;
  }
  #line .line_float li:nth-child(n+2)::before {
    left: -1.5rem;
  }
}
@media (max-width: 640px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .hero-title-main {
    font-size: 2.2rem;
  }
  .hero {
    padding-top: 100px;
  }
  .reasons-grid, .service-links {
    grid-template-columns: minmax(0, 1fr);
  }
  section.cta-section .btn {
    max-width: 100%;
  }
  .service-detail {
    border-radius: unset;
    margin: 0 -1rem 2rem;
    padding: 2rem 1rem;
  }
  .flow-box {
    width: 100%;
  }
  .ba-box {
    padding-top: 6rem;
  }
  .service-block {
    flex-direction: column;
  }
  .service-block .growth-visual {
    order: 2;
  }
  #line .line_float li {
    width: 100%;
    height: 100%;
    padding: 0.5rem 0;
    margin-bottom: 0;
  }
  #line .line_float li figure {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    gap: 6rem;
    width: 100%;
    padding-left: 1rem;
  }
  #line .line_float li figure img {
    width: 2.5rem;
    margin: 0;
  }
  #line .line_float li:nth-child(n+2)::before {
    left: 45%;
    width: 2rem;
    height: 0.8rem;
    top: unset;
    top: -1.1rem;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
  }
}/*# sourceMappingURL=style.css.map */