@charset "UTF-8";
@layer reset {
  html,
  body,
  p,
  ol,
  ul,
  li,
  dl,
  dt,
  dd,
  blockquote,
  figure,
  fieldset,
  form,
  legend,
  textarea,
  pre,
  iframe,
  hr,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    padding: 0;
    margin: 0;
  }
}
html,
body {
  overflow-x: hidden;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  min-height: 100%;
}

main {
  display: block;
}

address,
em {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

a {
  overflow-wrap: anywhere;
}

*,
::before,
::after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

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

input,
button,
select,
textarea {
  font: inherit;
  line-height: var(--wp--custom--line-height--small);
  color: inherit;
  -webkit-appearance: none;
          appearance: none;
  background-color: transparent;
  border: 0;
  border-radius: 0;
}

input[type=file]::-webkit-file-upload-button {
  font: inherit;
  color: inherit;
}

button,
[type=button],
[type=submit],
[type=reset] {
  cursor: pointer;
}

label {
  display: block;
}

textarea {
  display: block;
  resize: vertical;
}

::placeholder {
  color: var(--wp--preset--color--gray-light);
}

[type=text],
[type=password],
[type=email],
[type=tel],
[type=search],
[type=number],
textarea,
select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--wp--preset--color--gray-light);
}

[type=radio],
[type=checkbox] {
  position: absolute;
  opacity: 0;
}
[type=radio] + span,
[type=checkbox] + span {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 15px;
  font-weight: var(--wp--custom--font-weight--base);
  line-height: 1.3;
  vertical-align: middle;
  cursor: pointer;
}
[type=radio] + span::before, [type=radio] + span::after,
[type=checkbox] + span::before,
[type=checkbox] + span::after {
  position: absolute;
  line-height: 1;
  content: "";
}
[type=radio] + span::before,
[type=checkbox] + span::before {
  left: 0;
  background-color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--gray-light);
}
[type=radio] + span::after,
[type=checkbox] + span::after {
  display: none;
}
[type=radio]:checked + span::after,
[type=checkbox]:checked + span::after {
  display: block;
}

[type=radio] + span::before {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}
[type=radio]:checked + span::after {
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background-color: var(--wp--preset--color--primary);
  border-radius: 50%;
}

[type=checkbox] + span::before {
  width: 20px;
  height: 20px;
}
[type=checkbox]:checked + span::after {
  top: 0;
  left: 6px;
  width: 8px;
  height: 16px;
  border-right: 3px solid var(--wp--preset--color--primary);
  border-bottom: 3px solid var(--wp--preset--color--primary);
  transform: rotate(45deg);
}

.header {
  padding-inline: var(--wp--custom--spacing--gutter);
}
.header__logo {
  font-family: var(--wp--preset--font-family--en);
  font-size: 30px;
}
.header__logo a {
  text-decoration: none;
}

@media (min-width: 768px) {
  .header {
    display: flex;
    justify-content: space-between;
    padding-block: 20px;
  }
  .header__content {
    display: flex;
    gap: 1.5em;
  }
}
.container {
  width: min(100% - var(--wp--custom--spacing--gutter) * 2, var(--wp--style--global--content-size));
  margin-inline: auto;
}
.container.--wide {
  width: min(100% - var(--wp--custom--spacing--gutter) * 2, var(--wp--style--global--wide-size));
}

.hamburger {
  position: fixed;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
}
.hamburger__line {
  position: relative;
  width: inherit;
  height: 2px;
  background-color: var(--wp--preset--color--black);
}
.hamburger__line::before, .hamburger__line::after {
  position: absolute;
  display: block;
  width: inherit;
  height: inherit;
  content: "";
  background-color: var(--wp--preset--color--black);
  transition: transform 0.3s;
}
.hamburger__line::before {
  top: -12px;
}
.hamburger__line::after {
  bottom: -12px;
}

.hamburger[aria-expanded=true] .hamburger__line {
  background-color: transparent;
}
.hamburger[aria-expanded=true] .hamburger__line::before, .hamburger[aria-expanded=true] .hamburger__line::after {
  background-color: var(--wp--preset--color--white);
}
.hamburger[aria-expanded=true] .hamburger__line::before {
  top: 0;
  transform: rotate(35deg);
}
.hamburger[aria-expanded=true] .hamburger__line::after {
  bottom: 0;
  transform: rotate(-35deg);
}

.breadcrumbs {
  padding: 0.25em 1em;
  padding-inline: var(--wp--custom--spacing--gutter);
  font-size: var(--wp--preset--font-size--small);
  line-height: var(--wp--custom--line-height--small);
  text-align: right;
  border-top: 5px solid var(--wp--preset--color--gray-bg);
}

.globalnav__list {
  display: flex;
  gap: 1em;
  list-style: none;
}
.globalnav__list a {
  color: inherit;
  text-decoration: none;
}

.page-header__title {
  font-size: clamp(28px, 23.61px + 1.17vw, 40px);
}

.pagination ul {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding-left: 0;
  list-style: none;
}
.pagination a,
.pagination span {
  display: grid;
  place-items: center;
  width: 30px;
  aspect-ratio: 1;
}
.pagination a {
  text-decoration: none;
}
.form__field-container {
  display: flex;
  gap: 10px;
  width: 100%;
}
.form__field {
  width: 100%;
}
.form__privacy {
  padding: 30px;
  margin-top: var(--wp--style--block-gap);
  text-align: center;
  border: 1px solid var(--wp--preset--color--gray-light);
}
.form__privacy-text {
  margin-bottom: 20px;
}
.form__submit {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  margin-top: var(--wp--style--block-gap);
}
.form-items {
  border-bottom: 1px dashed var(--wp--preset--color--gray-light);
}
.form-items__title {
  background-color: var(--wp--preset--color--gray-bg);
}
.form-items__label {
  font-size: var(--wp--preset--font-size--large);
  font-weight: var(--wp--custom--font-weight--bold);
}
.form-items__required {
  margin-left: 0.5em;
  color: var(--wp--preset--color--red);
}
.form-items__note {
  position: relative;
  padding-left: 1em;
  margin-top: 5px;
  font-size: var(--wp--preset--font-size--small);
  line-height: 1.3;
}
.form-items__note::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "＊";
}
.form-items__zip {
  display: flex;
  gap: 5px;
  align-items: center;
}
.form-items__zip input {
  width: 8em;
}
.form-items__select-wrapper {
  position: relative;
  display: inline-block;
}
.form-items__select-wrapper::after {
  position: absolute;
  top: 18px;
  right: 12px;
  width: 0;
  height: 0;
  pointer-events: none;
  content: "";
  border-top: 10px solid var(--wp--preset--color--black);
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
}
.form-items__select-wrapper select {
  padding-right: 30px;
}
.form-items__sub + .form-items__sub {
  margin-top: 20px;
}
.form-items__sub-label {
  margin-bottom: 5px;
  font-size: var(--wp--preset--font-size--large);
  font-weight: var(--wp--custom--font-weight--bold);
}

@media (max-width: 999px) {
  .form-items__title {
    padding: 10px 20px;
    border-top: 1px dashed var(--wp--preset--color--gray-light);
  }
  .form-items__content {
    padding: 20px;
  }
}
@media (min-width: 1000px) {
  .form-items {
    display: grid;
    grid-template-columns: 220px 1fr;
  }
  .form-items__title, .form-items__content {
    border-top: 1px dashed var(--wp--preset--color--gray-light);
  }
  .form-items__title {
    padding: 20px;
    background-color: var(--wp--preset--color--gray-bg);
  }
  .form-items__content {
    padding: 20px 0 20px 20px;
  }
}
.wpcf7-radio,
.wpcf7-checkbox {
  display: grid;
  gap: 5px;
}

.wpcf7-list-item {
  margin: 0 5px;
}

.wpcf7-not-valid-tip {
  margin-top: 5px;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output {
  padding: 20px 30px;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--wp--preset--color--primary);
}

.wpcf7 form.invalid .wpcf7-response-output {
  border-color: var(--wp--preset--color--red);
}

.wpcf7-spinner {
  display: none !important;
}

@media (max-width: 767px) {
  .u-md-only {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .u-md-1-only {
    display: none !important;
  }
}
@media (max-width: 999px) {
  .u-lg-only {
    display: none !important;
  }
}
@media (min-width: 1000px) {
  .u-lg-1-only {
    display: none !important;
  }
}
@media (max-width: 1399px) {
  .u-xl-only {
    display: none !important;
  }
}
@media (min-width: 1400px) {
  .u-xl-1-only {
    display: none !important;
  }
}
.entry-content {
  padding-inline: var(--wp--custom--spacing--gutter);
}
.entry-content::after {
  display: table;
  clear: both;
  content: "";
}
.entry-content > *:not(.alignwide):not(.alignfull) {
  max-width: var(--wp--style--global--content-size);
}
.entry-content *:where(.alignwide) {
  max-width: var(--wp--style--global--wide-size) !important;
}
.entry-content *:where(.alignwide) > :where(*) {
  max-width: 100%;
}
.entry-content > *:not(.alignfull) {
  max-width: var(--wp--style--global--content-size);
  margin-inline: auto;
}
.entry-content > *.alignfull {
  padding-inline: var(--wp--custom--spacing--gutter);
  margin-inline: calc(var(--wp--custom--spacing--gutter) * -1);
}

.wp-block-heading + .wp-block-heading {
  margin-block-start: var(--wp--style--block-gap);
}

.wp-block-group.is-layout-flex .wp-block-heading {
  margin-block-start: 0;
}

.wp-block-table table {
  border-spacing: 0;
}
.wp-block-table table th {
  font-weight: var(--wp--custom--font-weight--bold);
}
.wp-block-table table th,
.wp-block-table table td {
  padding: 15px 20px;
  border: 1px solid var(--wp--preset--color--gray-light);
}
.wp-block-table figcaption {
  text-align: left;
}

@media (max-width: 999px) {
  .wp-block-table[class*=scroll] {
    overflow-x: auto;
  }
  .wp-block-table[class*=scroll]::-webkit-scrollbar {
    height: 12px;
  }
  .wp-block-table[class*=scroll]::-webkit-scrollbar-track {
    background: var(--wp--preset--color--gray-bg);
  }
  .wp-block-table[class*=scroll]::-webkit-scrollbar-thumb {
    background: var(--wp--preset--color--gray-light);
    border-radius: 10px;
  }
  .wp-block-table[class*=scroll] table {
    width: max(var(--wp--style--global--content-size), 100%);
  }
}