<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ãƒ¡ã‚¤ãƒ³ä½™ç™½èª¿æ•´ï¼ˆãƒ˜ãƒƒãƒ€ãƒ¼åˆ†ï¼‰ */
.contact-page {
  max-width: 800px;
  margin: 120px auto 60px;
  padding: 0 20px;
  font-family: 'Zen Old Mincho', serif;
  color: #333;
}

/* ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚¿ã‚¤ãƒˆãƒ« */
.section-title {
  text-align: left;
  margin-bottom: 40px;
}

.section-title .ja {
  font-size: 18px;
  color: #777;
  margin-bottom: 8px;
}

.section-title .en {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 1px;
  font-family: 'Cormorant Garamond', serif;
}

/* èª¬æ˜Žæ–‡ */
.contact-description p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 16px;
  color: #555;
}

/* TELãƒ»FAXæƒ…å&nbsp;± */
.contact-info dl {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.7;
}

.contact-info dt {
  font-weight: bold;
  margin-top: 10px;
}

/* ãƒ•ã‚©ãƒ¼ãƒ&nbsp;å…¨ä½“ */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ãƒ©ãƒ™ãƒ«ãƒ»å…¥åŠ›ãƒœãƒƒã‚¯ã‚¹ */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 15px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  padding: 10px 14px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
  background-color: #f9f9f9;
}

textarea {
  resize: vertical;
}

/* å¿…é&nbsp;ˆãƒžãƒ¼ã‚¯ */
.required {
  color: #c00;
  margin-left: 4px;
  font-size: 14px;
}

/* ãƒ©ã‚¸ã‚ªãƒœã‚¿ãƒ³ */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.radio-group label {
  font-weight: normal;
  font-size: 15px;
}

/* ãƒœã‚¿ãƒ³ */
.form-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.form-buttons input[type="submit"],
.form-buttons input[type="reset"] {
  padding: 10px 30px;
  font-size: 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Cormorant Garamond', serif;
}

.form-buttons input[type="submit"] {
  background-color: #333;
  color: #fff;
}

.form-buttons input[type="submit"]:hover {
  background-color: #555;
}

.form-buttons input[type="reset"] {
  background-color: #eee;
  color: #333;
}

.form-buttons input[type="reset"]:hover {
  background-color: #ddd;
}

/* ã‚¹ãƒžãƒ›å¯¾å¿œ */
@media (max-width: 767px) {
  .contact-page {
    padding: 0 15px;
  }

  .form-buttons {
    flex-direction: column;
    align-items: center;
  }

  .form-buttons input {
    width: 100%;
    max-width: 300px;
  }
}


.recruit-entry-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title .ja {
  font-size: 20px;
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.section-title .en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  letter-spacing: 1px;
}

.entry-form {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 40px;
}

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

.form-label {
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.required {
  color: #c00;
  font-size: 12px;
  margin-left: 6px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
}

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

.form-actions {
  text-align: center;
  margin-top: 30px;
}

.submit-btn {
  background: linear-gradient(135deg, #00257d, #0043ca);
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.submit-btn:hover {
  background: linear-gradient(135deg, #0043ca, #5c80ff);
}

@media screen and (max-width: 767px) {
  .entry-form {
    padding: 30px 20px;
  }
  .section-title .en {
    font-size: 28px;
  }
  .submit-btn {
    width: 100%;
  }
}

</pre></body></html>