@charset "UTF-8";
/**
 * uaplus.css version 0.0.1
 */
/**
 * Different box model
 * 
 * We use the traditional box model, where the padding and border 
 * of the element is drawn inside and not outside the specified 
 * width and height. That makes combining relative and absolute 
 * units in properties like <code>inline-size</code> and 
 * <code>block-size</code> easier.
 * 
 * See https://en.wikipedia.org/wiki/CSS_box_model
 */
*,
*::after,
*::before {
  box-sizing: border-box;
}

/**
 * Improve focus styles
 *
 * Add spacing between content and its focus outline.
 */
:focus-visible {
  outline-offset: 3px;
}

/**
 * Disable text size adjustment
 * 
 * To improve readability on non-mobile optimized websites, browsers
 * like mobile Safari increase the default font size when you switch
 * a website from portrait to landscape. We don't want that for our 
 * optimized sites.
 *
 * See https://kilianvalkhof.com/2022/css-html/your-css-reset-needs-text-size-adjust-probably/
 */
:where(html) {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
       text-size-adjust: none;
}

/**
 * Increase line height
 *
 * Long paragraphs are easier to read if the line height is higher.
 */
:where(html) {
  line-height: 1.5;
}

/**
 * Add scrollbar gutter
 *
 * Prevent the page from “jumping” when switching from a long to a short page.
 *
 */
:where(html) {
  scrollbar-gutter: stable;
}

/**
 * Remove UA styles for h1s nested in sectioning content
 *
 * Nesting h1s in section, articles, etc., shouldn't influence the 
 * styling of the heading since nesting doesn't influence 
 * semantics either.
 * 
 * See https://github.com/whatwg/html/issues/7867#issuecomment-2632395167
 * See https://github.com/whatwg/html/pull/11102
 * See https://html.spec.whatwg.org/#sections-and-headings
 */
:where(h1) {
  font-size: 2em;
  margin-block: 0.67em;
}

/**
 * Improve abbreviations with titles
 * 
 * The abbr element with the title isn't helpful regarding 
 * accessibility because support is inconsistent, and it's only 
 * accessible to some users. Still, it's commonly used. 
 * This rule shows a dotted underline on abbreviations in all 
 * browsers (there's a bug in Safari) and changes the cursor.
 * 
 * See https://adrianroselli.com/2024/01/using-abbr-element-with-title-attribute.html
 */
:where(abbr[title]) {
  cursor: help;
  text-decoration-line: underline;
  text-decoration-style: dotted;
}

/**
 * Optimize mark element in Forced Colors Mode
 *
 * The colors of the mark element don't change in Forced Colors Mode,
 * which can be problematic. Use system colors instead.
 * 
 * See https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
 */
@media (forced-colors: active) {
  mark {
    color: HighlightText;
    background-color: Highlight;
  }
}
/**
 * Announce del, ins, and s to screen readers
 * 
 * With the exception of NVDA (2024.4.2), which announces "deletion",
 * none of the common screen readers announces the <s> element.
 * Voice Over on macOS and iOS and Narrator don't announce 
 * <ins> and <del>. Usually, screen readers not announcing text-level
 * semantics is something we just accept, but devs using elements 
 * like <s> without knowing that they may not convey semantics is a 
 * common issue. We announce the start and end of stricken, inserted,
 * and deleted content with pseudo-elements. For languages other 
 * than English, you should provide translations, e.g. :lang(de) 
 * :where(s::before) { content: "Durchgestrichener Text Beginn "; }
 * 
 * See https://adrianroselli.com/2017/12/tweaking-text-level-styles.html
 */
:where(del, ins, s)::before,
:where(del, ins, s)::after {
  clip-path: inset(100%);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  content: "test";
}

:where(s)::before {
  content: "stricken text start ";
}

:where(s)::after {
  content: " stricken text end";
}

:where(del)::before {
  content: "deletion start ";
}

:where(del)::after {
  content: " deletion end";
}

:where(ins)::before {
  content: "insertion start ";
}

:where(ins)::after {
  content: " insertion end";
}

/**
 * Avoid overflow caused by embedded content
 * 
 * Ensure that embedded content (audio, video, images, etc.) 
 * doesn't overflow its container.
 */
:where(audio, iframe, img, svg, video) {
  max-block-size: 100%;
  max-inline-size: 100%;
}

/**
 * Prevent fieldsets from causing overflow
 *
 * Reset the default `min-inline-size: min-content` to prevent
 * children from stretching fieldsets
 *
 * See https://github.com/twbs/bootstrap/issues/12359
 * and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
 */
:where(fieldset) {
  min-inline-size: 0;
}

/**
 * Turn labels into block elements
 * 
 * Labels for inputs, selects, and textarea should be block 
 * elements.
 */
:where(label):has(+ :where(textarea, input, select)) {
  display: block;
}

/**
 * Increase the block-size of textareas
 *
 * The default height of textareas is small. We increase it a bit.
 */
:where(textarea:not([rows])) {
  min-block-size: 6em;
}

/**
 * Inherit font styling in form elements
 * 
 * buttons, inputs, selects, and textarea should have the same font
 * family and size as the rest of the page.
 */
:where(button, input, select, textarea) {
  font-family: inherit;
  font-size: inherit;
}

/**
 * Normalize search input styles
 *  
 * Remove the rounded corners of search inputs on macOS and IOS 
 * and normalize the background color
 */
:where([type=search]) {
  -webkit-appearance: textfield;
}

/* iOS only */
@supports (-webkit-touch-callout: none) {
  :where([type=search]) {
    border: 1px solid -apple-system-secondary-label;
    background-color: canvas;
  }
}
/**
 * Maintain direction in some input types
 * 
 * Some input types should remain left-aligned in right-to-left
 * languages,but only if the value isn't empty because the 
 * placeholder should be right-aligned.
 *
 * See https://rtlstyling.com/posts/rtl-styling#form-inputs
 */
:where([type=tel], [type=url], [type=email], [type=number]):not(:-moz-placeholder) {
  direction: ltr;
}
:where([type=tel], [type=url], [type=email], [type=number]):not(:placeholder-shown) {
  direction: ltr;
}

/**
 * Improve table styling
 *  
 * With the default styling, tables are hard to scan. These rules 
 * add padding and collapsed borders.
 */
:where(table) {
  border-collapse: collapse;
  border: 1px solid;
}

:where(th, td) {
  border: 1px solid;
  padding: 0.25em 0.5em;
}

/**
 * Fading dialogs
 *  
 * Add fade in and fade out transitions for the dialog element
 * and backdrops
 */
:where(dialog)::backdrop {
  background: oklch(0% 0 0deg / 0.3);
}

:where(dialog),
:where(dialog)::backdrop {
  opacity: 0;
  transition: opacity 300ms ease-out, display 300ms allow-discrete, overlay 300ms allow-discrete;
}

:where(dialog[open]),
:where(dialog[open])::backdrop {
  opacity: 1;
}

@starting-style {
  :where(dialog[open]),
  :where(dialog[open])::backdrop {
    opacity: 0;
  }
}
/**
 * Increase specificity of [hidden]
 *  
 * Make it harder to accidentally unhide elements with the 
 * [hidden] attribute while still maintaining the until-found 
 * functionality.
 */
[hidden]:not([hidden=until-found]) {
  display: none !important;
}

.template.hubspotform .hs_kamoike_find_out_about_this_site_other span {
  font-size: 1rem;
  font-weight: normal;
}
.template.hubspotform .c-title-noImg {
  padding-bottom: 40px;
}
.template.hubspotform .hs-main-font-element,
.template.hubspotform .hs-error-msg {
  color: red;
  font-size: 0.85rem;
}
.template.hubspotform .hs-form-field {
  margin-bottom: 20px;
}
.template.hubspotform .hs-form-field.hs-form-field--hidden {
  display: none;
}
.template.hubspotform .hs-form-field.hs-form-field--hidden input {
  display: none;
}
.template.hubspotform .hs-form-field.hs-form-field--hidden label {
  display: none;
}
.template.hubspotform .hs-richtext {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #333;
}
.template.hubspotform .form-columns-0 .hs-richtext h2 {
  font-size: 1.6rem !important;
  color: #877637;
}
.template.hubspotform .form-columns-0 .hs-richtext h3 {
  font-size: 1.4rem !important;
  color: #877637;
}
.template.hubspotform .form-columns-0 .hs-richtext span {
  font-family: 游明朝, 游明朝体, YuMincho, Hiragino Mincho ProN W3, ヒラギノ明朝ProN W3, Hiragino Mincho ProN, HG明朝E, ＭＳＰ明朝, ＭＳ明朝, serif !important;
}
.template.hubspotform .legal-consent-container {
  height: 300px;
  overflow: auto;
  border: 1px solid #ccc;
  box-sizing: border-box;
  padding: 15px;
}
.template.hubspotform .p-form-guide {
  margin-bottom: 20px;
  font-size: 0.85rem;
}
.template.hubspotform .p-form-notice {
  margin-bottom: 20px;
  font-size: 0.85rem;
}
.template.hubspotform .p-form-notice span {
  color: red;
}
.template.hubspotform fieldset {
  margin-bottom: 30px;
}
.template.hubspotform input,
.template.hubspotform optgroup,
.template.hubspotform select,
.template.hubspotform textarea {
  background: #fff;
}
.template.hubspotform [id^=hsForm] {
  width: 100%;
  max-width: 1000px;
  padding: 40px;
  margin: 0 auto;
  background-color: #fff;
}
.template.hubspotform [class^=hs-form-] .input {
  margin-right: 0;
}
.template.hubspotform .hs_submit.hs-submit {
  text-align: center;
  padding: 30px 0;
}
.template.hubspotform [id^=hsForm] fieldset {
  max-width: inherit;
}
.template.hubspotform .hs-form-required {
  color: red;
}
.template.hubspotform .hs-field-desc {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 10px;
}
.template.hubspotform label span {
  display: inline-block;
  margin-bottom: 10px;
}
.template.hubspotform label {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: bold;
}
.template.hubspotform label.hs-form-checkbox-display,
.template.hubspotform label.hs-form-radio-display {
  font-size: 1rem;
  font-weight: normal;
}
.template.hubspotform select {
  box-sizing: border-box;
  border-radius: 0.2em;
  font-size: 1rem;
  line-height: 26px;
  border: 2px solid #ccc;
  margin-bottom: 0.75em;
  padding: 0.5em 0.5em;
  width: 100%;
}
.template.hubspotform .legal-consent-container .hs-form-booleancheckbox-display > span {
  display: inline-block;
  margin-left: 0px;
}
.template.hubspotform .legal-consent-container .hs-richtext {
  font-size: 0.85rem;
  margin-bottom: 30px;
}
.template.hubspotform .form-columns-2 .input {
  width: 80%;
}
.template.hubspotform .form-columns-1 input[type=radio],
.template.hubspotform .form-columns-1 input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  vertical-align: text-top;
}
.template.hubspotform input[type=number].hs-input,
.template.hubspotform input[type=text].hs-input,
.template.hubspotform input[type=email].hs-input,
.template.hubspotform input[type=tel].hs-input,
.template.hubspotform fieldset.form-columns-1 textarea.hs-input,
.template.hubspotform fieldset.form-columns-1 select.hs-input {
  width: 100%;
}
.template.hubspotform input[type=text],
.template.hubspotform input[type=tel],
.template.hubspotform input[type=number],
.template.hubspotform input[type=email] {
  box-sizing: border-box;
  border-radius: 0.2em;
  font-size: 1rem;
  line-height: 26px;
  border: 2px solid #ccc;
  margin-bottom: 0.75em;
  padding: 0.5em 0.5em;
  width: 100%;
}
.template.hubspotform textarea {
  box-sizing: border-box;
  border-radius: 0.2em;
  font-size: 1rem;
  line-height: 26px;
  border: 2px solid #ccc;
  margin-bottom: 0.75em;
  padding: 0.5em 0.5em;
  width: 100%;
}
.template.hubspotform input[type=submit] {
  background-color: #007bff;
  color: white;
  border: none;
  width: 150px;
  padding: 0.5em 1em;
  border-radius: 0.2em;
  cursor: pointer;
  text-align: center;
}/*# sourceMappingURL=hubspotform.css.map */