@charset "UTF-8";
/*
Theme Name: Barom Theme
Description: 超シンプルなFSEテーマ
Version: 1.0.0
*/
:root {
  --content-width: 1200px;
  --full-width: 100vw;
}

body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

* {
  max-width: 100vw;
  box-sizing: border-box;
}

.hamburger-menu-v2__overlay {
  max-width: 100vw;
  width: 100%;
  overflow-x: hidden;
}

.hamburger-menu-v2__content {
  max-width: 100vw;
  width: 100%;
  overflow-x: hidden;
}

.home main {
  max-width: 100vw;
  width: 100%;
  overflow-x: hidden;
}

.wp-block-group {
  overflow-x: hidden;
}

.wp-block-group.is-layout-constrained {
  padding: 1rem !important;
}
.wp-block-group.is-layout-constrained.no-padding {
  padding: 0 !important;
}

.wp-block-group.alignfull,
.wp-block-group.alignwide {
  max-width: 100vw;
  width: 100%;
  overflow-x: hidden;
}

:root {
  --content-width: 1200px;
  --full-width: 100vw;
}

body {
  color: var(--barom-text-color, #333333);
  font-family: var(--barom-base-font-family, "'Times New Roman', 'Times', serif");
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin-top: 0;
  color: var(--barom-heading-color, #333333);
  font-family: var(--barom-heading-font-family, "'Times New Roman', 'Times', serif");
}

h1 {
  font-size: var(--barom-heading-size-h1, 2.5em);
}

h2 {
  font-size: var(--barom-heading-size-h2, 2em);
}

h3 {
  font-size: var(--barom-heading-size-h3, 1.5em);
}

h4 {
  font-size: var(--barom-heading-size-h4, 1.25em);
}

.wp-block-paragraph {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--barom-text-color, #333333);
}

p {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--barom-text-color, #333333);
}

a {
  color: var(--barom-link-color, #007cba);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--barom-link-hover-color, #ff6b35);
}

strong {
  font-weight: 700;
  color: var(--barom-heading-color, #333333);
}

em {
  font-style: italic;
}

mark {
  background: linear-gradient(to right, var(--barom-accent-color, #ff6b35) 0%, var(--barom-brand-color, #007cba) 100%);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 50%;
}

small {
  font-size: 0.875rem;
  color: #666;
}

sub, sup {
  font-size: 0.75rem;
  line-height: 0;
}

sub {
  vertical-align: sub;
}

sup {
  vertical-align: super;
}

.text-shadow-black-light {
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.text-shadow-black-medium {
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.text-shadow-black-strong {
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.7);
}

.text-shadow-white-light {
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
}

.text-shadow-white-medium {
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.text-shadow-white-strong {
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
}

.btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 0.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn--primary {
  background-color: var(--barom-brand-color, #007cba);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(var(--barom-brand-color, #007cba), 0.3);
}
.btn--primary:hover {
  background-color: #0066a3;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(var(--barom-brand-color, #007cba), 0.4);
}
.btn--primary:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(var(--barom-brand-color, #007cba), 0.2);
}
.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(var(--barom-brand-color, #007cba), 0.3);
}
.btn--secondary {
  background-color: #e2e8f0;
  color: #4a5568;
  box-shadow: 0 4px 12px rgba(226, 232, 240, 0.3);
}
.btn--secondary:hover {
  background-color: #cbd5e0;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(226, 232, 240, 0.4);
}
.btn--accent {
  background-color: var(--barom-accent-color, #ff6b35);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(var(--barom-accent-color, #ff6b35), 0.3);
}
.btn--accent:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(var(--barom-accent-color, #ff6b35), 0.4);
}

.wp-block-button .wp-block-button__link {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease ease;
  background-color: var(--barom-brand-color, #007cba);
  color: #ffffff;
  padding: 1rem 2rem;
  font-size: var(--barom-base-font-size, 1em);
  border-radius: 8px;
  border: 2px solid var(--barom-brand-color, #007cba);
  transition: all 0.3s ease;
}
.wp-block-button .wp-block-button__link:hover {
  filter: brightness(0.9);
  color: #ffffff;
}
.wp-block-button .wp-block-button__link:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 122, 186, 0.3);
}
.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  color: var(--barom-brand-color, #007cba);
  border-color: var(--barom-brand-color, #007cba);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: var(--barom-brand-color, #007cba);
  color: #ffffff;
  filter: none;
}
.wp-block-button.is-style-accent .wp-block-button__link {
  background-color: var(--barom-accent-color, #ff6b35);
  border-color: var(--barom-accent-color, #ff6b35);
}
.wp-block-button.is-style-accent .wp-block-button__link:hover {
  filter: brightness(0.9);
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  font-size: 1em;
}
ul li, ol li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: var(--barom-text-color, #333333);
}
ul ul, ul ol, ol ul, ol ol {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

ul {
  list-style-type: disc;
}
ul ul {
  list-style-type: circle;
}
ul ul ul {
  list-style-type: square;
}

ol {
  list-style-type: decimal;
}
ol ol {
  list-style-type: lower-alpha;
}
ol ol ol {
  list-style-type: lower-roman;
}

table:not(.custom-table) {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  font-size: var(--barom-base-font-size, 1em);
}
table:not(.custom-table) th, table:not(.custom-table) td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
table:not(.custom-table) th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: var(--barom-heading-color, #333333);
}
table:not(.custom-table) td {
  color: var(--barom-text-color, #333333);
}
table:not(.custom-table) tbody tr:hover {
  background-color: rgba(var(--barom-brand-color, #007cba), 0.05);
}

.wp-block-table {
  margin-bottom: 1rem;
}
.wp-block-table table {
  margin-bottom: 0;
}
.wp-block-table.is-style-stripes tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

.custom-table {
  width: 100%;
  margin-bottom: 1.5rem;
  font-size: var(--barom-base-font-size, 1em);
}
.custom-table th:first-child,
.custom-table td:first-child {
  white-space: nowrap;
  min-width: 120px;
  width: 120px;
}
.custom-table.table-simple {
  border-collapse: collapse;
  border: none;
}
.custom-table.table-simple th, .custom-table.table-simple td {
  padding: 0.75rem 1rem;
  text-align: left;
  border: none;
}
.custom-table.table-simple th:first-child,
.custom-table.table-simple td:first-child {
  white-space: nowrap;
  min-width: 120px;
  width: 120px;
}
.custom-table.table-simple tbody tr {
  border-bottom: 1px solid #d4d4d4;
}
.custom-table.table-timeline {
  border-collapse: collapse;
  position: relative;
}
.custom-table.table-timeline th, .custom-table.table-timeline td {
  display: block;
  width: 100%;
  padding: 1rem 0;
  text-align: left;
  position: relative;
  font-size: 0.9rem;
}
.custom-table.table-timeline th:nth-child(1), .custom-table.table-timeline th:nth-child(3),
.custom-table.table-timeline td:nth-child(1), .custom-table.table-timeline td:nth-child(3) {
  color: var(--barom-text-color);
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  border-bottom: 1px solid rgba(0, 124, 186, 0.1);
}
.custom-table.table-timeline th:nth-child(1):last-child, .custom-table.table-timeline th:nth-child(3):last-child,
.custom-table.table-timeline td:nth-child(1):last-child, .custom-table.table-timeline td:nth-child(3):last-child {
  margin-bottom: 0;
}
.custom-table.table-timeline th:nth-child(2), .custom-table.table-timeline td:nth-child(2) {
  width: 3rem;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  position: relative;
}
.custom-table.table-timeline th:nth-child(2)::before, .custom-table.table-timeline td:nth-child(2)::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.75rem;
  height: 0.75rem;
  background: #007cba;
  border-radius: 50%;
  z-index: 2;
}
.custom-table.table-timeline tbody tr {
  margin-bottom: 2rem;
  position: relative;
}
.custom-table.table-timeline tbody tr:last-child {
  margin-bottom: 0;
}
.custom-table.table-timeline tbody tr::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(0, 124, 186, 0.3);
  z-index: 1;
}
.custom-table.table-timeline tbody tr:last-child::before {
  height: 50%;
}
@media (min-width: 768px) {
  .custom-table.table-timeline th, .custom-table.table-timeline td {
    display: table-cell;
    width: auto;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  .custom-table.table-timeline th:nth-child(1), .custom-table.table-timeline th:nth-child(3),
  .custom-table.table-timeline td:nth-child(1), .custom-table.table-timeline td:nth-child(3) {
    margin-bottom: 0;
    padding-left: 1.5rem;
    border-bottom: 1px solid rgba(0, 124, 186, 0.1);
  }
  .custom-table.table-timeline th:nth-child(2), .custom-table.table-timeline td:nth-child(2) {
    width: 4rem;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
  }
  .custom-table.table-timeline th:nth-child(2)::before, .custom-table.table-timeline td:nth-child(2)::before {
    width: 1rem;
    height: 1rem;
  }
  .custom-table.table-timeline tbody tr {
    margin-bottom: 0;
  }
  .custom-table.table-timeline tbody tr::before {
    left: 2rem;
    width: 3px;
  }
  .custom-table.table-timeline tbody tr:hover {
    background-color: rgba(0, 124, 186, 0.02);
  }
}
@media (min-width: 1280px) {
  .custom-table.table-timeline th, .custom-table.table-timeline td {
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
  }
  .custom-table.table-timeline th:nth-child(1), .custom-table.table-timeline th:nth-child(3),
  .custom-table.table-timeline td:nth-child(1), .custom-table.table-timeline td:nth-child(3) {
    padding-left: 2rem;
  }
  .custom-table.table-timeline th:nth-child(2), .custom-table.table-timeline td:nth-child(2) {
    width: 5rem;
  }
  .custom-table.table-timeline th:nth-child(2)::before, .custom-table.table-timeline td:nth-child(2)::before {
    width: 1.25rem;
    height: 1.25rem;
  }
  .custom-table.table-timeline tbody tr::before {
    left: 2.5rem;
    width: 4px;
  }
}
.custom-table.table-base {
  border-collapse: collapse;
}
.custom-table.table-base th, .custom-table.table-base td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.custom-table.table-base th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: var(--barom-heading-color, #333333);
}
.custom-table.table-base td {
  color: var(--barom-text-color, #333333);
}
.custom-table.table-base tbody tr:hover {
  background-color: rgba(var(--barom-brand-color, #007cba), 0.05);
}
.custom-table.table-striped tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}
.custom-table.table-bordered {
  border: 1px solid #ddd;
}
.custom-table.table-bordered th, .custom-table.table-bordered td {
  border: 1px solid #ddd;
}
.custom-table.table-simple.table-bordered {
  border: none;
}
.custom-table.table-simple.table-bordered th, .custom-table.table-simple.table-bordered td {
  border: none;
}

.custom-table-block .table-editor-preview {
  margin-bottom: 1rem;
}
.custom-table-block .table-editor-preview table {
  margin-bottom: 0;
}
.custom-table-block .table-editor-preview .custom-table {
  width: 100% !important;
  margin-bottom: 1.5rem;
  font-size: var(--barom-base-font-size, 1em);
}
.custom-table-block .table-editor-preview .custom-table th, .custom-table-block .table-editor-preview .custom-table td {
  display: table-cell !important;
  width: auto !important;
  padding: 0.75rem !important;
  text-align: left !important;
  border-bottom: 1px solid #ddd !important;
}
.custom-table-block .table-editor-preview .custom-table th {
  background-color: #f8f9fa !important;
  font-weight: 600 !important;
  color: var(--barom-heading-color, #333333) !important;
}
.custom-table-block .table-editor-preview .custom-table td {
  color: var(--barom-text-color, #333333) !important;
}
.custom-table-block .table-editor-preview .custom-table.table-simple {
  border-collapse: collapse !important;
}
.custom-table-block .table-editor-preview .custom-table.table-simple th, .custom-table-block .table-editor-preview .custom-table.table-simple td {
  display: table-cell !important;
  width: auto !important;
  padding: 0.75rem 1rem !important;
  border-bottom: 1px solid rgba(var(--barom-brand-color, #007cba), 0.2) !important;
  font-size: 1rem !important;
}
.custom-table-block .table-editor-preview .custom-table.table-simple th {
  background-color: transparent !important;
  color: var(--barom-heading-color) !important;
  font-weight: 600 !important;
  font-size: 0.9em !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  margin-bottom: 0 !important;
  width: 30% !important;
}
.custom-table-block .table-editor-preview .custom-table.table-simple td {
  color: var(--barom-text-color) !important;
  margin-bottom: 0 !important;
}
.custom-table-block .table-editor-preview .custom-table.table-simple tbody tr {
  margin-bottom: 0 !important;
}
.custom-table-block .table-editor-preview .custom-table.table-simple tbody tr:hover {
  background-color: rgba(var(--barom-brand-color, #007cba), 0.03) !important;
}
.custom-table-block .table-editor-preview .custom-table.table-timeline {
  border-collapse: collapse !important;
  position: relative !important;
}
.custom-table-block .table-editor-preview .custom-table.table-timeline th, .custom-table-block .table-editor-preview .custom-table.table-timeline td {
  display: table-cell !important;
  width: auto !important;
  padding: 1rem 1.5rem !important;
  text-align: left !important;
  position: relative !important;
  font-size: 1rem !important;
}
.custom-table-block .table-editor-preview .custom-table.table-timeline th {
  background-color: transparent !important;
  color: var(--barom-heading-color) !important;
  font-weight: 700 !important;
  font-size: 1.2em !important;
  margin-bottom: 0 !important;
  padding-left: 3rem !important;
  width: 30% !important;
}
.custom-table-block .table-editor-preview .custom-table.table-timeline th::before {
  content: "" !important;
  position: absolute !important;
  left: 1rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 1rem !important;
  height: 1rem !important;
  background: var(--barom-brand-color, #007cba) !important;
  border-radius: 50% !important;
  z-index: 2 !important;
}
.custom-table-block .table-editor-preview .custom-table.table-timeline td {
  color: var(--barom-text-color) !important;
  margin-bottom: 0 !important;
  padding-left: 1.5rem !important;
  border-bottom: 1px solid rgba(var(--barom-brand-color, #007cba), 0.1) !important;
}
.custom-table-block .table-editor-preview .custom-table.table-timeline tbody tr {
  margin-bottom: 0 !important;
  position: relative !important;
}
.custom-table-block .table-editor-preview .custom-table.table-timeline tbody tr::before {
  content: "" !important;
  position: absolute !important;
  left: 1.5rem !important;
  top: 0 !important;
  width: 3px !important;
  height: 100% !important;
  background: rgba(var(--barom-brand-color, #007cba), 0.3) !important;
  z-index: 1 !important;
}
.custom-table-block .table-editor-preview .custom-table.table-timeline tbody tr:hover {
  background-color: rgba(var(--barom-brand-color, #007cba), 0.02) !important;
}
.custom-table-block .table-editor-preview .custom-table.table-base {
  border-collapse: collapse !important;
}
.custom-table-block .table-editor-preview .custom-table.table-base th, .custom-table-block .table-editor-preview .custom-table.table-base td {
  display: table-cell !important;
  padding: 0.75rem !important;
  text-align: left !important;
  border-bottom: 1px solid #ddd !important;
}
.custom-table-block .table-editor-preview .custom-table.table-base th {
  background-color: #f8f9fa !important;
  font-weight: 600 !important;
  color: var(--barom-heading-color, #333333) !important;
}
.custom-table-block .table-editor-preview .custom-table.table-base td {
  color: var(--barom-text-color, #333333) !important;
}
.custom-table-block .table-editor-preview .custom-table.table-striped tbody tr:nth-child(even) {
  background-color: #f8f9fa !important;
}
.custom-table-block .table-editor-preview .custom-table.table-bordered {
  border: 1px solid #ddd !important;
}
.custom-table-block .table-editor-preview .custom-table.table-bordered th, .custom-table-block .table-editor-preview .custom-table.table-bordered td {
  border: 1px solid #ddd !important;
}
.custom-table-block .table-editor-preview .custom-table.table-hoverable tbody tr:hover {
  background-color: rgba(var(--barom-brand-color, #007cba), 0.05) !important;
}
.custom-table-block .table-row-editor {
  background-color: #f9f9f9;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.wp-block-image img {
  max-width: 100%;
  height: auto;
  display: block;
}
.wp-block-image.alignfull img {
  width: 100vw;
  height: auto;
  object-fit: cover;
}
.wp-block-image.alignwide img {
  width: 100%;
  max-width: 100vw;
  height: auto;
}

.image-overlay-white-40 {
  position: relative;
}
.image-overlay-white-40::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: 1;
  pointer-events: none;
}

.style-guide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  min-height: 100vh;
}
.style-guide .style-section {
  margin-bottom: 3rem;
}
.style-guide .style-section h2 {
  border-bottom: 2px solid var(--barom-brand-color, #007cba);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--barom-heading-color, #333333);
}
.style-guide .color-palette {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.style-guide .color-palette .color-item {
  text-align: center;
}
.style-guide .color-palette .color-item .color-swatch {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  margin: 0 auto 1rem;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}
.style-guide .color-palette .color-item .color-swatch.brand-color {
  background-color: var(--barom-brand-color, #007cba);
}
.style-guide .color-palette .color-item .color-swatch.accent-color {
  background-color: var(--barom-accent-color, #ff6b35);
}
.style-guide .color-palette .color-item .color-swatch.text-color {
  background-color: var(--barom-text-color, #333333);
}
.style-guide .color-palette .color-item .color-swatch.link-color {
  background-color: var(--barom-link-color, #007cba);
}
.style-guide .color-palette .color-item .color-description {
  margin: 0;
  font-size: 0.875rem;
}
.style-guide .color-palette .color-item .color-description code {
  background-color: #f8f9fa;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
}
.style-guide .component-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.style-guide .component-examples .wp-block-buttons {
  margin: 0;
}
@media (min-width: 768px) {
  .style-guide {
    padding: 3rem;
  }
  .style-guide .color-palette {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
  }
}
@media (min-width: 1280px) {
  .style-guide {
    padding: 4rem;
  }
  .style-guide .color-palette {
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
  }
}

.wp-block-query-pagination {
  margin-top: 2rem;
}
.wp-block-query-pagination.pagination-simple .wp-block-query-pagination-numbers .page-numbers {
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border: 1px solid var(--wp--preset--color--contrast);
  border-radius: 0.25rem;
  text-decoration: none;
}
.wp-block-query-pagination.pagination-simple .wp-block-query-pagination-numbers .page-numbers.current {
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--base);
}
.wp-block-query-pagination.pagination-arrows .wp-block-query-pagination-previous .wp-block-query-pagination-link,
.wp-block-query-pagination.pagination-arrows .wp-block-query-pagination-next .wp-block-query-pagination-link {
  padding: 0.75rem 1.5rem;
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--base);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.wp-block-query-pagination.pagination-arrows .wp-block-query-pagination-previous .wp-block-query-pagination-link:hover,
.wp-block-query-pagination.pagination-arrows .wp-block-query-pagination-next .wp-block-query-pagination-link:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .wp-block-query-pagination.pagination-simple .wp-block-query-pagination-numbers .page-numbers {
    padding: 0.25rem 0.5rem;
    margin: 0 0.125rem;
    font-size: 0.875rem;
  }
  .wp-block-query-pagination.pagination-arrows .wp-block-query-pagination-previous .wp-block-query-pagination-link,
  .wp-block-query-pagination.pagination-arrows .wp-block-query-pagination-next .wp-block-query-pagination-link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}
.position-fixed-bottom {
  position: fixed !important;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.5rem;
}
.position-fixed-top {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.position-fixed-left {
  position: fixed !important;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1000;
}
.position-fixed-right {
  position: fixed !important;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}
.position-fixed-bottom-right {
  position: fixed !important;
  bottom: 1rem;
  right: 1rem;
  z-index: 1000;
}
@media (min-width: 768px) {
  .position-fixed-bottom-right {
    bottom: 2rem;
    right: 2rem;
  }
}

.position-fixed-bottom-left {
  position: fixed !important;
  bottom: 1rem;
  left: 1rem;
  z-index: 1000;
}
@media (min-width: 768px) {
  .position-fixed-bottom-left {
    bottom: 2rem;
    left: 2rem;
  }
}

.position-fixed-top-right {
  position: fixed !important;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
}
@media (min-width: 768px) {
  .position-fixed-top-right {
    top: 2rem;
    right: 2rem;
  }
}

.position-fixed-top-left {
  position: fixed !important;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
}
@media (min-width: 768px) {
  .position-fixed-top-left {
    top: 2rem;
    left: 2rem;
  }
}

.position-fixed-center {
  position: fixed !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

.position-sticky-top {
  position: sticky !important;
  top: 0;
  z-index: 100;
}

.position-sticky-bottom {
  position: sticky !important;
  bottom: 0;
  z-index: 100;
}

.z-index-1 {
  z-index: 1 !important;
}

.z-index-10 {
  z-index: 10 !important;
}

.z-index-100 {
  z-index: 100 !important;
}

.z-index-1000 {
  z-index: 1000 !important;
}

.z-index-9999 {
  z-index: 9999 !important;
}

.text-responsive-xs {
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .text-responsive-xs {
    font-size: 0.875rem;
  }
}
@media (min-width: 1280px) {
  .text-responsive-xs {
    font-size: 1rem;
  }
}

.text-responsive-sm {
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .text-responsive-sm {
    font-size: 1rem;
  }
}
@media (min-width: 1280px) {
  .text-responsive-sm {
    font-size: 1.125rem;
  }
}

.text-responsive-base {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .text-responsive-base {
    font-size: 1.125rem;
  }
}
@media (min-width: 1280px) {
  .text-responsive-base {
    font-size: 1.25rem;
  }
}

.text-responsive-lg {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .text-responsive-lg {
    font-size: 1.25rem;
  }
}
@media (min-width: 1280px) {
  .text-responsive-lg {
    font-size: 1.5rem;
  }
}

.text-responsive-xl {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .text-responsive-xl {
    font-size: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .text-responsive-xl {
    font-size: 1.75rem;
  }
}

.text-responsive-2xl {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .text-responsive-2xl {
    font-size: 1.75rem;
  }
}
@media (min-width: 1280px) {
  .text-responsive-2xl {
    font-size: 2rem;
  }
}

.text-responsive-3xl {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .text-responsive-3xl {
    font-size: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .text-responsive-3xl {
    font-size: 3rem;
  }
}

.text-responsive-4xl {
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  .text-responsive-4xl {
    font-size: 3rem;
  }
}
@media (min-width: 1280px) {
  .text-responsive-4xl {
    font-size: 3.5rem;
  }
}

.heading-responsive-h1 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .heading-responsive-h1 {
    font-size: 2rem;
  }
}
@media (min-width: 1280px) {
  .heading-responsive-h1 {
    font-size: 2.5rem;
  }
}

.heading-responsive-h2 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .heading-responsive-h2 {
    font-size: 1.75rem;
  }
}
@media (min-width: 1280px) {
  .heading-responsive-h2 {
    font-size: 2rem;
  }
}

.heading-responsive-h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .heading-responsive-h3 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .heading-responsive-h3 {
    font-size: 1.75rem;
  }
}

.heading-responsive-h4 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .heading-responsive-h4 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1280px) {
  .heading-responsive-h4 {
    font-size: 1.5rem;
  }
}

.heading-responsive-h5 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .heading-responsive-h5 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1280px) {
  .heading-responsive-h5 {
    font-size: 1.25rem;
  }
}

.heading-responsive-h6 {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .heading-responsive-h6 {
    font-size: 1rem;
  }
}
@media (min-width: 1280px) {
  .heading-responsive-h6 {
    font-size: 1.125rem;
  }
}

.body-responsive-small {
  font-size: 0.875rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .body-responsive-small {
    font-size: 1rem;
  }
}
@media (min-width: 1280px) {
  .body-responsive-small {
    font-size: 1.125rem;
  }
}

.body-responsive-base {
  font-size: 1rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .body-responsive-base {
    font-size: 1.125rem;
  }
}
@media (min-width: 1280px) {
  .body-responsive-base {
    font-size: 1.25rem;
  }
}

.body-responsive-large {
  font-size: 1.125rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .body-responsive-large {
    font-size: 1.25rem;
  }
}
@media (min-width: 1280px) {
  .body-responsive-large {
    font-size: 1.5rem;
  }
}

.caption-responsive {
  font-size: 0.75rem;
  line-height: 1.4;
  color: #666;
}
@media (min-width: 768px) {
  .caption-responsive {
    font-size: 0.875rem;
  }
}
@media (min-width: 1280px) {
  .caption-responsive {
    font-size: 1rem;
  }
}

.lead-responsive {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 300;
}
@media (min-width: 768px) {
  .lead-responsive {
    font-size: 1.25rem;
  }
}
@media (min-width: 1280px) {
  .lead-responsive {
    font-size: 1.5rem;
  }
}

.wp-block.wp-block-heading h1.has-responsive-typography, .wp-block.wp-block-heading h2.has-responsive-typography, .wp-block.wp-block-heading h3.has-responsive-typography, .wp-block.wp-block-heading h4.has-responsive-typography, .wp-block.wp-block-heading h5.has-responsive-typography, .wp-block.wp-block-heading h6.has-responsive-typography {
  font-size: inherit;
}
.wp-block.wp-block-paragraph.has-responsive-typography {
  font-size: inherit;
}

@media (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.has-text-align-left {
  text-align: left;
}

.has-text-align-center {
  text-align: center;
}

.has-text-align-right {
  text-align: right;
}

.wp-block-group > *:last-child {
  margin-bottom: 0;
}

main {
  position: relative;
  top: 0;
}

.is-style-wide {
  max-width: 100vw !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.is-style-wide-content {
  max-width: 100vw !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.is-style-content {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}/*# sourceMappingURL=style.css.map */