@charset "utf=8";

.top-image {
  width: 70%;
  height: 520px;
  overflow: hidden;
}

.top-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.company-profile,
.company-profile-container .company-message {
  height: auto !important;
}

.company-profile-container {
  padding: 80px 8% 50px;
}

.contact {
  padding: 50px 80px 80px;
}

.company-profile-container .about-title {
  padding-bottom: 40px;
}

.company-profile-container .company-message p {
  line-height: 2.3em;
  font-size: 18px;
  padding-bottom: 72px;
}

.company-profile {
  display: flex;
  align-items: center;
}

.company-profile p {
  flex: 1;
  margin: 0;
  padding: 0 1.5rem;
}

.company-profile p:first-child {
  position: relative;
}

.company-profile p:first-child::after {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  right: 0;
  width: 1px;
  background-color: #333;
}

.form-area {
  background-color: #e5e5e5;
  border: 1px solid #aaa;
  margin-top: 25px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
}

.form-area dt {
  width: 200px;
  padding: 15px 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
}

.form-area dt .required::after {
  content: '必須';
  font-size: 12px;
  color: #eb4f32;
  margin-left: 10px;
}

.form-area dd {
  width: calc(100% - 200px);
  padding: 15px 0;
}

.input-text {
  width: 100%;
  max-width: 280px;
  height: 40px;
  padding: 0 10px;
}

.required,
.input-text,
.select-box,
.message {
  font-size: 16px;
}

.message {
  width: 100%;
  height: 260px;
  padding: 10px;
  line-height: 1.5;
  margin-bottom: 60px;
}

.select-box {
  width: 200px;
  height: 40px;
}

.radio-button {
  display: block;
  margin-top: 20px;
}

.radio-button:first-child {
  margin-top: 0;
}

.radio-button input {
  margin-right: 8px;
}

.confirm-text {
  font-size: 18px;
  line-height: 22px;
  margin-top: 30px;
}

.submit-button {
  background-color: #f4dd64;
  min-width: 180px;
  line-height: 48px;
  border-radius: 24px;
  font-size: 18px;
  font-family: inherit;
  text-align: center;
  margin-top: 20px;
  cursor: pointer;
  border: none;
}

.submit-button:hover {
  background-color: #d8b500;
}