@charset "UTF-8";
/* @acab/reset.css  */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:root {
  --common-blue: #0f3668;
  --common-red: #b51022;
  --common-sans-serif: "Noto Sans JP","Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  --common-serif: "Noto Serif JP","Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

#form :is(input[type=text], input[type=number], input[type=date], input[type=email], input[type=tel], input[type=password], textarea, select) {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #bbb;
  border-radius: 4px;
}
#form :is(input[type=text], input[type=number], input[type=date], input[type=email], input[type=tel], input[type=password], textarea, select):not(select) {
  background: #fafafa;
}
#form :is(input[type=text], input[type=number], input[type=date], input[type=email], input[type=tel], input[type=password], textarea, select)::-moz-placeholder {
  color: #999;
}
#form :is(input[type=text], input[type=number], input[type=date], input[type=email], input[type=tel], input[type=password], textarea, select)::placeholder {
  color: #999;
}
#form textarea {
  height: 120px;
}
#form .select {
  position: relative;
}
#form .select::before {
  content: "";
  height: 5px;
  width: 10px;
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
          clip-path: polygon(50% 0, 100% 100%, 0 100%);
  display: block;
  position: absolute;
  top: calc(50% - 3px);
  right: 10px;
  background: #111;
  transform: rotate(180deg);
}
#form .select select {
  text-align: center;
}
#form :is(input[type=radio], input[type=checkbox], select) {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
#form ul.form_list {
  max-width: 760px;
  margin: 0 auto;
  list-style: none;
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
}
#form ul.form_list > li {
  padding: 10px 30px 30px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#form ul.form_list > li:first-child {
  border-top: none;
}
#form ul.form_list > li .ttl label span {
  font-weight: 600;
}
#form ul.form_list > li .ttl label.required::after {
  content: "必須";
  background: #b51022;
  color: #fff;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0 0.25em;
  margin-left: 10px;
}
#form ul.form_list > li .input .radio_set .wpcf7-radio {
  display: flex;
  border-radius: 8px;
  background: #f5f5f5;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.1);
}
#form ul.form_list > li .input .radio_set .wpcf7-radio .wpcf7-list-item {
  flex: 1;
  margin-left: -1px;
}
#form ul.form_list > li .input .radio_set .wpcf7-radio .wpcf7-list-item:first-child {
  margin-left: 0;
}
#form ul.form_list > li .input .radio_set .wpcf7-radio .wpcf7-list-item:first-child .wpcf7-list-item-label {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
#form ul.form_list > li .input .radio_set .wpcf7-radio .wpcf7-list-item:last-child .wpcf7-list-item-label {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
#form ul.form_list > li .input .radio_set .wpcf7-radio .wpcf7-list-item label {
  display: block;
}
#form ul.form_list > li .input .radio_set .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
  width: 100%;
  line-height: 2.5em;
  display: inline-block;
  text-align: center;
  border: 1px solid #ccc;
  transition: background 0.2s;
}
#form ul.form_list > li .input .radio_set .wpcf7-radio .wpcf7-list-item label:hover input[type=radio] + .wpcf7-list-item-label {
  color: #b51022;
}
#form ul.form_list > li .input .radio_set .wpcf7-radio .wpcf7-list-item label input[type=radio]:checked + .wpcf7-list-item-label {
  background: #fff;
  color: #111;
  font-weight: 600;
}
#form ul.form_list > li .input .checkbox_set .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#form ul.form_list > li .input .checkbox_set .wpcf7-checkbox .wpcf7-list-item label {
  display: block;
}
#form ul.form_list > li .input .checkbox_set .wpcf7-checkbox .wpcf7-list-item label:hover input[type=checkbox] + span {
  color: #b51022;
}
#form ul.form_list > li .input .checkbox_set .wpcf7-checkbox .wpcf7-list-item label input[type=checkbox] + span {
  width: 100%;
  display: inline-block;
  line-height: 2.5em;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-align: center;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.1);
  background: #f5f5f5;
  transition: background 0.2s;
}
#form ul.form_list > li .input .checkbox_set .wpcf7-checkbox .wpcf7-list-item label input[type=checkbox]:checked + span {
  background: #fff;
  box-shadow: none;
  font-weight: 600;
  color: #111;
}
#form ul.form_list > li :is(ul.name_set, ul.adr_set) {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
#form ul.form_list > li ul.name_set {
  flex-direction: row;
  gap: 20px;
}
#form ul.form_list > li ul.name_set li {
  flex: 1;
}
#form ul.form_list > li ul.adr_set {
  flex-direction: column;
  gap: 10px;
}
#form ul.form_list > li ul.adr_set li.zip input {
  max-width: 120px;
}
#form ul.form_list > li.submit {
  padding: 40px 30px 60px;
}
#form ul.form_list > li.submit :is(button[type=sibmit], input[type=submit]) {
  background: #b51022;
  color: #fff;
  border: none;
  height: 2.5em;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
}
#form ul.form_list > li.submit :is(button[type=sibmit], input[type=submit]):hover {
  opacity: 0.8;
}

form.sent ul.form_list,
span.wpcf7-not-valid-tip,
div.wpcf7-response-output,
div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing,
div.screen-reader-response {
  display: none !important;
}

form.invalid span.wpcf7-not-valid-tip,
form.invalid div.wpcf7-response-output,
form.sent div.wpcf7-response-output {
  display: block !important;
}

form.sent div.wpcf7-response-output {
  padding: 100px 0 200px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .onlySP {
    display: none;
  }
}
@media screen and (max-width: 767.98px) {
  .onlyPC {
    display: none;
  }
}/*# sourceMappingURL=form.css.map */