.contact-intro {
  font-size: 16px;
  color: #444444;
  line-height: 1.9;
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.contact-options {
  padding: 64px 0 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: #f7f8fc;
  border: 1px solid #e5e7eb;
  padding: 40px;
  text-align: center;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.contact-card:hover {
  -webkit-box-shadow: 0 6px 24px rgba(19, 35, 129, 0.1);
          box-shadow: 0 6px 24px rgba(19, 35, 129, 0.1);
}
.contact-card__icon {
  font-size: 40px;
  color: #132381;
  margin-bottom: 16px;
}
.contact-card h2 {
  font-size: 18px;
  font-weight: 700;
  color: #0d1035;
  margin-bottom: 16px;
}
.contact-card p {
  font-size: 16px;
  color: #555555;
  line-height: 1.8;
}
.contact-card__tel a {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #132381;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 8px;
}
.contact-card__tel a:hover {
  color: #0d1035;
}
.contact-card__hours {
  font-size: 14px;
  color: #9ca3af;
}
.contact-card__note {
  font-size: 14px;
  color: #9ca3af;
  margin-top: 8px;
}

.contact-form-section {
  padding: 88px 0;
}

.contact-form {
  max-width: 760px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0d1035;
  margin-bottom: 8px;
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  border: 2px solid #e5e7eb;
  background: #f7f8fc;
  color: #0d1035;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #132381;
  background: #ffffff;
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group--checkbox .checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
}
.form-group--checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #132381;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  vertical-align: middle;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.required {
  font-size: 11px;
  font-weight: 700;
  background: #EB6403;
  color: #ffffff;
  padding: 2px 8px;
  margin-left: 8px;
  vertical-align: middle;
}

.form-radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.radio-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}
.radio-label input[type=radio] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #132381;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  vertical-align: middle;
}

.form-submit {
  text-align: center;
  margin-top: 40px;
}

.access-section {
  padding: 88px 0;
  background: #f7f8fc;
}

.access-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 1024px) {
  .access-inner {
    grid-template-columns: 1fr;
  }
}

.access-info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.access-info dt {
  font-size: 14px;
  font-weight: 700;
  color: #132381;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.access-info dt:not(:first-of-type) {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}
.access-info dd {
  font-size: 15px;
  color: #0d1035;
  line-height: 1.8;
}
.access-info dd a {
  color: #132381;
  text-decoration: underline;
}

.access-map {
  background: #e5e7eb;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.access-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #9ca3af;
  gap: 12px;
  aspect-ratio: 16/9;
}
.map-placeholder i {
  font-size: 48px;
}
.map-placeholder p {
  font-size: 14px;
}/*# sourceMappingURL=contact.css.map */