/* =========================================================
   Base
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.7;
  color: #222;
  background: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #0c7abf;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =========================================================
   Layout common
========================================================= */
#wrap { min-width: 320px; }

.inner {
  width: 92%;
  max-width: 1080px;
  margin: 0 auto;
}

.section {
  padding: 60px 0;
}

.bg-light {
  background: #f5f7fa;
}

.bg-accent {
  background: linear-gradient(135deg, #0c7abf, #0f967a);
}

.center { text-align: center; }
.white { color: #fff; }

/* =========================================================
   Header
========================================================= */
#header {
  background: #ffffff;
  border-bottom: 1px solid #e3e7ed;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 4%;
}

.site-logo {
  margin: 0;
}

.site-logo a {
  font-weight: 600;
  color: #222;
}

.site-logo .brand {
  color: #0c7abf;
  font-size: 22px;
  font-weight: 700;
}

.header-tel {
  margin: 0;
  font-size: 13px;
  text-align: right;
}

.tel-number {
  font-size: 20px;
  font-weight: bold;
  color: #0c7abf;
}

.tel-time {
  font-size: 11px;
  color: #666;
}

/* =========================================================
   First View
========================================================= */
.fv {
  background: linear-gradient(135deg, #e5f4ff, #f7fbff);
  padding: 40px 0;
}

.fv-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 92%;
  max-width: 1080px;
  margin: 0 auto;
}

.fv-text {
  flex: 1.2;
}

.fv-image {
  flex: 1;
  text-align: right;
}

.fv-label {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #0c7abf;
  color: #fff;
  font-size: 12px;
  margin-bottom: 10px;
}

.fv-title {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.5;
}

.fv-sub {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  color: #0c7abf;
}

.fv-lead {
  margin: 0 0 14px;
  font-size: 14px;
  color: #444;
}

.em {
  font-weight: bold;
  color: #0c7abf;
}

.fv-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.fv-badges li {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #0c7abf;
  background: #fff;
  color: #0c7abf;
}

.fv-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.fv-cta img {
  max-width: 380px;
}

/* =========================================================
   Section titles
========================================================= */
.sec-title {
  font-size: 22px;
  margin: 0 0 20px;
  text-align: center;
  position: relative;
}

.sec-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0c7abf;
  margin: 10px auto 0;
  border-radius: 999px;
}

.sec-subtitle {
  font-size: 18px;
  margin: 0 0 6px;
}

.sec-mini {
  font-size: 15px;
  margin: 0 0 4px;
}

/* =========================================================
   Columns & lists
========================================================= */
.cols {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.cols .col {
  flex: 1;
  min-width: 260px;
}

.cols-middle {
  align-items: center;
}

.list-dot {
  margin: 0;
  padding-left: 20px;
}

.list-dot.white {
  color: #ffffff;
}

/* =========================================================
   Tables
========================================================= */
.size-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
}

.size-table th,
.size-table td {
  border: 1px solid #dde3ef;
  padding: 8px 10px;
  text-align: left;
}

.size-table th {
  background: #f0f4fb;
}

.note {
  font-size: 12px;
  margin-top: 8px;
}

/* =========================================================
   Works grid
========================================================= */
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.work-item {
  margin: 0;
  font-size: 14px;
  text-align: center;
}

.work-item img {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(15, 46, 71, 0.12);
  margin-bottom: 6px;
}

/* =========================================================
   Voice
========================================================= */
.voice-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.voice-title {
  font-weight: bold;
  margin: 0 0 4px;
}

.voice-text {
  margin: 0;
}

/* =========================================================
   Contact form
========================================================= */
.lp-contact-form-wrap {
  max-width: 720px;
  margin: 40px auto 0;
  padding: 30px 25px;
  background: #f8fbff;
  border: 1px solid #dce6f5;
  border-radius: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  font-weight: bold;
  font-size: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #bccce3;
  border-radius: 6px;
  font-size: 15px;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0c7abf;
  outline: none;
  background: #f0f7ff;
}

.form-submit {
  background: linear-gradient(135deg, #0c7abf, #0f967a);
  padding: 14px;
  font-size: 18px;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.form-submit:hover {
  opacity: 0.9;
}

.req {
  color: #d40024;
  font-size: 12px;
}

/* =========================================================
   Section CTA
========================================================= */
.section-cta {
  width: 100%;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
}

.section-cta a {
  display: inline-block;
}

.section-cta img {
  display: block;
  margin: 0 auto;
}

/* =========================================================
   Footer
========================================================= */
#footer {
  background: #151c29;
  color: #fff;
  margin-top: 40px;
  padding-top: 30px;
}

.footer-inner {
  padding-bottom: 20px;
}

.footer-company {
  font-size: 13px;
}

.footer-logo {
  font-weight: bold;
  margin: 0 0 10px;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.company-table th,
.company-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 4px 6px;
  vertical-align: top;
}

.company-table th {
  width: 80px;
  font-weight: normal;
  opacity: 0.8;
}

.company-table a {
  color: #aad4ff;
}

.copyright {
  margin: 0;
  padding: 10px 0 5px;
  font-size: 11px;
  text-align: center;
  background: #101624;
}

.pagetop {
  text-align: center;
  margin: 0;
  padding-bottom: 12px;
  font-size: 11px;
}

.pagetop a {
  color: #ffffff;
}

/* =========================================================
   Responsive
========================================================= */
.sp { display: none; }

@media (max-width: 767px) {
  .sp { display: inline; }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 4px;
  }

  .header-tel { text-align: left; }

  .fv-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .fv-image {
    text-align: center;
  }

  .fv-image img {
    width: 92%;
    margin: 0 auto;
  }

  .fv-cta {
    flex-direction: column;
    align-items: center;
  }

  .fv-cta img {
    width: 88%;
    max-width: 300px;
  }

  .fv-title {
    font-size: 20px;
  }

  .sec-title {
    font-size: 20px;
  }

  .cols {
    flex-direction: column;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }

  .lp-contact-form-wrap {
    padding: 24px 16px;
  }
}
