/* =========================================
   LicoLi LP — style.css
   ========================================= */

/* --- Reset & Base ----------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:       #a9c500;
  --accent-dark:  #8aa000;
  --accent-light: rgba(169, 197, 0, 0.12);
  --accent-mid:   rgba(169, 197, 0, 0.75);
  --text:         #1a1a1a;
  --text-sub:     #666666;
  --border:       #e0e0e0;
  --bg:           #ffffff;
  --shadow:       0 4px 24px rgba(0, 0, 0, 0.10);
  --header-h:     64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }

@media (max-width: 767px) {
  .section { padding: 56px 0; }
}

/* --- Section Title ---------------------- */
.section-head { text-align: center; margin-bottom: 56px; }

.section-head .en {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.section-head .ja {
  font-size: 0.85rem;
  color: var(--text-sub);
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.accent-bar {
  width: 48px;
  height: 4px;
  background: var(--accent);
  margin: 16px auto 0;
  border-radius: 2px;
}


/* =========================================
   HEADER
   ========================================= */
#header {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 200;
}

.btn-entry {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-entry:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  #header { top: 14px; right: 16px; }
  .btn-entry { padding: 10px 18px; font-size: 0.82rem; }
}


/* =========================================
   HERO
   ========================================= */
.hero {
  line-height: 0;
}

.hero picture,
.hero img {
  width: 100%;
  height: auto;
  display: block;
}


/* =========================================
   INTRO
   ========================================= */
.intro {
  background:
    linear-gradient(rgba(245, 250, 210, 0.82), rgba(245, 250, 210, 0.82)),
    url('../img/bg.webp') center / cover no-repeat;
}

.intro-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.intro-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing:0;
  padding: 4px 18px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.intro-catch {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(2rem, 4vw, 2.2rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 14px;
}

.intro-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: #333;
  margin-bottom: 28px;
}

.intro-sub .highlight { color: var(--accent-dark); }

.intro-text {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 2;
  text-align: left;
}


/* =========================================
   OUR JOB
   ========================================= */
.our-job-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.our-job-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.our-job-item img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.job-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 12px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.our-job-item h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.5rem, 2.5vw, 1.4rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
}

.our-job-item p {
  font-size: 0.93rem;
  color: var(--text-sub);
  line-height: 2;
}

@media (min-width: 768px) {
  .our-job-item {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
  .our-job-item.reverse .our-job-body { order: -1; }
}


/* =========================================
   SCHEDULE
   ========================================= */
.schedule-section { background: #f9f9f9; }

.schedule-list {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

/* 縦線 */
.schedule-list::before {
  content: '';
  position: absolute;
  left: 72px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
  opacity: 0.35;
}

.schedule-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 20px 0;
  position: relative;
}

.schedule-time {
  width: 72px;
  flex-shrink: 0;
  text-align: right;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-dark);
  padding-top: 2px;
  padding-right: 14px;
  line-height: 1.2;
}

/* ドット */
.schedule-item::after {
  content: '';
  position: absolute;
  left: 64px;
  top: 24px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid #f9f9f9;
}

.schedule-body {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.schedule-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.schedule-body p {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .schedule-list::before { left: 64px; }
  .schedule-item::after  { left: 56px; }
  .schedule-time { width: 64px; font-size: 0.82rem; }
  .schedule-item { gap: 20px; }
}


/* =========================================
   POINTS
   ========================================= */
.points-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.point-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.point-card-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.point-card-body { padding: 28px 24px; }

.point-num {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 2px;
}

.point-kw {
  font-size: 0.72rem;
  color: var(--text-sub);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.point-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px; color: var(--accent);
	line-height: 1.4;
}

.point-card p {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.9;
}

@media (min-width: 768px) {
  .points-grid { grid-template-columns: repeat(3, 1fr); }
}


/* =========================================
   NUMBERS
   ========================================= */
.numbers-section { background: var(--accent-light); }

.numbers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.num-card {
  background: #fff;
  border-radius: 10px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.num-label {
  font-size: 0.82rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.num-value {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.8rem, 7vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}

.num-value .unit {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--accent);
}

.num-note {
  font-size: 0.78rem;
  color: var(--text-sub);
  margin-top: 10px;
}

@media (min-width: 768px) {
  .numbers-grid { grid-template-columns: repeat(3, 1fr); }
}


/* =========================================
   FULL-WIDTH IMAGE DIVIDER
   ========================================= */
.full-divider {
  overflow: hidden;
  max-height: 420px;
  line-height: 0;
}

.full-divider img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .full-divider,
  .full-divider img { max-height: 240px; height: 240px; }
}


/* =========================================
   MESSAGE
   ========================================= */
.message-inner {
  max-width: 820px;
  margin: 0 auto;
}

.message-catch {
  display: block;
  margin-bottom: 40px;
}

.message-catch span {
  display: table;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 700;
  line-height: 1;
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  margin-bottom: 8px;
}

.message-text {
  font-size: 0.93rem;
  color: var(--text-sub);
  line-height: 2.1;
  margin-bottom: 16px;
}

.message-rep {
  margin-top: 32px;
  text-align: right;
  font-size: 0.88rem;
  color: var(--text-sub);
}

.message-rep strong { font-size: 1rem; color: var(--text); }


/* =========================================
   REQUIREMENTS
   ========================================= */
.requirements-section { background: #f9f9f9; }

.req-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.req-table th,
.req-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  text-align: left;
  line-height: 1.8;
}

.req-table th {
  width: 28%;
  background: var(--accent-light);
  font-weight: 700;
  white-space: nowrap;
  color: var(--text);
}

@media (max-width: 767px) {
  .req-table,
  .req-table tbody,
  .req-table tr,
  .req-table th,
  .req-table td { display: block; width: 100%; }

  .req-table th {
    border-bottom: none;
    padding-bottom: 6px;
  }
  .req-table td { padding-top: 6px; }
}


/* =========================================
   MAP
   ========================================= */
.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
}

.map-info {
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.9;
}


/* =========================================
   CONTACT FORM
   ========================================= */
.contact-section { background: var(--accent-light); }

.contact-form {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  padding: 48px 40px;
  box-shadow: var(--shadow);
}

@media (max-width: 767px) {
  .contact-form { padding: 32px 20px; }
}

.form-group { margin-bottom: 28px; }

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.required-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 2px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.05em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  background: #fafafa;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
}

.form-error {
  color: #cc0000;
  font-size: 0.8rem;
  margin-top: 5px;
}

.honeypot { display: none !important; }

.form-note {
  font-size: 0.82rem;
  color: var(--text-sub);
  text-align: center;
  margin-bottom: 20px;
}

.form-submit { text-align: center; margin-top: 8px; }

.btn-submit {
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 16px 64px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s;
}

.btn-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}


/* =========================================
   FOOTER
   ========================================= */
#footer {
  background: #111;
  color: #999;
  padding: 52px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-logo-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
}

.footer-logo-corp {
  font-size: 0.72rem;
  color: #666;
  display: block;
  margin-bottom: 4px;
}

.footer-info { line-height: 2; font-size: 0.85rem; }

.footer-info a { color: #aaa; }
.footer-info a:hover { color: var(--accent); }

.footer-copy {
  text-align: center;
  color: #FFF;
  font-size: 0.75rem;
  padding-top: 32px;
  margin-top: 16px;
  border-top: 1px solid #222;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}


/* =========================================
   UTILITY
   ========================================= */
.text-accent { color: var(--accent); }
.fw-bold     { font-weight: 700; }
