@charset "UTF-8";
#form {
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 6rem;
}

#header {
  top: 0;
}

.contact-page-section .service-title-wrap {
  margin-bottom: 0;
}

.form-text {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 3rem;
}

.form-attention {
  width: 100%;
  text-align: center;
  margin-bottom: 5rem;
}
.form-attention ul {
  display: inline-block;
  text-align: left;
  padding: 25px 35px;
  background-color: #fcf9f6;
  border: 1px solid #e6ddd4;
  border-radius: 12px;
  list-style: none;
  margin: 0 auto;
}
.form-attention ul li {
  position: relative;
  padding-left: 1.8em;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 10px;
}
.form-attention ul li:last-child {
  margin-bottom: 0;
}
.form-attention ul li::before {
  content: "※";
  position: absolute;
  left: 0;
  color: #e74c3c;
  font-weight: bold;
}
.form-attention .tel-link {
  color: #0d6a05;
  font-weight: bold;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.form-attention .tel-link:hover {
  opacity: 0.7;
}

.contact-inner {
  max-width: 900px;
  margin: 0 auto 5rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.en-title {
  display: block;
  font-size: 14px;
  color: #69472a;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  font-weight: bold;
}

.main-title {
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.sub-text {
  color: #666;
  font-size: 15px;
}

.form-item {
  display: flex;
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}

.form-item.no-border {
  border-bottom: none;
}

/* ラベル周り */
.item-label {
  width: 30%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.item-label label {
  font-weight: bold;
  color: #69472a;
}

.tag-required {
  background: #e74c3c;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
}

.tag-optional {
  background: #bbb;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
}

.item-input {
  width: 70%;
}

.item-input input,
.item-input textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  background: #fafafa;
  font-size: 16px;
  transition: all 0.3s;
}

.item-input input:focus,
.item-input textarea:focus {
  outline: none;
  border-color: #69472a;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(105, 71, 42, 0.1);
}

/* 送信ボタンエリア */
.form-btn-wrap {
  text-align: center;
  margin-top: 40px;
}

.submit-button {
  background: #69472a;
  color: #fff;
  border: none;
  padding: 20px 80px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.submit-button:hover {
  background: #4a321e;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  #header {
    align-items: center;
    padding: 1rem;
  }
  #header h1 {
    margin: 0;
  }
  #header h1 img {
    width: 80px;
  }
  .menu-icon {
    display: block;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 200;
    cursor: pointer;
  }
  .menu-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: #69472a;
    position: absolute;
    transition: 0.3s;
  }
  .menu-icon span:nth-child(1) {
    top: 0;
  }
  .menu-icon span:nth-child(2) {
    top: 11px;
  }
  .menu-icon span:nth-child(3) {
    bottom: 0;
  }
  #nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    transition: 0.5s;
    z-index: 150;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  #nav ul {
    flex-direction: column;
    margin-top: 80px;
  }
  #nav ul li {
    margin: 0;
    border-bottom: 1px solid #eee;
  }
  #nav ul li a {
    padding: 20px;
    text-align: center;
  }
  #header.open #nav {
    right: 0;
  }
  #header.open .menu-icon span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  #header.open .menu-icon span:nth-child(2) {
    opacity: 0;
  }
  #header.open .menu-icon span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
  .contact-form {
    padding: 30px 20px;
  }
  .form-item {
    flex-direction: column;
    padding: 20px 0;
  }
  .item-label {
    width: 100%;
    margin-bottom: 10px;
  }
  .item-input {
    width: 100%;
  }
  .submit-button {
    width: 100%;
    padding: 18px 20px;
    justify-content: center;
  }
}/*# sourceMappingURL=contact.css.map */