﻿*, *::before, *::after { box-sizing: border-box; }
.company-page {
  background: #f4f3f0;
  font-family: 'Zen Maru Gothic', 'Hiragino Maru Gothic ProN', sans-serif;
  color: #4e2613;
}
.co-hero {
  background: linear-gradient(80deg, #E6A582 0%, #E1393C 25%, #D12629 51%, #E6A582 100%);
  background-size: 200% auto;
  padding: 72px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.co-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/data/media/docodemo-lp2024/common/img01.jpg') center/cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
.co-hero-inner { position: relative; z-index: 1; }
.co-hero-en {
  display: block;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 14px;
}
.co-hero h1 {
  font-size: clamp(26px, 4.5vw, 42px);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 22px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45), 0 1px 4px rgba(0,0,0,0.35);
}
.co-hero-lead {
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(255,255,255,0.93);
  line-height: 2;
  max-width: 600px;
  margin: 0 auto 36px;
}
.co-hero-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.co-hero-nav a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 20px;
  border: 1.5px solid rgba(255,255,255,0.65);
  border-radius: 50px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(3px);
  transition: background 0.2s, border-color 0.2s;
}
.co-hero-nav a:hover { background: rgba(255,255,255,0.28); border-color: #fff; }
.co-hero-nav i { font-size: 10px; }
.co-sec { padding: 72px 24px; }
.co-sec.-white { background: #fff; }
.co-sec.-gray { background: #f4f3f0; }
.co-sec-head { text-align: center; margin-bottom: 48px; }
.co-sec-en {
  display: block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #e1393c;
  margin-bottom: 10px;
}
.co-sec-head h2 {
  font-size: clamp(20px, 3.2vw, 30px);
  font-weight: 700;
  color: #4e2613;
  line-height: 1.45;
  margin-bottom: 16px;
}
.co-sec-head .co-deco {
  width: 40px;
  height: 3px;
  background: linear-gradient(80deg, #E6A582, #E1393C);
  border-radius: 2px;
  margin: 0 auto 18px;
}
.co-sec-head .co-lead {
  font-size: clamp(14px, 1.7vw, 15px);
  color: #666;
  line-height: 1.95;
  max-width: 580px;
  margin: 0 auto;
}
.co-flow { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.co-flow-item { display: flex; align-items: flex-start; gap: 20px; position: relative; padding-bottom: 36px; }
.co-flow-item:last-child { padding-bottom: 0; }
.co-flow-item::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(#E1393C, #E6A582);
}
.co-flow-item:last-child::before { display: none; }
.co-flow-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(80deg, #E6A582 0%, #E1393C 60%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.co-flow-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #4e2613;
  margin-bottom: 8px;
  line-height: 1.4;
  padding-top: 10px;
}
.co-flow-body p { font-size: 14px; color: #666; line-height: 1.85; }
.co-plans { max-width: 960px; margin: 0 auto 16px; }
.co-tab-list {
  display: flex;
  border-bottom: 2px solid #e8d5d5;
  margin-bottom: 36px;
  list-style: none;
  padding: 0;
  gap: 0;
}
.co-tab-list li { flex: 1; }
.co-tab-list li a {
  display: block;
  width: 100%;
  padding: 14px 8px;
  font-size: 14px;
  font-weight: 700;
  color: #999;
  text-decoration: none;
  border-radius: 6px 6px 0 0;
  border: 2px solid transparent;
  border-bottom: none;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
  background: #f9f4f4;
  text-align: center;
}
.co-tab-list li a.active,
.co-tab-list li a:hover { color: #e1393c; background: #fff; border-color: #e8d5d5; }
.co-tab-panel { display: none; }
.co-tab-panel.active { display: block; }
.co-plan-lead { text-align: center; margin-bottom: 32px; }
.co-plan-lead h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: #4e2613;
  margin-bottom: 12px;
  line-height: 1.5;
}
.co-plan-lead p { font-size: 14px; color: #666; line-height: 1.9; }
.co-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.co-price-item {
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px 20px;
  text-align: center;
  box-shadow: 0 2px 14px rgba(225,57,60,0.07);
  border: 1.5px solid #f5e0e0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.co-price-item:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(225,57,60,0.14); }
.co-price-item .co-price-ttl { font-size: 13px; font-weight: 700; color: #4e2613; }
.co-price-item a.price-btn {
  display: block;
  background: linear-gradient(80deg, #E6A582 0%, #E1393C 25%, #D12629 51%, #E6A582 100%);
  background-size: 200% auto;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  padding: 14px 16px 12px;
  border-radius: 50px;
  text-decoration: none;
  transition: background-position 0.4s;
  line-height: 1.2;
}
.co-price-item a.price-btn:hover { background-position: right center; }
.co-price-item a.price-btn .yen { font-size: 13px; font-weight: 400; }
.co-other-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.co-other-item {
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1.5px solid #eee;
  text-align: center;
}
.co-other-item p { font-size: 13px; color: #666; font-weight: 700; margin: 0; }
.co-other-item a.button01 { width: 100%; }
.co-news-list { max-width: 420px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.co-news-card {
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  border-left: 3px solid #e1393c;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.co-news-card:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(225,57,60,0.12); }
.co-news-card .co-news-img { width: 44px; height: 36px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.co-news-card .co-news-img img { width: 100%; height: 100%; object-fit: cover; }
.co-news-card .co-news-body { flex: 1; min-width: 0; }
.co-news-card time { font-size: 10px; color: #aaa; display: block; margin-bottom: 3px; }
.co-news-card .co-news-ttl { font-size: 12px; font-weight: 700; color: #4e2613; line-height: 1.4; }
.co-news-card .co-news-tag {
  display: inline-block;
  background: #fff0f0;
  color: #e1393c;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 5px;
}
.co-impact {
  max-width: 840px;
  margin: 0 auto 40px;
  background: #fff;
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0 3px 18px rgba(0,0,0,0.06);
}
.co-impact-lead { font-size: clamp(14px, 1.7vw, 16px); line-height: 2; color: #555; margin-bottom: 28px; }
.co-impact-lead strong { color: #e1393c; }
.co-impact-targets { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.co-impact-target { background: #f9f4f4; border-radius: 12px; padding: 18px 16px; display: flex; align-items: flex-start; gap: 12px; }
.co-impact-target .co-it-img { width: 70px; height: 56px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.co-impact-target .co-it-img img { width: 100%; height: 100%; object-fit: cover; }
.co-impact-target p { font-size: 13px; font-weight: 700; color: #4e2613; line-height: 1.5; margin: 4px 0 0; }
.co-cta {
  background: linear-gradient(80deg, #E6A582 0%, #E1393C 25%, #D12629 51%, #E6A582 100%);
  background-size: 200% auto;
  padding: 64px 24px;
  text-align: center;
}
.co-cta h2 {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.co-cta p { font-size: clamp(13px, 1.6vw, 15px); color: rgba(255,255,255,0.92); line-height: 1.9; margin-bottom: 32px; }
.co-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #e1393c;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 44px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.co-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.fadein { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fadein.in { opacity: 1; transform: translateY(0); }
.co-sponsors { max-width: 960px; margin: 48px auto 0; }
.co-sponsors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.co-sponsor-item {
  background: #fff;
  border: 1.5px solid #ede0e0;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #4e2613;
  line-height: 1.45;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.co-sponsor-item:hover { border-color: #e1393c; box-shadow: 0 3px 12px rgba(225,57,60,0.10); }
.co-logo-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.co-logo-card {
  height: 120px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.co-logo-card img { width: 100%; height: 100%; object-fit: contain; }
.co-page-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(80deg, #E6A582 0%, #E1393C 60%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  z-index: 9999;
}
.co-page-top.is-show { opacity: 1; visibility: visible; transform: translateY(0); }
.co-page-top:hover { color: #fff; transform: translateY(-2px); }
.co-page-top i { font-size: 18px; line-height: 1; }
@media (max-width: 768px) {
  .co-sec { padding: 52px 16px; }
  .co-hero { padding: 56px 16px 48px; }
  .co-cta { padding: 48px 16px; }
  .co-news-list { max-width: 100%; }
  .co-news-card { gap: 8px; padding: 9px 10px; }
  .co-news-card .co-news-img { width: 40px; height: 32px; }
  .co-impact { padding: 24px 18px; }
  .co-tab-list li a { padding: 10px 8px; font-size: 13px; }
  .co-price-grid { grid-template-columns: 1fr 1fr; }
  .co-sponsors-grid { grid-template-columns: repeat(2, 1fr); }
  .co-logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .co-logo-card { height: 96px; padding: 10px; }
  .co-page-top { right: 16px; bottom: 16px; width: 44px; height: 44px; }
}
@media (max-width: 480px) {
  .co-price-grid { grid-template-columns: 1fr; }
  .co-sponsors-grid { grid-template-columns: 1fr; }
  .co-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .co-logo-card { height: 82px; padding: 8px; }
}
.company-page h3::before { display: none !important; }
.company-page h3 {
  padding-left: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
  position: static !important;
}
