/*
Theme Name: Lightning Child
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.0
*/
/* =========================================================
   Company Profile : Left aligned + light gray + readable
   （HTMLはそのまま／このCSSを“丸ごと”適用）
   ========================================================= */

/* ---- Section base ---- */
.co{
  --bg: #f6f7f9;          /* 完全白をやめた薄グレー */
  --card: #ffffff;        /* カードは白 */
  --soft: #fafafa;        /* カード内の薄グレー */
  --line: #e3e6ea;        /* 罫線 */
  --text: #222;
  --muted: #5f6670;
  --accent: #1f6feb;
  --accent-soft: #eef2ff;

  background: var(--bg);
  color: var(--text);
  padding: clamp(28px, 4vw, 56px) 0;
}

/* ---- Wrapper : 左寄せ（左の空きを無くす） ---- */
.co__wrap{
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 40px;        /* ページ端からの余白だけ残す */
}

@media (max-width: 768px){
  .co__wrap{ padding: 0 20px; }
}

/* ---- Header ---- */
.co__head{
  margin: 0 0 32px;
  text-align: left;
}

.co__eyebrow{
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.co__title{
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.15;
  font-weight: 700;
}

.co__lead{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 720px;       /* 読みやすい行幅に制限 */
}

/* ---- Grid ---- */
.co__grid{
 /* display: grid;*/
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px){
  .co__grid{ grid-template-columns: 1fr; }
}

/* ---- Cards ---- */
.co__card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

/* 見出し帯 */
.co__cardHead{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e8ebef;
  margin-bottom: 14px;
}

.co__cardTitle{
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
}

/* バッジ */
.co__badge{
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #3b5bfd;
  font-weight: 600;
  letter-spacing: .04em;
}

/* ---- Definition List : カード内を薄グレーで区切る ---- */
.co__dl{
  margin: 0;
  background: var(--soft);
  border: 1px solid #eef0f3;
  border-radius: 10px;
  padding: 4px 16px;
}

.co__row{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #e6e8eb;
}

.co__row:last-child{
  border-bottom: none;
}

@media (max-width: 520px){
  .co__row{
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.co__row dt{
  font-size: 13px;
  color: #6b7280;
  letter-spacing: .02em;
}

.co__row dd{
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #222;
}

/* ---- Links ---- */
.co__link{
  color: var(--accent);
  text-decoration: none;
}
.co__link:hover{
  text-decoration: underline;
}

/* ---- Buttons ---- */
.co__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.co__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease, transform .1s ease;
}
.co__btn:hover{
  background: #f6f7f9;
  border-color: #d9dde3;
  transform: translateY(-1px);
}

.co__btn--primary{
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.co__btn--primary:hover{
  background: #1b60d6;
  border-color: #1b60d6;
}

/* ---- Right accent card (strength) ---- */
.co__kicker{
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.co__accentTitle{
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.co__accentLead{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ---- Points ---- */
.co__points{
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 12px;
}

.co__point{
  display: flex;
  gap: 12px;
  background: #f9fafb;
  border: 1px solid #eceff3;
  border-radius: 10px;
  padding: 12px;
}

.co__icon{
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #3b5bfd;
  display: grid;
  place-items: center;
  font-weight: 800;
  flex: 0 0 26px;
}

.co__pointTitle{
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 700;
}

.co__pointText{
  margin: 0;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---- Photo placeholder ---- */
.co__photo{
  margin-top: 16px;
  height: 200px;
  border-radius: 12px;
  border: 1px solid #e6e8eb;
  background: #f1f3f6;
  overflow: hidden;

  /* 実写真を使うなら
  background-image: url(/images/company.jpg);
  background-size: cover;
  background-position: center;
  */
}

.co__photoOverlay{
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.35));
}

.co__photoText{
  margin: 0;
  font-size: 12.5px;
  color: rgba(255,255,255,.92);
}

/* ---- Access ---- */
.co__access{
  margin-top: 32px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,.03);
}

.co__accessTitle{
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.co__accessSub{
  margin: 6px 0 14px;
  font-size: 13px;
  color: var(--muted);
}

.co__map iframe{
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 12px;
  background: #f1f3f6;
}
/* =========================================================
   Contact : White/Gray + thin lines + rounded + badge
   ========================================================= */

.contact{
  --bg: #f6f7f9;
  --card: #ffffff;
  --soft: #fafafa;
  --line: #e3e6ea;
  --text: #222;
  --muted: #5f6670;
  --accent: #1f6feb;
  --accent-soft: #eef2ff;

  background: var(--bg);
  color: var(--text);
  padding: clamp(28px, 4vw, 56px) 0;
}

.contact__wrap{
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 40px;
}

@media (max-width: 768px){
  .contact__wrap{ padding: 0 20px; }
}

/* Head */
.contact__eyebrow{
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact__title{
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.15;
  font-weight: 700;
}

.contact__lead{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 720px;
}

/* Layout */
.contact__grid{
  margin-top: 32px;
 /* display: grid;*/
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px){
  .contact__grid{ grid-template-columns: 1fr; }
}

/* Card */
.contact__card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

.contact__cardHead{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e8ebef;
  margin-bottom: 14px;
}

.contact__cardTitle{
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.contact__badge{
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #3b5bfd;
  font-weight: 600;
  letter-spacing: .04em;
}

.contact__inner{
  background: var(--soft);
  border: 1px solid #eef0f3;
  border-radius: 10px;
  padding: 16px;
}

/* Form rows */
.frow{ margin-bottom: 14px; }
.fgrid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 680px){
  .fgrid{ grid-template-columns: 1fr; }
}

.flabel{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 6px;
}

.req{
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #fff2f2;
  color: #c0392b;
  border: 1px solid #ffd9d9;
}

.finput{
  width: 100%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid #dfe3e8;
  background: #fff;
  font-size: 14px;
  line-height: 1.4;
  color: #222;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.finput:focus{
  border-color: rgba(31,111,235,.55);
  box-shadow: 0 0 0 4px rgba(31,111,235,.12);
}

textarea.finput{
  resize: vertical;
  min-height: 140px;
}

.fhelp{
  margin: 8px 0 0;
  font-size: 12.5px;
  color: var(--muted);
}

/* Agree */
.frow--agree{ margin-top: 6px; }
.agree{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #3b3f46;
}
.agree__box{
  width: 18px;
  height: 18px;
}

/* Actions */
.factions{
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fbtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .1s ease;
}

.fbtn:hover{
  background: #f6f7f9;
  border-color: #d9dde3;
  transform: translateY(-1px);
}

.fbtn--primary{
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.fbtn--primary:hover{
  background: #1b60d6;
  border-color: #1b60d6;
}

/* Side info */
.info{
  margin: 0;
}
.info__row{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #e6e8eb;
}
.info__row:last-child{ border-bottom: none; }

.info__row dt{
  font-size: 13px;
  color: #6b7280;
}
.info__row dd{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.note{
  margin-top: 16px;
  background: #ffffff;
  border: 1px solid #e6e8eb;
  border-radius: 10px;
  padding: 12px;
}

.note__title{
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
}

.note__list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
