@charset "UTF-8";
/* =============================================================
   大成ロテック お問い合わせフォーム
   ============================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #333;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul,
li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

.inner {
  max-width: 960px;
  width: 92%;
  margin: 0 auto;
}

.header {
  border-bottom: 1px solid #e5e5e5;
  padding: 16px 0;
  margin: 0 auto 40px;
}
.header__logo {
  line-height: 1;
}
.header__logo img {
  width: auto;
  height: 102px;
}
@media screen and (max-width: 750px) {
  .header__logo img {
    height: 57px;
  }
}

.footer {
  margin: 60px auto 0;
  padding: 24px 0;
  background-color: #012169;
  text-align: center;
}
.footer small {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.04em;
}

main {
  padding: 0 0 40px;
}

section > h2 {
  max-width: 960px;
  width: 92%;
  margin: 0 auto 28px;
  padding-left: 16px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  border-left: 6px solid #012169;
}
@media screen and (max-width: 750px) {
  section > h2 {
    font-size: 19px;
    margin-bottom: 20px;
  }
}

.form_content {
  max-width: 960px;
  width: 92%;
  margin: 0 auto;
}

.form_text {
  line-height: 1.9;
  margin: 16px 0;
}
.form_text:empty {
  margin: 0;
}

.form_box {
  display: block;
  background-color: #fff;
  margin: 24px 0;
  padding: 0;
}
.form_box.inner {
  width: 100%;
  max-width: none;
}

.form_list {
  margin: 0 0 8px;
  padding: 0;
}

article.resp ul li.clr {
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
article.resp ul li.clr:first-child {
  border-top: 1px solid #eee;
}
@media screen and (max-width: 750px) {
  article.resp ul li.clr {
    padding: 16px 0;
  }
}

article.resp ul li > label {
  font-weight: 600;
  color: #333;
  padding-top: 9px;
}
@media screen and (max-width: 750px) {
  article.resp ul li > label {
    padding-top: 0;
    margin-bottom: 6px;
  }
}
article.resp ul li > label::after {
  content: "任意";
  display: inline-block;
  margin-left: 8px;
  padding: 1px 8px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
  color: #fff;
  background-color: #6a6d70;
  border-radius: 3px;
  vertical-align: 2px;
}
article.resp ul li > label.required::after {
  content: "必須";
  color: #fff;
  background-color: #e97140;
}

.f_comt,
.f_comb {
  color: #6a6d70;
  font-size: 12px;
  line-height: 1.6;
}
.f_comt:empty,
.f_comb:empty {
  display: none;
}

article.resp em {
  display: block;
  margin: 0 0 8px;
  color: #d61f1f;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.7;
}
article.resp em:empty {
  display: none;
}

.input {
  width: 70%;
}
@media screen and (max-width: 750px) {
  .input {
    width: 100%;
  }
}
.input input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]),
.input select,
.input textarea {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  color: #333;
  font-size: 15px;
  font-family: inherit;
  line-height: 1.5;
  height: 44px;
  padding: 0 12px;
  margin: 4px 0;
  max-width: 100%;
}
.input input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]):focus,
.input select:focus,
.input textarea:focus {
  outline: none;
  border-color: #012169;
  box-shadow: 0 0 0 3px rgba(1, 33, 105, 0.12);
}
.input select {
  appearance: auto;
  -webkit-appearance: auto;
  cursor: pointer;
}
.input textarea {
  display: block;
  width: 100%;
  height: auto;
  min-height: 130px;
  padding: 10px 12px;
  line-height: 1.7;
  resize: vertical;
}
.input input::placeholder,
.input textarea::placeholder {
  color: #aaa;
}
.input input[type="text"],
.input input[type="email"],
.input input[type="password"],
.input select {
  width: 100%;
}
.input input[type="number"] {
  width: auto;
}
.input select[name*="-h"],
.input select[name*="-m"] {
  width: auto;
}
.input span {
  display: inline-flex;
  align-items: center;
  width: calc(50% - 4px);
  vertical-align: top;
}
.input span:first-of-type {
  padding-right: 4px;
}
.input span:nth-of-type(2) {
  padding-left: 4px;
}
.input span input {
  flex: 1;
  min-width: 0;
  width: auto;
}
.input:has(input + input) input[size="6"],
.input:has(input + input) input[size="8"] {
  width: auto;
  max-width: 28%;
}
.input:has(input + input) input[size="10"] {
  width: calc((100% - 6em) / 3);
}
.input:has(input + input) input[size="20"] {
  width: calc(40% - 1em);
}
.input:has(input + input) input[size="40"] {
  width: calc(60% - 2em);
}
.input:has(input + img) input, .input:has(input + input[type="button"]) input {
  width: auto;
}
.input p {
  margin: 8px 0;
}
.input p:has(input[name*="-pn"]) input, .input p:has(select[name*="-pf"]) select {
  width: auto;
}
.input p:has(input[name*="-ct"]) input, .input p:has(input[name*="-no"]) input, .input p:has(input[name*="-bd"]) input {
  width: 100%;
}

.input > label,
.policy_check > label {
  display: inline-flex;
  align-items: center;
  margin: 0 16px 4px 0;
  cursor: pointer;
}

input[type="radio"],
input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0 6px 0 0;
  accent-color: #00a877;
  cursor: pointer;
}

.input input[type="button"],
.input button {
  display: inline-block;
  width: auto;
  padding: 0 16px;
  height: 38px;
  margin: 0 0 0 6px;
  color: #fff;
  background-color: #6a6d70;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
}
@media (hover: hover) {
  .input input[type="button"]:hover,
  .input button:hover {
    opacity: 0.85;
  }
}

li.label {
  margin: 24px 0 0;
  padding: 0;
  border: none;
  font-weight: 700;
  color: #333;
}
li.label::after {
  content: none;
}
li.label:empty {
  display: none;
}

.label_message {
  margin: 4px 0 0;
  color: #6a6d70;
  font-size: 14px;
}
.label_message:empty {
  display: none;
}

.policy {
  margin: 32px 0;
  padding: 28px 32px;
  background-color: #f5f5f5;
  border-radius: 6px;
}
@media screen and (max-width: 750px) {
  .policy {
    padding: 20px;
  }
}
.policy h2 {
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin: 0 0 12px;
}
.policy .policy_html {
  height: 180px;
  overflow-y: auto;
  padding: 16px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.9;
  color: #6a6d70;
}
.policy .policy_check {
  text-align: center;
  margin: 20px auto 0;
}
.policy .policy_check label {
  justify-content: center;
  font-weight: 600;
}
.policy .policy_check label::after {
  content: "必須";
  display: inline-block;
  margin-left: 8px;
  padding: 1px 8px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
  color: #fff;
  background-color: #e97140;
  border-radius: 3px;
}

.submit_btn {
  position: relative;
  text-align: center;
  margin: 36px auto 0;
  vertical-align: top;
}
article.resp .submit_btn input[type="submit"],
.submit_btn input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 52px;
  margin: 0 auto;
  padding: 0 24px;
  color: #fff;
  background-color: #012169;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  article.resp .submit_btn input[type="submit"]:hover,
  .submit_btn input[type="submit"]:hover {
    opacity: 0.85;
  }
}
article.resp .submit_btn input[type="button"] {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 52px;
  margin: 0 auto !important;
  padding: 0 24px;
  color: #012169;
  background-color: #fff;
  border: 2px solid #012169;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
@media (hover: hover) {
  article.resp .submit_btn input[type="button"]:hover {
    background-color: #f5f5f5;
  }
}
.submit_btn:has(input[type="submit"])::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.submit_btn:not(.span_3):not(.span_9) {
  max-width: 400px;
}

.submit_btn.span_3,
.submit_btn.span_9 {
  display: inline-block;
  width: 46%;
  max-width: 200px;
  vertical-align: top;
}
@media screen and (max-width: 750px) {
  .submit_btn.span_3,
  .submit_btn.span_9 {
    display: block;
    width: 100%;
    max-width: 400px;
  }
}

.submit_btn.span_3 {
  margin-right: 16px;
}
@media screen and (max-width: 750px) {
  .submit_btn.span_3 {
    margin-right: auto;
  }
}

.submit_btn.span_9 {
  margin-left: 16px;
}
@media screen and (max-width: 750px) {
  .submit_btn.span_9 {
    margin-left: auto;
    margin-top: 16px;
  }
}

article.resp ul.check_page li.clr > label {
  padding-top: 0;
}

article.resp .check_page .input {
  color: #333;
  padding-top: 0;
}
article.resp .check_page .input p {
  margin: 2px 0;
}

article.resp form:has(.check_page) {
  text-align: center;
}
article.resp form:has(.check_page) .check_page {
  text-align: left;
}

/*# sourceMappingURL=saaske.css.map */
