@charset "UTF-8";

/*Theme Name: ゼロキチ！！
Theme URI:
Author: kwc              */

.lp_wrap{
  max-width: 1360px;
  margin: 24px auto;
  margin-top: 72px;
  color: #1d2327;
  font-size: 14px;
  line-height: 1.6;
}

.top_navi img{
  width: 200px;
}

.lp_main img{
  width: 100%;
  display: block;
}

.top_navi {
  background: #ffffffab;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 12px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 1360px;
  z-index: 9999;
}

.top_navi_inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.top_navi_logo img {
  height: 48px;
  width: auto;
  display: block;
}

.top_navi_menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.top_navi_menu li {
  margin: 0;
}

.top_navi_menu a {
  display: inline-block;
  padding: 10px 18px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  transition: all 0.25s ease;
  background: #f7f7f7;
}

.top_navi_menu a:hover {
  background: #111;
  color: #fff;
  transform: translateY(-1px);
}

.top_navi_menu li:first-child a {
  background: transparent;
}

.top_navi_menu li:first-child a:hover {
  background: #111;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .top_navi_inner {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .top_navi_logo img {
    height: 40px;
  }

  .top_navi_menu {
    justify-content: center;
    gap: 10px;
  }

  .top_navi_menu a {
    padding: 8px 14px;
    font-size: 14px;
  }
}

.form_wrap{
  margin: 30px auto;
  margin-top: 72px;
}

.kc-form {
  max-width: 860px;
  margin: 0 auto;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.kc-section {
  margin-bottom: 28px;
  padding: 22px 20px;
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 12px;
}

.kc-section h3 {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.5;
  color: #111827;
  border-left: 5px solid #111827;
  padding-left: 12px;
}

.kc-field {
  margin-bottom: 18px;
}

.kc-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
}

.kc-field input[type="text"],
.kc-field input[type="email"],
.kc-field input[type="tel"],
.kc-field input[type="number"],
.kc-field textarea,
.kc-field select {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #111827;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.kc-field input[type="text"]:focus,
.kc-field input[type="email"]:focus,
.kc-field input[type="tel"]:focus,
.kc-field input[type="number"]:focus,
.kc-field textarea:focus,
.kc-field select:focus {
  outline: none;
  border-color: #111827;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}

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

.kc-note {
  margin: 0 0 16px;
  padding: 16px;
  background: #fff;
  border-left: 4px solid #111827;
  border-radius: 8px;
  color: #374151;
  line-height: 1.8;
}

.kc-form .wpcf7-list-item {
  display: block;
  margin: 0 0 10px 0;
}

.kc-form .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 0;
}

.kc-form input[type="radio"],
.kc-form input[type="checkbox"] {
  margin-top: 4px;
  transform: scale(1.1);
}

.kc-submit {
  text-align: center;
  margin-top: 32px;
}

.kc-submit .wpcf7-submit {
  display: inline-block;
  min-width: 220px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #111827;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.kc-submit .wpcf7-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.required {
  color: #dc2626;
  margin-left: 4px;
}

.kc-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 13px;
}

.kc-form .wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 12px 16px !important;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .kc-form {
    padding: 16px;
  }

  .kc-section {
    padding: 18px 14px;
    margin-bottom: 20px;
  }

  .kc-section h3 {
    font-size: 18px;
  }

  .kc-field input[type="text"],
  .kc-field input[type="email"],
  .kc-field input[type="tel"],
  .kc-field input[type="number"],
  .kc-field textarea,
  .kc-field select {
    padding: 12px 14px;
    font-size: 14px;
  }

  .kc-submit .wpcf7-submit {
    width: 100%;
    min-width: auto;
  }
}


@media screen and (max-width: 767px) {


}

/*特大デバイス（ワイド・デスクトップ, 1200px 以下）*/
@media (max-width: 1200px) {

}
/*大デバイス（デスクトップ, 992px 以下）*/
@media (max-width: 992px) {

}
/*中デバイス（タブレット, 768px 以下）*/
@media (max-width: 768px) {
  .lp_wrap{
    margin-top: 117px;
  }
  .form_wrap{
    margin-top: 117px;
  }
}
/*小デバイス（横向きモバイル, 576px 以下）*/
@media (max-width: 576px) {

}



