/*ハンバーガーメニュー*/
/******************************
 * 可視制御（SP/PC 出し分け）
 ******************************/

/* SPヘッダー（body直下の .header header--sp を想定） */
.header--sp { display: none; }
@media (max-width: 1024px) {
  .header--sp { display: block; }
}

/* PC専用ハンバーガーボタン（ヘッダー右端に置く .hamburger-pc） */
.hamburger-pc { display: none; }
@media (min-width: 1025px) {
  .hamburger-pc { display: inline-block; }
}

/***********************************
 * ボタン（共通） & PC用オーバーライド
 ***********************************/

/* 基本ボタン（SP想定: 画面右上に固定） */
.hamburger-overlay {
  position: fixed;
  top: 8px;
  right: 16px;
  z-index: 3500;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

/* PCヘッダー内のボタンはヘッダー内で相対配置 */
.hamburger-overlay.hamburger-pc {
  position: relative;
  top: auto;
  right: auto;
  z-index: 3500; /* ヘッダー内で十分高く */
}

/* 三本線 */
.hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #333;
  transition: all .6s;
}
.hamburger-overlay__line:nth-of-type(1) { top: 14px; }
.hamburger-overlay__line:nth-of-type(2) { top: 23px; }
.hamburger-overlay__line:nth-of-type(3) { top: 32px; }

/* 開いたときの×アニメ */
.hamburger-overlay.active .hamburger-overlay__line { background-color: #fff; }
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

/******************************
 * オーバーレイ（共通 #overlay-menu）
 ******************************/

.nav-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.95);
  visibility: hidden;
  opacity: 0;
  transition: opacity .6s, visibility .6s;
  z-index: 9000; /* ヘッダーより前面に */
}
.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(92vw, 960px);
  transform: translate(-50%, -50%);
  text-align: center;
}

.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s;
}

/* 開いた時に順番にフェードイン */
.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: .08s; }
.nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: .16s; }
.nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: .24s; }
.nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: .32s; }
.nav-overlay.active .nav-overlay__item:nth-child(5) { transition-delay: .40s; }
.nav-overlay.active .nav-overlay__item:nth-child(6) { transition-delay: .48s; }

.nav-overlay__link {
  display: inline-block;
  padding: 18px 20px;
  color: #fff;
  font-size: clamp(18px, 3.5vw, 28px);
  font-family: 'Zen Maru Gothic', sans-serif;
  text-decoration: none;
  transition: color .3s;
}
.nav-overlay__link:hover { color: #4a90e2; }

/******************************************
 * PCヘッダー右端で予約リンクと横並びにする補助
 * （必要に応じて対象セレクタは調整）
 ******************************************/
[data-css="tve-u-185d46104ce"] .tcb-col {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px; /* 予約リンクとハンバーガーの間隔 */
}

/********************************
 * 固定ヘッダーのアンカー着地補正
 ********************************/
[id] { scroll-margin-top: 80px; } /* ヘッダー高さに合わせて調整 */

/* （好みで）CSSスムーススクロール
html { scroll-behavior: smooth; }
*/

/*ハンバーガーメニュー　ここまで*/

/* 固定ヘッダーが 80px なら調整 */
[id] { scroll-margin-top: 80px; }


.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.thrv-page-section {
  position: relative;
  box-sizing: border-box !important;
}

.thrv-page-section .tve-page-section-out {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  box-sizing: border-box;
  transition: box-shadow 0.5s;
  overflow: hidden;
}

.thrv-page-section.tve-height-update .tve-page-section-in {
  min-height: 150px;
}

.thrv-page-section .tve-page-section-in {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 1;
  min-height: 40px;
}

.tve-page-section-in>.thrv_wrapper:first-child {
  margin-top: 0px;
}

.tve-page-section-in>.thrv_wrapper:last-child {
  margin-bottom: 0px;
}

.thrv_wrapper .tve-content-box-background {
  position: absolute;
  width: 100%;
  left: 0px;
  top: 0px;
  overflow: hidden;
  background-clip: padding-box;
  height: 100% !important;
}

.thrv_wrapper.thrv-content-box {
  box-sizing: border-box;
  position: relative;
  min-height: 10px;
}

.thrv_wrapper.thrv-content-box div:not(.thrv_icon):not(.ui-resizable-handle):not(.tve-auxiliary-icon-element) {
  box-sizing: border-box;
}

.tve-cb {
  display: inline-block;
  vertical-align: middle;
  clear: both;
  overflow: visible;
  width: 100%;
  z-index: 1;
  position: relative;
  min-height: 10px;
}

.tve_faq {
  transition: all, 0.5s, all;
  background: rgb(228, 228, 228);
}

.tve_faq.tve_oFaq {
  background: rgb(248, 248, 248);
}

.tve_faq.tve_oFaq:hover {
  background: rgb(248, 248, 248) !important;
}

.tve_faq .tve_faqC {
  display: none;
  padding: 10px 37px;
}

.tve_faq .tve_faqB:hover {
  cursor: pointer;
}

.tve_faq .tve_faqB::after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0px;
}

.tve_faq .tve_toggle {
  display: inline-block;
  position: absolute;
  width: 13px;
  height: 13px;
  top: 20px;
  transform: rotate(0deg);
}

.tve_faq .tve_faqB {
  cursor: pointer;
  padding: 17px;
  position: relative;
}

:not(#tve) .thrv_toggle_shortcode .tve_faq.tve_oFaq:hover {
  background: rgb(248, 248, 248) !important;
}

:not(#tve) .thrv_toggle .tve-toggle-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
}

:not(#tve) .thrv_toggle .tve-toggle-column {
  box-sizing: border-box;
  flex: 0 1 100%;
  justify-content: flex-start;
  width: 100%;
}

:not(#tve) .thrv_toggle .thrv_toggle_item {
  background: transparent;
  position: relative;
}

:not(#tve) .thrv_toggle .thrv_toggle_item .thrv_toggle_title {
  display: flex;
  align-items: center;
  padding: 10px;
}

:not(#tve) .thrv_toggle .thrv_toggle_item .thrv_toggle_title .tve_toggle {
  display: none;
  position: relative;
  top: 0px;
  transition: 0.25s;
  transform: rotate(var(--animation-angle, 0deg));
}

:not(#tve) .thrv_toggle .thrv_toggle_item .thrv_toggle_title .tve_toggle path {
  fill: currentcolor;
}

:not(#tve) .thrv_toggle .thrv_toggle_item .thrv_toggle_title .tve-toggle-text {
  font-size: 20px;
  line-height: 2em;
  width: 100% !important;
  padding: 0px !important;
  margin: 0px !important;
}

:not(#tve) .thrv_toggle .thrv_toggle_item .thrv_toggle_title .tve-toggle-text::before {
  display: none;
}

:not(#tve) .thrv_toggle .thrv_toggle_item .thrv_toggle_title.tve-toggle-show-icon .tve_toggle {
  display: flex;
  margin-right: 8px;
}

:not(#tve) .thrv_toggle .thrv_toggle_item .thrv_toggle_title.tve-toggle-icon-right {
  flex-direction: row-reverse;
}

:not(#tve) .thrv_toggle .thrv_toggle_item .thrv_toggle_title.tve-toggle-icon-right .tve_toggle {
  margin-right: 0px;
  margin-left: 8px;
}

:not(#tve) .thrv_toggle .thrv_toggle_item .thrv_toggle_title.tve-toggle-icon-right .tve-toggle-text {
  flex: 1 1 0%;
}

:not(#tve) .thrv_toggle .thrv_toggle_item .tve_faqC {
  display: none;
  padding: 0px;
  border: none;
}

:not(#tve) .thrv_toggle .thrv_toggle_item .tve_faqC>.thrv_wrapper {
  margin: 0px;
  position: relative;
}

:not(#tve) .thrv_toggle.tve-draggable .tve-toggle-text {
  pointer-events: none;
}

.thrv_toggle .tve-toggle-grid .thrv_toggle_item {
  margin-top: var(--toggle-vertical-space, 7px);
}

.tcb-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1em;
  vertical-align: middle;
  stroke-width: 0;
  stroke: currentcolor;
  fill: currentcolor;
  box-sizing: content-box;
  transform: rotate(var(--tcb-icon-rotation-angle, 0deg));
}

svg.tcb-icon path:not([fill="none"]) {
  transition: none;
  fill: inherit !important;
  stroke: inherit !important;
}

.tve_image_caption {
  position: relative;
}

.tve_image_caption:not(.tcb-mm-image.tve-tab-image) {
  height: auto !important;
}

.tve_image_caption .tve_image {
  max-width: 100%;
  width: 100%;
}

.thrv_text_element a:not(.tcb-button-link) {
  font-size: inherit;
}

.tcb-style-wrap strong {
  font-weight: var(--g-bold-weight, bold);
}

.thrv_text_element {
  overflow-wrap: break-word;
}

body:not(.tve_editor_page) .thrv_wrapper.thrv_header {
  padding: 0px;
}

.notifications-content-wrapper.tcb-permanently-hidden {
  display: none !important;
}

.tcb-permanently-hidden {
  display: none !important;
}

.tar-disabled {
  cursor: default;
  opacity: 0.4;
  pointer-events: none;
}

.tcb-clear::after {
  display: block;
  height: 0px;
  content: "";
}

.tcb-flex-row {
  display: flex;
  flex-flow: row;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 0px;
  margin-left: -15px;
  padding-bottom: 15px;
  padding-top: 15px;
}

.tcb-flex-col {
  flex: 1 1 auto;
  padding-top: 0px;
  padding-left: 15px;
}

.tcb-flex-row .tcb-flex-col {
  box-sizing: border-box;
}

.tcb--cols--2:not(.tcb-resized)>.tcb-flex-col {
  max-width: 50%;
}

.tcb--cols--3:not(.tcb-resized)>.tcb-flex-col {
  max-width: 33.3333%;
}

.tcb-col {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.tcb-flex-row .tcb-col {
  box-sizing: border-box;
}

.tcb-col.variable-height {
  height: unset !important;
}

.tcb--cols--1>.tcb-flex-col>.tcb-col {
  max-width: 100%;
}

html {
  text-rendering: auto !important;
}

html body {
  text-rendering: auto !important;
}

body.tve_lp::before {
  content: none;
}

.thrv_wrapper {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 1px;
}

.thrv_wrapper div {
  box-sizing: content-box;
}

.thrv_wrapper.tve-elem-default-pad {
  padding: 20px;
}

.thrv_wrapper.thrv_text_element,
.thrv_wrapper.thrv-page-section,
.thrv_wrapper.thrv_symbol {
  margin: 0px;
}

.thrv_wrapper.thrv-columns {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0px;
}

p {
  font-size: 1em;
}

.tve_image {
  border-radius: 0px;
  box-shadow: none;
}

div .tve_image_caption {
  padding: 0px;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.tve_image_caption .tve_image_frame {
  display: block;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.tve_image_caption .tve_image {
  display: block;
  padding: 0px;
  height: auto;
}

.tve_image_caption.img_style_rounded_corners .tve_image_frame {
  border-radius: 10px;
}

.tve-flexible-container {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.tve-flexible-container iframe {
  height: 100%;
  min-height: inherit;
  min-width: inherit;
  width: 100% !important;
}

.thrv_symbol.thrv_header {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

:not(#_s):not(#_s) .tcb-conditional-display-placeholder {
  min-height: var(--tcb-container-height-d, 100px) !important;
  position: relative;
}

:not(#_s):not(#_s) .tcb-conditional-display-placeholder.thrv-page-section {
  box-sizing: border-box;
  margin: 0px;
}

:not(#_s):not(#_s) .tcb-conditional-display-placeholder.thrv-content-box {
  box-sizing: border-box;
}

:not(#_s):not(#_s) .tcb-conditional-display-placeholder .tve-page-section-out,
:not(#_s):not(#_s) .tcb-conditional-display-placeholder .tve-content-box-background {
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  overflow: hidden;
}

.thrv-google-map-embedded-code {
  max-width: 100%;
}

.thrv_wrapper.thrv_contentbox_shortcode {
  position: relative;
}

@media (max-width:1023px) {
  .tve-toggle-grid>.tve-toggle-column>.thrv_toggle_item:first-child {
    margin-top: 0px;
  }

  :not(#_s):not(#_s) .tcb-conditional-display-placeholder {
    min-height: var(--tcb-container-height-t) !important;
  }
}

@media (max-width:767px) {
  :not(#tve) .thrv_toggle .tve-toggle-grid {
    flex-wrap: wrap;
  }

  :not(#tve) .thrv_toggle .thrv_toggle_item .thrv_toggle_title .tve-toggle-text {
    white-space: pre-wrap;
  }

  html {
    overflow-x: hidden !important;
  }

  html,
  body {
    max-width: 100vw !important;
  }

  body:not(.tcb_show_all_hidden) .tcb-mobile-hidden {
    display: none !important;
  }

  .tcb-flex-row {
    flex-direction: column;
  }

  .tcb-flex-row.v-2 {
    flex-direction: row;
  }

  .tcb-flex-row.v-2:not(.tcb-mobile-no-wrap) {
    flex-wrap: wrap;
  }

  .tcb-flex-row.v-2:not(.tcb-mobile-no-wrap)>.tcb-flex-col {
    width: 100%;
    flex: 1 0 390px;
    max-width: 100% !important;
  }

  :not(#_s):not(#_s) .tcb-conditional-display-placeholder {
    min-height: var(--tcb-container-height-m) !important;
  }
}

@media (min-width:1024px) {
  .thrv_toggle .tve-toggle-grid .thrv_toggle_item:first-child {
    margin-top: 0px;
  }

  body:not(.tcb_show_all_hidden) .tcb-desktop-hidden {
    display: none !important;
  }
}

@media (min-width:768px) and (max-width:1023px) {
  body:not(.tcb_show_all_hidden) .tcb-tablet-hidden {
    display: none !important;
  }
}

@media (max-width:1023px) and (min-width:768px) {
  .tcb-flex-row:not(.tcb--cols--2):not(.tcb-medium-no-wrap) {
    flex-wrap: wrap;
  }

  .tcb-flex-row:not(.tcb--cols--2):not(.tcb-medium-no-wrap)>.tcb-flex-col {
    flex: 1 0 250px;
    max-width: 100% !important;
  }

  .tcb-flex-row.tcb-medium-no-wrap {
    flex-wrap: nowrap !important;
  }

  .tcb-flex-row.tcb-medium-no-wrap>.tcb-flex-col {
    flex: 1 1 auto !important;
  }
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
  .tcb-flex-col {
    width: 100%;
  }

  .tcb-col {
    display: block;
  }
}

@media screen and (max-device-width:480px) {
  body {
    text-size-adjust: none;
  }
}

:root {
  --tcb-background-author-image: url(../assets/img/favicon.webp);
  --tcb-background-user-image: url(../assets/img/favicon.webp);
  --tcb-background-featured-image-thumbnail: url(../assets/img/favicon.webp);
}

body {
  font-family: 'Zen Maru Gothic', sans-serif;
}

@media (min-width:300px) {
  .tcb-style-wrap h1 {
    color: var(--tcb-skin-color-24);
    --tcb-applied-color: var$(--tcb-skin-color-24);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: var(--g-regular-weight, normal);
    font-size: 64px;
    background-color: rgba(0, 0, 0, 0);
    font-style: normal;
    margin: 0px;
    padding-top: 0px;
    padding-bottom: 22px;
    text-decoration: rgba(10, 10, 10, 0.85);
    text-transform: none;
    border-left: 0px none rgba(10, 10, 10, 0.85);
    line-height: 1.2em;
    --tcb-typography-font-family: Arial, Helvetica, sans-serif;
    --tcb-typography-color: var(--tcb-skin-color-24);
    --tve-applied-color: var$(--tcb-skin-color-24);
    --tcb-typography-font-size: 64px;
    --tcb-typography-line-height: 1.2em;
  }

  .tcb-style-wrap h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: var(--g-regular-weight, normal);
    color: var(--tcb-skin-color-24);
    --tcb-applied-color: var$(--tcb-skin-color-24);
    padding-top: 0px;
    margin-top: 0px;
    padding-bottom: 22px;
    margin-bottom: 0px;
    font-size: 50px;
    line-height: 1.3em;
    --tcb-typography-font-family: Arial, Helvetica, sans-serif;
    --tcb-typography-color: var(--tcb-skin-color-24);
    --tve-applied-color: var$(--tcb-skin-color-24);
    --tcb-typography-font-size: 50px;
    --tcb-typography-line-height: 1.3em;
  }

  .tcb-style-wrap h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: var(--g-regular-weight, normal);
    color: var(--tcb-skin-color-24);
    --tcb-applied-color: var$(--tcb-skin-color-24);
    padding-top: 0px;
    margin-top: 0px;
    padding-bottom: 22px;
    margin-bottom: 0px;
    line-height: 1.3em;
    --tcb-typography-font-family: Arial, Helvetica, sans-serif;
    --tcb-typography-color: var(--tcb-skin-color-24);
    --tve-applied-color: var$(--tcb-skin-color-24);
    --tcb-typography-font-size: 44px;
    --tcb-typography-line-height: 1.3em;
  }

  .tcb-style-wrap h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: var(--g-regular-weight, normal);
    color: var(--tcb-skin-color-24);
    --tcb-applied-color: var$(--tcb-skin-color-24);
    padding-top: 0px;
    margin-top: 0px;
    padding-bottom: 22px;
    margin-bottom: 0px;
    line-height: 1.4em;
    --tcb-typography-font-family: Arial, Helvetica, sans-serif;
    --tcb-typography-color: var(--tcb-skin-color-24);
    --tve-applied-color: var$(--tcb-skin-color-24);
    --tcb-typography-font-size: 34px;
  }

  .tcb-style-wrap h5 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: var(--g-regular-weight, normal);
    color: var(--tcb-skin-color-24);
    --tcb-applied-color: var$(--tcb-skin-color-24);
    padding-top: 0px;
    margin-top: 0px;
    padding-bottom: 22px;
    margin-bottom: 0px;
    line-height: 1.4em;
    --tcb-typography-font-family: Arial, Helvetica, sans-serif;
    --tcb-typography-color: var(--tcb-skin-color-24);
    --tve-applied-color: var$(--tcb-skin-color-24);
    font-size: 24px;
    --tcb-typography-font-size: 24px;
  }

  .tcb-style-wrap h6 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: var(--g-regular-weight, normal);
    color: var(--tcb-skin-color-24);
    --tcb-applied-color: var$(--tcb-skin-color-24);
    padding-top: 0px;
    margin-top: 0px;
    padding-bottom: 22px;
    margin-bottom: 0px;
    line-height: 1.6em;
    --tcb-typography-font-family: Arial, Helvetica, sans-serif;
    --tcb-typography-color: var(--tcb-skin-color-24);
    --tve-applied-color: var$(--tcb-skin-color-24);
    font-size: 22px;
    --tcb-typography-font-size: 22px;
  }

  .tcb-style-wrap p {
    color: var(--tcb-skin-color-24);
    --tcb-applied-color: var$(--tcb-skin-color-24);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: var(--g-regular-weight, normal);
    font-size: 18px;
    padding-top: 0px;
    margin-top: 0px;
    padding-bottom: 26px;
    margin-bottom: 0px;
    --tcb-typography-font-family: Arial, Helvetica, sans-serif;
    --tcb-typography-color: var(--tcb-skin-color-24);
    --tve-applied-color: var$(--tcb-skin-color-24);
    line-height: 2em;
    --tcb-typography-line-height: 2em;
  }

  :not(.inc) .thrv_text_element a:not(.tcb-button-link),
  :not(.inc) .tcb-styled-list a,
  :not(.inc) .tcb-numbered-list a,
  .tve-input-option-text a,
  .tcb-post-content p a,
  .tcb-post-content li a,
  .tcb-post-content blockquote a,
  .tcb-post-content pre a {
    --tcb-applied-color: var$(--tcb-skin-color-24);
    font-family: inherit;
    font-weight: var(--g-regular-weight, normal);
    font-size: inherit;
    text-decoration: none;
    --eff: fade-underline;
    --tcb-typography-font-family: Arial, Helvetica, sans-serif;
    --tcb-typography-color: var(--tcb-skin-color-24);
    line-height: 2em;
    --tcb-typography-line-height: 2em;
    --eff-color: rgba(187, 187, 187, 0.3);
    --eff-faded: rgba(187, 187, 187, 0);
    --eff-ensure-contrast: rgba(187, 187, 187, 0);
    --eff-ensure-contrast-complement: rgba(187, 187, 187, 0);
    box-shadow: transparent 0px -0.1em 0px inset;
    border-bottom: none;
    background: none;
    animation: 0s ease 0s 1 normal none running none;
    transition: box-shadow 0.2s ease-out 0.05s;
    padding-left: 0px;
    --tve-applied-box-shadow: inset 0 -0.1em 0 transparent;
    --tve-applied-background-color: initial;
    color: var(--tcb-skin-color-18);
    --tve-applied-color: var$(--tcb-skin-color-18);
  }

  :not(.inc) .thrv_text_element a:not(.tcb-button-link):hover,
  :not(.inc) .tcb-styled-list a:hover,
  :not(.inc) .tcb-numbered-list a:hover,
  .tve-input-option-text a:hover,
  .tcb-post-content p a:hover,
  .tcb-post-content li a:hover,
  .tcb-post-content blockquote a:hover,
  .tcb-post-content pre a:hover {
    text-decoration: none;
    --eff: none;
    color: var(--tcb-skin-color-18);
    --tve-applied-color: var$(--tcb-skin-color-18);
    background: none;
    box-shadow: inset 0 -0.1em 0 var(--eff-color);
    --tve-applied-box-shadow: inset 0 -0.1em 0 var$(--eff-color);
  }

  .tcb-style-wrap ul:not([class*="menu"]),
  .tcb-style-wrap ol {
    color: var(--tcb-skin-color-24);
    --tcb-applied-color: var$(--tcb-skin-color-24);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: var(--g-regular-weight, normal);
    font-size: 18px;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 8px;
    padding-left: 0px;
    --tcb-typography-font-family: Arial, Helvetica, sans-serif;
    --tcb-typography-color: var(--tcb-skin-color-24);
    --tve-applied-color: var$(--tcb-skin-color-24);
    line-height: 2em;
    --tcb-typography-line-height: 2em;
  }

  .tcb-style-wrap li:not([class*="menu"]) {
    color: var(--tcb-skin-color-24);
    --tcb-applied-color: var$(--tcb-skin-color-24);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: var(--g-regular-weight, normal);
    font-size: 18px;
    line-height: 2em;
    padding-bottom: 18px;
    margin-bottom: 0px;
    --tcb-typography-font-family: Arial, Helvetica, sans-serif;
    --tcb-typography-color: var(--tcb-skin-color-24);
    --tve-applied-color: var$(--tcb-skin-color-24);
    --tcb-typography-line-height: 2em;
  }

  .tcb-style-wrap blockquote {
    color: var(--tcb-skin-color-24);
    --tcb-applied-color: var$(--tcb-skin-color-24);
    font-family: Georgia, serif;
    font-weight: var(--g-regular-weight, normal);
    font-size: 18px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-left: 1px solid var(--tcb-skin-color-10);
    margin-top: 0px;
    margin-bottom: 24px;
    --tcb-typography-font-family: Georgia, serif;
    --tcb-typography-color: var(--tcb-skin-color-24);
    --tve-applied-color: var$(--tcb-skin-color-24);
    line-height: 1.75em;
    --tcb-typography-line-height: 1.75em;
    background-color: var(--tcb-skin-color-9);
    --background-color: var(--tcb-skin-color-9);
    --tve-applied-background-color: var$(--tcb-skin-color-9);
    --tve-border-width: 1px;
    font-style: italic;
    --tcb-typography-font-style: italic;
    padding-right: 5px;
  }

  body,
  .tcb-plain-text {
    color: var(--tcb-skin-color-24);
    --tcb-applied-color: var$(--tcb-skin-color-24);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: var(--g-regular-weight, normal);
    font-size: 18px;
    --tcb-typography-font-family: Arial, Helvetica, sans-serif;
    --tcb-typography-color: var(--tcb-skin-color-24);
    --tve-applied-color: var$(--tcb-skin-color-24);
    line-height: 2em;
    --tcb-typography-line-height: 2em;
  }

  .tcb-style-wrap pre {
    font-family: Arial, Helvetica, sans-serif;
    --tcb-typography-font-family: Arial, Helvetica, sans-serif;
    font-weight: var(--g-regular-weight, normal);
    color: var(--tcb-skin-color-24);
    --tcb-typography-color: var(--tcb-skin-color-24);
    --tve-applied-color: var$(--tcb-skin-color-24);
    --tcb-applied-color: var$(--tcb-skin-color-24);
  }
}

@media (max-width:1023px) {
  .tcb-style-wrap h1 {
    font-size: 42px;
    padding-bottom: 20px;
    margin-bottom: 0px;
    --tcb-typography-font-size: 42px;
  }

  .tcb-style-wrap h2 {
    padding-bottom: 20px;
    margin-bottom: 0px;
    font-size: 34px;
    --tcb-typography-font-size: 34px;
  }

  .tcb-style-wrap h3 {
    padding-bottom: 20px;
    margin-bottom: 0px;
    font-size: 30px;
    --tcb-typography-font-size: 30px;
  }

  .tcb-style-wrap h4 {
    padding-bottom: 20px;
    margin-bottom: 0px;
    font-size: 26px;
    --tcb-typography-font-size: 26px;
  }

  .tcb-style-wrap h5 {
    padding-bottom: 20px;
    margin-bottom: 0px;
    font-size: 22px;
    --tcb-typography-font-size: 22px;
  }

  .tcb-style-wrap h6 {
    padding-bottom: 20px;
    margin-bottom: 0px;
    font-size: 20px;
    --tcb-typography-font-size: 20px;
  }

  .tcb-style-wrap p {
    padding-bottom: 24px;
    margin-bottom: 0px;
    padding-top: 0px;
    margin-top: 0px;
  }

  .tcb-style-wrap ul:not([class*="menu"]),
  .tcb-style-wrap ol {
    padding-top: 0px;
    padding-bottom: 8px;
  }

  .tcb-style-wrap li:not([class*="menu"]) {
    line-height: 1.75em;
    --tcb-typography-line-height: 1.75em;
    padding-bottom: 16px;
    margin-bottom: 0px;
  }

  .tcb-style-wrap blockquote {
    margin-bottom: 22px;
  }
}

@media (max-width:767px) {
  .tcb-style-wrap h1 {
    font-size: 36px;
    padding-bottom: 18px;
    margin-bottom: 0px;
    --tcb-typography-font-size: 36px;
  }

  .tcb-style-wrap h2 {
    font-size: 30px;
    padding-bottom: 18px;
    margin-bottom: 0px;
    --tcb-typography-font-size: 30px;
  }

  .tcb-style-wrap h3 {
    font-size: 28px;
    padding-bottom: 18px;
    margin-bottom: 0px;
    --tcb-typography-font-size: 28px;
  }

  .tcb-style-wrap h4 {
    font-size: 24px;
    padding-bottom: 18px;
    margin-bottom: 0px;
    --tcb-typography-font-size: 24px;
  }

  .tcb-style-wrap h5 {
    padding-bottom: 18px;
    margin-bottom: 0px;
    font-size: 22px;
    --tcb-typography-font-size: 22px;
  }

  .tcb-style-wrap h6 {
    padding-bottom: 18px;
    margin-bottom: 0px;
    font-size: 20px;
    --tcb-typography-font-size: 20px;
  }

  .tcb-style-wrap p {
    padding-bottom: 22px;
    margin-bottom: 0px;
    padding-top: 0px;
    margin-top: 0px;
    font-size: 17px;
    --tcb-typography-font-size: 17px;
  }

  :not(.inc) .thrv_text_element a:not(.tcb-button-link),
  :not(.inc) .tcb-styled-list a,
  :not(.inc) .tcb-numbered-list a,
  .tve-input-option-text a,
  .tcb-post-content p a,
  .tcb-post-content li a,
  .tcb-post-content blockquote a,
  .tcb-post-content pre a {
    font-size: 17px;
    --tcb-typography-font-size: 17px;
  }

  .tcb-style-wrap ul:not([class*="menu"]),
  .tcb-style-wrap ol {
    padding-left: 0px;
    padding-bottom: 4px;
    padding-top: 0px;
    font-size: 17px;
    --tcb-typography-font-size: 17px;
  }

  .tcb-style-wrap li:not([class*="menu"]) {
    padding-bottom: 18px;
    margin-bottom: 0px;
    font-size: 17px;
    --tcb-typography-font-size: 17px;
  }

  .tcb-style-wrap blockquote {
    margin-bottom: 20px;
    font-size: 17px;
    --tcb-typography-font-size: 17px;
  }

  body,
  .tcb-plain-text {
    font-size: 17px;
    --tcb-typography-font-size: 17px;
  }
}

@import url("//fonts.googleapis.com/css?family=Zen+Maru+Gothic:400,700&subset=latin");

@media (min-width:300px) {
  .tve_post_lp>div>:not(#tve) {
    --page-section-max-width: 1200px;
  }

  .thrv_footer .symbol-section-in {
    max-width: var(--page-section-max-width, 1080px) !important;
  }

  [data-css="tve-u-17ae799a111"] {
    background-color: rgb(255, 255, 255) !important;
    --background-color: rgb(255, 255, 255) !important;
    --tve-applied-background-color: rgb(255, 255, 255) !important;
  }

  #tcb_landing_page h1 {
    --tcb-gallery-crop-size: 385px;
  }

  #tcb_landing_page h2 {
    --tcb-gallery-crop-size: 385px;
  }

  #tcb_landing_page h3 {
    --tcb-gallery-crop-size: 385px;
  }

  #tcb_landing_page h4 {
    --tcb-gallery-crop-size: 385px;
  }

  #tcb_landing_page h5 {
    --tcb-gallery-crop-size: 385px;
  }

  #tcb_landing_page h6 {
    --tcb-gallery-crop-size: 385px;
  }

  #tcb_landing_page p {
    --tcb-gallery-crop-size: 385px;
  }

  #tcb_landing_page .thrv_text_element a:not(.tcb-button-link),
  #tcb_landing_page .tcb-styled-list a,
  #tcb_landing_page .tcb-numbered-list a,
  #tcb_landing_page .tve-input-option-text a {
    --tcb-gallery-crop-size: 385px;
    color: inherit;
    --tve-applied-color: inherit;
  }

  #tcb_landing_page ul:not([class*="menu"]),
  #tcb_landing_page ol {
    --tcb-gallery-crop-size: 385px;
  }

  #tcb_landing_page li:not([class*="menu"]) {
    --tcb-gallery-crop-size: 385px;
  }

  #tcb_landing_page blockquote {
    --tcb-gallery-crop-size: 385px;
    border-left: 1px solid rgb(255, 208, 158);
    background-color: rgb(250, 248, 238) !important;
    --background-color: rgb(250, 248, 238) !important;
    --tve-applied-background-color: rgb(250, 248, 238) !important;
  }

  .tve_lp .tcb-plain-text {
    --tcb-gallery-crop-size: 385px;
  }

  #tcb_landing_page pre {
    --tcb-gallery-crop-size: 385px;
  }

  [data-css="tve-u-199385904aa"] {
    max-width: 738px;
    --tve-alignment: center;
    float: none;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0px !important;
  }

  [data-css="tve-u-1993860d180"] {
    padding: 0px !important;
  }

  [data-css="tve-u-1993869fc76"] {
    padding: 0px !important;
    margin: 0px !important;
  }

  [data-css="tve-u-199387d73c9"] {
    padding: 0px !important;
    margin: 0px !important;
  }

  [data-css="tve-u-199388304fc"] {
    background-image: linear-gradient(rgb(251, 237, 237), rgb(251, 237, 237)) !important;
    --background-image: linear-gradient(rgb(251, 237, 237), rgb(251, 237, 237)) !important;
    --tve-applied-background-image: linear-gradient(rgb(251, 237, 237), rgb(251, 237, 237)) !important;
    background-size: auto !important;
    background-position: 50% 50% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    --background-size: auto !important;
    --background-position: 50% 50% !important;
    --background-attachment: scroll !important;
    --background-repeat: no-repeat !important;
  }

  [data-css="tve-u-1993888429f"] {
    background-image: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)) !important;
    --background-image: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)) !important;
    --tve-applied-background-image: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)) !important;
    background-size: auto !important;
    background-position: 50% 50% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    --background-size: auto auto !important;
    --background-position: 50% 50% !important;
    --background-attachment: scroll !important;
    --background-repeat: no-repeat !important;
  }

  [data-css="tve-u-199388afe00"] {
    --tve-color: rgb(13, 13, 13);
    --tve-alignment: center;
    float: none;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  [data-css="tve-u-199388afe02"] {
    --tve-color: rgb(110, 110, 110);
    --tve-border-width: 0px;
    border: none !important;
    --tve-applied-border: none !important;
  }

  [data-css="tve-u-199388afe06"] {
    --tve-color: rgb(110, 110, 110);
    --tve-border-width: 0px;
    border: none !important;
    --tve-applied-border: none !important;
  }

  [data-css="tve-u-199388afe00"] .thrv_toggle_title {
    --tve-font-weight: var(--g-regular-weight, normal);
    --tve-font-family: "Zen Maru Gothic";
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    background-image: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)) !important;
    background-size: auto !important;
    background-position: 50% 50% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    --background-image: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)) !important;
    --background-size: auto auto !important;
    --background-position: 50% 50% !important;
    --background-attachment: scroll !important;
    --background-repeat: no-repeat !important;
    --tve-applied-background-image: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)) !important;
  }

  [data-css="tve-u-199388e6080"] {
    background-image: linear-gradient(rgba(255, 255, 255, 0.47), rgba(255, 255, 255, 0.47)) !important;
    background-size: auto !important;
    background-position: 50% 50% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    --background-image: linear-gradient(rgba(255, 255, 255, 0.47), rgba(255, 255, 255, 0.47)) !important;
    --background-size: auto !important;
    --background-position: 50% 50% !important;
    --background-attachment: scroll !important;
    --background-repeat: no-repeat !important;
    --tve-applied-background-image: linear-gradient(rgba(255, 255, 255, 0.47), rgba(255, 255, 255, 0.47)) !important;
  }

  [data-css="tve-u-199388e6085"] {
    background-image: linear-gradient(rgba(255, 255, 255, 0.47), rgba(255, 255, 255, 0.47)) !important;
    background-size: auto !important;
    background-position: 50% 50% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    --background-image: linear-gradient(rgba(255, 255, 255, 0.47), rgba(255, 255, 255, 0.47)) !important;
    --background-size: auto !important;
    --background-position: 50% 50% !important;
    --background-attachment: scroll !important;
    --background-repeat: no-repeat !important;
    --tve-applied-background-image: linear-gradient(rgba(255, 255, 255, 0.47), rgba(255, 255, 255, 0.47)) !important;
  }

  [data-css="tve-u-199388e608a"] {
    background-image: linear-gradient(rgba(255, 255, 255, 0.47), rgba(255, 255, 255, 0.47)) !important;
    background-size: auto !important;
    background-position: 50% 50% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    --background-image: linear-gradient(rgba(255, 255, 255, 0.47), rgba(255, 255, 255, 0.47)) !important;
    --background-size: auto !important;
    --background-position: 50% 50% !important;
    --background-attachment: scroll !important;
    --background-repeat: no-repeat !important;
    --tve-applied-background-image: linear-gradient(rgba(255, 255, 255, 0.47), rgba(255, 255, 255, 0.47)) !important;
  }

  [data-css="tve-u-199388e608d"] {
    background-image: linear-gradient(rgba(255, 255, 255, 0.47), rgba(255, 255, 255, 0.47)) !important;
    background-size: auto !important;
    background-position: 50% 50% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    --background-image: linear-gradient(rgba(255, 255, 255, 0.47), rgba(255, 255, 255, 0.47)) !important;
    --background-size: auto !important;
    --background-position: 50% 50% !important;
    --background-attachment: scroll !important;
    --background-repeat: no-repeat !important;
    --tve-applied-background-image: linear-gradient(rgba(255, 255, 255, 0.47), rgba(255, 255, 255, 0.47)) !important;
  }

  :not(#tve) [data-css="tve-u-199388ee147"] {
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    line-height: 1.4em !important;
  }

  :not(#tve) [data-css="tve-u-199389104cb"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    line-height: 1.4em !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
  }

  :not(#tve) [data-css="tve-u-1993891b3c5"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    line-height: 1.4em !important;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
  }

  :not(#tve) [data-css="tve-u-19938923f5e"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    line-height: 1.4em !important;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
  }

  [data-css="tve-u-199389ba687"] {
    background-image: linear-gradient(rgb(251, 237, 237), rgb(251, 237, 237)) !important;
    --background-image: linear-gradient(rgb(251, 237, 237), rgb(251, 237, 237)) !important;
    --tve-applied-background-image: linear-gradient(rgb(251, 237, 237), rgb(251, 237, 237)) !important;
    background-size: auto !important;
    background-position: 50% 50% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    --background-size: auto !important;
    --background-position: 50% 50% !important;
    --background-attachment: scroll !important;
    --background-repeat: no-repeat !important;
  }

  [data-css="tve-u-199388afe00"] .tve-toggle-column {
    width: calc(100% + 0px) !important;
    margin-left: 0px !important;
  }

  [data-css="tve-u-199388afe00"] .tve-toggle-grid {
    margin-left: 0px !important;
  }

  [data-css="tve-u-19938b0daf3"] {
    min-height: 1px !important;
  }

  [data-css="tve-u-19938b13697"] {
    background-image: linear-gradient(rgba(231, 231, 231, 0.5), rgba(231, 231, 231, 0.5)) !important;
    background-size: auto !important;
    background-position: 50% 50% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    --background-image: linear-gradient(rgba(231, 231, 231, 0.5), rgba(231, 231, 231, 0.5)) !important;
    --background-size: auto auto !important;
    --background-position: 50% 50% !important;
    --background-attachment: scroll !important;
    --background-repeat: no-repeat !important;
    --tve-applied-background-image: linear-gradient(rgba(231, 231, 231, 0.5), rgba(231, 231, 231, 0.5)) !important;
  }

  [data-css="tve-u-19938b1b584"] {
    --tve-alignment: center;
    float: none;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  [data-css="tve-u-19938b2f101"] {
    max-width: 726px;
    --tve-alignment: center;
    float: none;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  [data-css="tve-u-19966119c6e"] {
    filter: grayscale(0%) brightness(100%) contrast(100%) blur(0px) sepia(0%) invert(0%) saturate(100%) hue-rotate(0deg);
    opacity: 1;
    background-image: url("../assets/img/top.webp") !important;
    background-size: cover !important;
    background-position: 50% 16% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    --background-image: url("../assets/img/top.webp") !important;
    --background-size: cover !important;
    --background-position: 50% 16% !important;
    --background-attachment: scroll !important;
    --background-repeat: no-repeat !important;
    --tve-applied-background-image: url("../assets/img/top.webp") !important;
  }

  [data-css="tve-u-199664b5504"] {
    width: 173px;
    float: right;
    z-index: 3;
    position: relative;
    --tve-alignment: right;
    top: 16px;
    left: 73px;
    margin-right: 150px !important;
    padding-right: 5px !important;
    margin-top: 0px !important;
  }

  [data-css="tve-u-199664b63bd"] {
    margin-top: 0px;
    margin-left: 0px;
    width: 100% !important;
    max-width: none !important;
  }

  [data-css="tve-u-199664b5504"] .tve_image_frame {
    height: 100%;
  }

  [data-css="tve-u-199664bcbdd"]::after {
    clear: both;
  }

  [data-css="tve-u-199666e9bec"] {
    background-image: linear-gradient(rgba(254, 218, 218, 0.5), rgba(254, 218, 218, 0.5)) !important;
    background-size: auto !important;
    background-position: 50% 50% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    --background-image: linear-gradient(rgba(254, 218, 218, 0.5), rgba(254, 218, 218, 0.5)) !important;
    --background-size: auto !important;
    --background-position: 50% 50% !important;
    --background-attachment: scroll !important;
    --background-repeat: no-repeat !important;
    --tve-applied-background-image: linear-gradient(rgba(254, 218, 218, 0.5), rgba(254, 218, 218, 0.5)) !important;
  }

  [data-css="tve-u-199666ebd97"] {
    max-width: 38.3%;
  }

  [data-css="tve-u-199666f0613"] {
    --tve-border-bottom-right-radius: 0px;
    border-bottom-right-radius: 0px;
    overflow: hidden;
    padding: 11px 0px 0px !important;
    margin-top: 0px !important;
  }

  [data-css="tve-u-199666fc13a"] {
    font-size: 24px !important;
  }

  :not(#tve) [data-css="tve-u-199666ffc11"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
	font-size: 18px;
    padding-top: 0px !important;
    margin-top: 0px !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
	line-height: 1.9em
  }

  :not(#tve) [data-css="tve-u-199666ffc11"] strong {
    font-weight: 700 !important;
  }

  [data-css="tve-u-199667109e6"] {
    font-family: "Zen Maru Gothic" !important;
    font-weight: 400 !important;
  }

  [data-css="tve-u-199667109e6"] strong {
    font-weight: 700 !important;
  }

  [data-css="tve-u-19966714447"] {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  [data-css="tve-u-1996674a712"] {
    background-image: linear-gradient(rgb(124, 87, 152), rgb(124, 87, 152)) !important;
    --background-image: linear-gradient(rgb(124, 87, 152), rgb(124, 87, 152)) !important;
    --tve-applied-background-image: linear-gradient(rgb(124, 87, 152), rgb(124, 87, 152)) !important;
    background-size: auto !important;
    background-position: 50% 50% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    --background-size: auto !important;
    --background-position: 50% 50% !important;
    --background-attachment: scroll !important;
    --background-repeat: no-repeat !important;
  }

  [data-css="tve-u-1996683ee6e"] {
    max-width: 100%;
    display: block;
    background-image: none !important;
    --background-image: none !important;
    --tve-applied-background-image: none !important;
    padding: 0px !important;
    --tve-applied-max-width: 100% !important;
    background-color: transparent !important;
    --background-color: transparent !important;
    --tve-applied-background-color: transparent !important;
  }

  [data-css="tve-u-199668b7eb4"] {
    padding: 0px !important;
  }

  [data-css="tve-u-199668be20e"] {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-bottom: 20px !important;
    margin-bottom: 0px !important;
  }

  [data-css="tve-u-199668cd38e"] {
    --tve-border-top-left-radius: 631px;
    border-radius: 631px 476px 316px 152px;
    overflow: hidden;
    --tve-border-bottom-right-radius: 316px;
    --tve-border-bottom-left-radius: 152px;
    --tve-border-top-right-radius: 476px;
    background-image: none !important;
    --background-image: none !important;
    --tve-applied-background-image: none !important;
  }

  [data-css="tve-u-19966c86354"] {
    margin-bottom: 0px !important;
  }

  [data-css="tve-u-19966d0489f"] {
    padding-bottom: 0px !important;
  }

  [data-css="tve-u-19966d0516f"] {
    margin-bottom: 0px !important;
  }

  [data-css="tve-u-19966fa9a8a"] {
    background-image: linear-gradient(rgba(251, 237, 237, 0.9), rgba(251, 237, 237, 0.9)) !important;
    background-size: auto !important;
    background-position: 50% 50% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    --background-image: linear-gradient(rgba(251, 237, 237, 0.9), rgba(251, 237, 237, 0.9)) !important;
    --background-size: auto !important;
    --background-position: 50% 50% !important;
    --background-attachment: scroll !important;
    --background-repeat: no-repeat !important;
    --tve-applied-background-image: linear-gradient(rgba(251, 237, 237, 0.9), rgba(251, 237, 237, 0.9)) !important;
  }

  :not(#tve) [data-css="tve-u-19966fcb636"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    font-size: 36px !important;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    padding-top: 0px !important;
    margin-top: 0px !important;
    color: rgb(124, 87, 152) !important;
    --tcb-applied-color: rgb(124, 87, 152) !important;
    --tve-applied-color: rgb(124, 87, 152) !important;
    line-height: 1.41em !important;
  }

  :not(#tve) [data-css="tve-u-19966fcb636"] strong {
    font-weight: 700 !important;
  }

  [data-css="tve-u-1997deb2570"] {
    max-width: 1164px;
  }

  :not(#tve) [data-css="tve-u-1997def4690"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    font-size: 36px !important;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    padding-top: 0px !important;
    margin-top: 0px !important;
    color: rgb(255, 255, 255) !important;
    --tcb-applied-color: rgb(255, 255, 255) !important;
    --tve-applied-color: rgb(255, 255, 255) !important;
    line-height: 1.41em !important;
  }

  :not(#tve) [data-css="tve-u-1997def4690"] strong {
    font-weight: 700 !important;
  }

  [data-css="tve-u-1997df61dbd"] {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  [data-css="tve-u-1997e7fb0fc"] {
    background-image: url("../assets/img/img05.webp") !important;
    background-size: contain !important;
    background-position: 100% 50% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    --background-image: url("../assets/img/img05.webp") !important;
    --background-size: contain !important;
    --background-position: 100% 50% !important;
    --background-attachment: scroll !important;
    --background-repeat: no-repeat !important;
    --tve-applied-background-image: url("../assets/img/img05.webp") !important;
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
	


  [data-css="tve-u-1997e8034c5"] {
    background-image: none !important;
    --background-image: none !important;
    --tve-applied-background-image: none !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
    --background-color: rgba(255, 255, 255, 0.9) !important;
    --tve-applied-background-color: rgba(255, 255, 255, 0.9) !important;
    padding: 10px !important;
  }

  [data-css="tve-u-1997e808a43"] {
    max-width: 131%;
    background-image: url("../assets/img/img04.webp") !important;
    background-size: contain !important;
    background-position: 0% 50% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    --background-image: url("../assets/img/img04.webp") !important;
    --background-size: contain !important;
    --background-position: 0% 50% !important;
    --background-attachment: scroll !important;
    --background-repeat: no-repeat !important;
    --tve-applied-background-image: url("../assets/img/img04.webp") !important;
    margin-top: 15px !important;
    margin-bottom: 15px !important;
    --tve-applied-max-width: 131% !important;
  }

  [data-css="tve-u-1997e815ea7"] {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    flex-direction: row !important;
  }

  [data-css="tve-u-1997e81ed60"] {
    font-family: "Zen Maru Gothic" !important;
    font-weight: 400 !important;
    font-size: 18px !important;
  }

  :not(#tve) [data-css="tve-u-1997e824aae"] {
    font-size: 24px !important;
  }

  [data-css="tve-u-1997e8282d0"] {
    min-height: unset;
    background-image: none !important;
    --background-image: none !important;
    --tve-applied-background-image: none !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
    --background-color: rgba(255, 255, 255, 0.9) !important;
    --tve-applied-background-color: rgba(255, 255, 255, 0.9) !important;
    padding: 10px !important;
    --tve-applied-min-height: unset !important;
    margin-bottom: 20px !important;
    margin-top: 20px !important;
  }

  [data-css="tve-u-1997e82f98f"] {
    font-family: "Zen Maru Gothic" !important;
    font-weight: 400 !important;
  }

  [data-css="tve-u-1997e82f98f"] strong {
    font-weight: 700 !important;
  }

  :not(#tve) [data-css="tve-u-1997e83b8cf"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
    font-size: 24px !important;
  }

  :not(#tve) [data-css="tve-u-1997e83b8d0"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
  }

  :not(#tve) [data-css="tve-u-1997e83b8cf"] strong {
    font-weight: 700 !important;
  }

  :not(#tve) [data-css="tve-u-1997e83b8d0"] strong {
    font-weight: 700 !important;
  }

  [data-css="tve-u-1997e898f70"] {
    background-image: url("../assets/img/top.webp") !important;
    --background-image: url("../assets/img/top.webp") !important;
    --tve-applied-background-image: url("../assets/img/top.webp") !important;
    margin-top: 15px !important;
    margin-bottom: 15px !important;
    background-size: contain !important;
    background-position: 100% 50% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    --background-size: contain !important;
    --background-position: 100% 50% !important;
    --background-attachment: scroll !important;
    --background-repeat: no-repeat !important;
  }

  [data-css="tve-u-1997e8cf9d1"] {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    --tve-applied-min-height: unset !important;
  }

  [data-css="tve-u-1997e8cf9d1"]>.tcb-flex-col>.tcb-col {
    min-height: unset;
  }

  :not(#tve) [data-css="tve-u-1997ec4fcef"] {
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
  }

  [data-css="tve-u-1997ec53b6b"] {
    font-family: "Zen Maru Gothic" !important;
    font-weight: 400 !important;
    font-size: 18px !important;
	line-height: 1.9em !important;
	}

  :not(#tve) [data-css="tve-u-1997ec84462"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
  }

  :not(#tve) [data-css="tve-u-1997ec84462"] strong {
    font-weight: 700 !important;
  }

  :not(#tve) [data-css="tve-u-1997ec89155"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
  }

  :not(#tve) [data-css="tve-u-1997ec89155"] strong {
    font-weight: 700 !important;
  }

  :not(#tve) [data-css="tve-u-1997ec89157"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
  }

  :not(#tve) [data-css="tve-u-1997ec89157"] strong {
    font-weight: 700 !important;
  }

  :not(#tve) [data-css="tve-u-1997ec89159"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
  }

  :not(#tve) [data-css="tve-u-1997ec89159"] strong {
    font-weight: 700 !important;
  }

  :not(#tve) [data-css="tve-u-1997ec8915b"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
  }

  :not(#tve) [data-css="tve-u-1997ec8915b"] strong {
    font-weight: 700 !important;
  }

  [data-css="tve-u-1997ecf2c77"] {
    max-width: 33.333%;
  }

  [data-css="tve-u-1997ecf69d7"] {
    margin-bottom: 20px !important;
    padding: 10px !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
    --background-color: rgba(255, 255, 255, 0.9) !important;
    --tve-applied-background-color: rgba(255, 255, 255, 0.9) !important;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 8px 12px 0px !important;
    --tve-applied-box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25) !important;
  }

  [data-css="tve-u-1997ecf7979"] {
    width: 100%;
    box-shadow: none;
    --tve-applied-box-shadow: none;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  [data-css="tve-u-1997ecfcca0"] {
    width: 100%;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  [data-css="tve-u-1997ecfd995"] {
    margin-bottom: 20px !important;
    padding: 10px !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
    --background-color: rgba(255, 255, 255, 0.9) !important;
    --tve-applied-background-color: rgba(255, 255, 255, 0.9) !important;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 8px 12px 0px !important;
    --tve-applied-box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25) !important;
  }

  [data-css="tve-u-1997ed000c6"] {
    width: 100%;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  [data-css="tve-u-1997ed0c956"] {
    margin-bottom: 20px !important;
    padding: 10px !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
    --background-color: rgba(255, 255, 255, 0.9) !important;
    --tve-applied-background-color: rgba(255, 255, 255, 0.9) !important;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 8px 12px 0px !important;
    --tve-applied-box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25) !important;
  }

  :not(#tve) [data-css="tve-u-1997ed210e0"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    font-size: 17px !important;
    
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
    padding-bottom: 26px !important;
    margin-bottom: 0px !important;
  }

  :not(#tve) [data-css="tve-u-1997ed34e69"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    font-size: 17px !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
  }

  :not(#tve) [data-css="tve-u-1997ed34e6b"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    font-size: 17px !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
  }

  :not(#tve) [data-css="tve-u-1997ed45660"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
    font-size: 24px !important;
    padding-bottom: 40px !important;
    margin-bottom: 0px !important;
  }

  :not(#tve) [data-css="tve-u-1997ed45660"] strong {
    font-weight: 700 !important;
  }

  :not(#tve) [data-css="tve-u-1997ed210e0"] strong {
    font-weight: 700 !important;
  }

  :not(#tve) [data-css="tve-u-1997ed484f5"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
    font-size: 24px !important;
  }

  :not(#tve) [data-css="tve-u-1997ed484f5"] strong {
    font-weight: 700 !important;
  }

  :not(#tve) [data-css="tve-u-1997ed34e69"] strong {
    font-weight: 700 !important;
  }

  :not(#tve) [data-css="tve-u-1997ed34e6b"] strong {
    font-weight: 700 !important;
  }

  :not(#tve) [data-css="tve-u-1997ed565e0"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
    
    padding-bottom: 7px !important;
    margin-bottom: 0px !important;
  }

  :not(#tve) [data-css="tve-u-1997ed565e0"] strong {
    font-weight: 700 !important;
  }

  :not(#tve) [data-css="tve-u-1997eee8e13"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    font-size: 24px !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
  }

  :not(#tve) [data-css="tve-u-1997eee8e13"] strong {
    font-weight: 700 !important;
  }

  [data-css="tve-u-1997eeedaa7"] {
    font-size: 17px !important;
  }

  [data-css="tve-u-1997eeedaa9"] {
    font-size: 17px !important;
  }

  [data-css="tve-u-1997eef0068"] {
    font-size: 17px !important;
  }

  [data-css="tve-u-1997eef0069"] {
    font-size: 17px !important;
  }

  [data-css="tve-u-1997eef006b"] {
    font-size: 17px !important;
  }

  [data-css="tve-u-1997eeff090"] {
    padding: 0px !important;
  }

  [data-css="tve-u-1997ef0163f"] {
    background-color: rgba(124, 87, 152, 0.9) !important;
    --background-color: rgba(124, 87, 152, 0.9) !important;
    --tve-applied-background-color: rgba(124, 87, 152, 0.9) !important;
  }

  :not(#tve) [data-css="tve-u-1997ef12239"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    font-size: 36px !important;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    padding-top: 0px !important;
    margin-top: 0px !important;
    color: rgb(255, 255, 255) !important;
    --tcb-applied-color: rgb(255, 255, 255) !important;
    --tve-applied-color: rgb(255, 255, 255) !important;
    line-height: 1.41em !important;
  }

  :not(#tve) [data-css="tve-u-1997ef12239"] strong {
    font-weight: 700 !important;
  }

  [data-css="tve-u-1997f0be1bd"] {
    max-width: 21.2%;
  }

  [data-css="tve-u-1997f0be1c0"] {
    max-width: 78.2%;
  }

  [data-css="tve-u-1997f0bfe06"] {
    max-width: 75%;
    --tve-alignment: center;
    float: none;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid rgb(255, 255, 255);
    border-left: none;
    border-image: initial;
    --tve-applied-border: 1px solid rgb(255, 255, 255);
    --tve-applied-max-width: 75% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  :not(#tve) [data-css="tve-u-1997f0d0833"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    color: rgb(124, 87, 152) !important;
    --tcb-applied-color: rgb(124, 87, 152) !important;
    --tve-applied-color: rgb(124, 87, 152) !important;
    padding-bottom: 5px !important;
	padding-top: 5px !important;
    margin-bottom: 0px !important;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
    font-size: 17px !important;
  }

  :not(#tve) [data-css="tve-u-1997f0d2a84"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    color: rgb(255, 255, 255) !important;
    --tcb-applied-color: rgb(255, 255, 255) !important;
    --tve-applied-color: rgb(255, 255, 255) !important;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
  }

  :not(#tve) [data-css="tve-u-1997f0d2a84"] strong {
    font-weight: 700 !important;
  }

  :not(#tve) [data-css="tve-u-1997f0d0833"] strong {
    font-weight: 700 !important;
  }

  [data-css="tve-u-1997f0de23b"] {
    padding: 20px 0px !important;
    flex-direction: row !important;
  }

  [data-css="tve-u-1997f0e7bed"] {
    float: left;
    z-index: 3;
    position: relative;
    --tve-alignment: left;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    background-color: rgb(255, 255, 255) !important;
    --background-color: rgb(255, 255, 255) !important;
    --tve-applied-background-color: rgb(255, 255, 255) !important;
  }

  [data-css="tve-u-1997f0eace4"] {
    justify-content: center !important;
  }

  :not(#tve) [data-css="tve-u-1997f0efb53"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    color: rgb(124, 87, 152) !important;
    --tcb-applied-color: rgb(124, 87, 152) !important;
    --tve-applied-color: rgb(124, 87, 152) !important;
    padding-bottom: 5px !important;
	padding-top: 5px !important;
    margin-bottom: 0px !important;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
    font-size: 17px !important;
  }

  :not(#tve) [data-css="tve-u-1997f0efb53"] strong {
    font-weight: 700 !important;
  }

  :not(#tve) [data-css="tve-u-1997f0f0d10"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    color: rgb(124, 87, 152) !important;
    --tcb-applied-color: rgb(124, 87, 152) !important;
    --tve-applied-color: rgb(124, 87, 152) !important;
    padding-bottom: 5px !important;
	padding-top: 5px !important;
    margin-bottom: 0px !important;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
    font-size: 17px !important;
  }

  :not(#tve) [data-css="tve-u-1997f0f0d10"] strong {
    font-weight: 700 !important;
  }

  :not(#tve) [data-css="tve-u-1997f0f1dfe"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    color: rgb(124, 87, 152) !important;
    --tcb-applied-color: rgb(124, 87, 152) !important;
    --tve-applied-color: rgb(124, 87, 152) !important;
    padding-bottom: 5px !important;
	padding-top: 5px !important;
    margin-bottom: 0px !important;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
    font-size: 17px !important;
  }

  :not(#tve) [data-css="tve-u-1997f0f1dfe"] strong {
    font-weight: 700 !important;
  }

  [data-css="tve-u-1997f0f7d0d"] {
    font-size: 14px !important;
  }

  :not(#tve) [data-css="tve-u-1997f0fac59"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    color: rgb(255, 255, 255) !important;
    --tcb-applied-color: rgb(255, 255, 255) !important;
    --tve-applied-color: rgb(255, 255, 255) !important;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    font-size: 17px !important;
  }

  :not(#tve) [data-css="tve-u-1997f0fac59"] strong {
    font-weight: 700 !important;
  }

  [data-css="tve-u-1997f0fc05f"] {
    font-size: 17px !important;
  }

  :not(#tve) [data-css="tve-u-1997f10007f"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    color: rgb(255, 255, 255) !important;
    --tcb-applied-color: rgb(255, 255, 255) !important;
    --tve-applied-color: rgb(255, 255, 255) !important;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    font-size: 17px !important;
  }

  :not(#tve) [data-css="tve-u-1997f10007f"] strong {
    font-weight: 700 !important;
  }

  [data-css="tve-u-1997f106f42"] {
    max-width: 78.8%;
  }

  [data-css="tve-u-1997f109089"] {
    padding: 20px 0px !important;
  }

  [data-css="tve-u-1997f110510"] {
    padding: 20px 0px !important;
  }

  [data-css="tve-u-1997f112aa3"] {
    padding: 20px 0px !important;
  }

  :not(#tve) [data-css="tve-u-1997f1183c6"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    color: rgb(255, 255, 255) !important;
    --tcb-applied-color: rgb(255, 255, 255) !important;
    --tve-applied-color: rgb(255, 255, 255) !important;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    font-size: 17px !important;
  }

  :not(#tve) [data-css="tve-u-1997f1183c6"] strong {
    font-weight: 700 !important;
  }

  [data-css="tve-u-1997f1e8dba"] {
    max-width: 100%;
    display: block;
    background-image: none !important;
    --background-image: none !important;
    --tve-applied-background-image: none !important;
    padding: 0px 0px 20px !important;
    --tve-applied-max-width: 100% !important;
    background-color: transparent !important;
    --background-color: transparent !important;
    --tve-applied-background-color: transparent !important;
    margin-bottom: 20px !important;
  }

  [data-css="tve-u-1997f1eb676"] {
    margin-top: 0px !important;
    padding-top: 0px !important;
  }

  [data-css="tve-u-1997f1ee3c4"] {
    margin-top: 0px !important;
    background-color: transparent !important;
    --background-color: transparent !important;
    --tve-applied-background-color: transparent !important;
  }

  [data-css="tve-u-1997f1eeac2"] {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  [data-css="tve-u-1997f204b05"] {
    float: left;
    z-index: 3;
    position: relative;
    --tve-alignment: left;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    background-color: rgb(255, 255, 255) !important;
    --background-color: rgb(255, 255, 255) !important;
    --tve-applied-background-color: rgb(255, 255, 255) !important;
  }

  [data-css="tve-u-1997f20dd4a"] {
    float: left;
    z-index: 3;
    position: relative;
    --tve-alignment: left;
    margin-left: auto!important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    background-color: rgb(255, 255, 255) !important;
    --background-color: rgb(255, 255, 255) !important;
    --tve-applied-background-color: rgb(255, 255, 255) !important;
  }

  [data-css="tve-u-1997f21368d"] {
    float: left;
    z-index: 3;
    position: relative;
    --tve-alignment: left;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    background-color: rgb(255, 255, 255) !important;
    --background-color: rgb(255, 255, 255) !important;
    --tve-applied-background-color: rgb(255, 255, 255) !important;
  }

  [data-css="tve-u-1997f22d81d"] {
    max-width: 100%;
    display: block;
    background-image: none !important;
    --background-image: none !important;
    --tve-applied-background-image: none !important;
    padding: 0px 0px 20px !important;
    --tve-applied-max-width: 100% !important;
    background-color: transparent !important;
    --background-color: transparent !important;
    --tve-applied-background-color: transparent !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  :not(#tve) [data-css="tve-u-1997f236b9b"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    font-size: 36px !important;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    padding-top: 0px !important;
    margin-top: 0px !important;
    color: rgb(124, 87, 152) !important;
    --tcb-applied-color: rgb(124, 87, 152) !important;
    --tve-applied-color: rgb(124, 87, 152) !important;
    line-height: 1.41em !important;
  }

  :not(#tve) [data-css="tve-u-1997f236b9b"] strong {
    font-weight: 700 !important;
  }

  [data-css="tve-u-1997f281d3f"] {
    max-width: 100%;
  }

  [data-css="tve-u-1997f2dd2df"] {
    max-width: 15%;
    float: right;
    z-index: 3;
    position: relative;
    --tve-alignment: right;
    --tve-applied-max-width: 15% !important;
    padding: 0px !important;
    margin-top: 10px !important;
  }

  [data-css="tve-u-1997f301d0a"]::after {
    clear: both;
  }

  [data-css="tve-u-1997f321439"] {
    padding: 0px !important;
  }

  [data-css="tve-u-1997f348442"] {
    box-shadow: none;
    --tve-applied-box-shadow: none;
  }

  :not(#tve) [data-css="tve-u-19966ee7fee"] {
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
  }

  :not(#tve) [data-css="tve-u-1997f3f68fb"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
    color: rgb(49, 49, 49) !important;
    --tcb-applied-color: rgb(49, 49, 49) !important;
    --tve-applied-color: rgb(49, 49, 49) !important;
    padding-top: 0px !important;
    margin-top: 0px !important;
    line-height: 1.15em !important;
  }

  :not(#tve) [data-css="tve-u-1997f3f68fb"] strong {
    font-weight: 700 !important;
  }

  [data-css="tve-u-19985157264"] {
    max-width: 21.6%;
  }

  [data-css="tve-u-19985157267"] {
    max-width: 78.4%;
  }

  [data-css="tve-u-1998515e54a"] {
    max-width: 21.2%;
  }

  :not(#tve) [data-css="tve-u-19985285f48"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    color: rgb(255, 255, 255) !important;
    --tcb-applied-color: rgb(255, 255, 255) !important;
    --tve-applied-color: rgb(255, 255, 255) !important;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    font-size: 14px !important;
  }

  :not(#tve) [data-css="tve-u-19985285f48"] strong {
    font-weight: 700 !important;
  }

  [data-css="tve-u-199852aa453"] {
    max-width: 50%;
  }

  [data-css="tve-u-19985458a46"] {
    max-width: 78.8%;
  }

  [data-css="tve-u-19985463901"] {
    max-width: 21.8%;
  }

  [data-css="tve-u-1998546771e"]::after {
    clear: both;
  }

  [data-css="tve-u-19985468f13"]::after {
    clear: both;
  }

  [data-css="tve-u-19985469ea0"]::after {
    clear: both;
  }

  [data-css="tve-u-1998546aa3b"]::after {
    clear: both;
  }

  [data-css="tve-u-19985819398"] {
    background-image: none !important;
    --background-image: none !important;
    --tve-applied-background-image: none !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
    --background-color: rgba(255, 255, 255, 0.9) !important;
    --tve-applied-background-color: rgba(255, 255, 255, 0.9) !important;
    padding: 10px !important;
  }

  [data-css="tve-u-1997bd13db6"] {
    margin-left: 0px;
    margin-top: 0px;
    width: 100% !important;
    max-width: none !important;
  }

  [data-css="tve-u-1997ecf7979"] .tve_image_frame {
    height: 100%;
  }

  [data-css="tve-u-1998b2d3b51"] {
    font-size: 17px !important;
  }

  [data-css="tve-u-1998b2d707a"] {
    font-size: 18px !important;
  }

  [data-css="tve-u-1998b2d5301"] {
    font-size: 18px !important;
  }

  [data-css="tve-u-1998b2d3b4f"] {
    font-size: 18px !important;
  }

  [data-css="tve-u-19998b58c24"] {
    background-color: rgb(124, 87, 152) !important;
    --background-color: rgb(124, 87, 152) !important;
    --tve-applied-background-color: rgb(124, 87, 152) !important;
    margin-top: 0px !important;
  }

  [data-css="tve-u-19998b5b106"] {
    padding: 5px !important;
  }

  [data-css="tve-u-19998b609e7"] {
    max-width: 50%;
  }

  [data-css="tve-u-19998b61016"] {
    justify-content: center !important;
  }

  [data-css="tve-u-19998b61d7c"] {
    max-width: 50%;
  }

  [data-css="tve-u-19998b75833"] {
    background-color: rgb(239, 171, 171) !important;
    --background-color: rgb(239, 171, 171) !important;
    --tve-applied-background-color: rgb(239, 171, 171) !important;
  }

  [data-css="tve-u-199991e80e7"] {
    background-color: rgb(251, 237, 237) !important;
    --background-color: rgb(251, 237, 237) !important;
    --tve-applied-background-color: rgb(251, 237, 237) !important;
  }

  [data-css="tve-u-199991f0fbf"] {
    max-width: 1164px;
    --tve-alignment: center;
    float: none;
    --tve-applied-max-width: 1164px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  :not(#tve) [data-css="tve-u-199991f9a24"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    font-size: 36px !important;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    padding-top: 0px !important;
    margin-top: 0px !important;
    color: rgb(124, 87, 152) !important;
    --tcb-applied-color: rgb(124, 87, 152) !important;
    --tve-applied-color: rgb(124, 87, 152) !important;
    line-height: 1.9em !important;
  }

  :not(#tve) [data-css="tve-u-199991f9a24"] strong {
    font-weight: 700 !important;
  }

  [data-css="tve-u-199992051d7"] {
    max-width: 75%;
    --tve-alignment: center;
    float: none;
    --tve-applied-max-width: 75% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  [data-css="tve-u-19999209b1c"] {
    height: 363px;
    max-width: 75%;
    --tve-alignment: center;
    float: none;
    --tve-applied-max-width: 75% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  :not(#tve) [data-css="tve-u-1999922ec63"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
  }

  [data-css="tve-u-19999252698"] {
    max-width: 75%;
    --tve-alignment: center;
    float: none;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid rgb(255, 255, 255);
    border-left: none;
    border-image: initial;
    --tve-applied-border: 1px solid rgb(255, 255, 255);
    --tve-applied-max-width: 75% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  [data-css="tve-u-19999253c08"] {
    max-width: 75%;
    --tve-alignment: center;
    float: none;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid rgb(255, 255, 255);
    border-left: none;
    border-image: initial;
    --tve-applied-border: 1px solid rgb(255, 255, 255);
    --tve-applied-max-width: 75% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  [data-css="tve-u-19999254f36"] {
    max-width: 75%;
    --tve-alignment: center;
    float: none;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid rgb(255, 255, 255);
    border-left: none;
    border-image: initial;
    --tve-applied-border: 1px solid rgb(255, 255, 255);
    --tve-applied-max-width: 75% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  [data-css="tve-u-199997c18ba"] {
    min-height: 1px !important;
  }

  [data-css="tve-u-199997c32f7"] {
    max-width: 50%;
  }

  [data-css="tve-u-199997d3fb4"] {
    width: 315px;
    margin: 0px !important;
  }

  [data-css="tve-u-199997d4a39"] {
    max-width: 50%;
  }

  [data-css="tve-u-199997dca2d"] {
    width: 194px;
    float: right;
    z-index: 3;
    position: relative;
    --tve-alignment: right;
    margin: 0px !important;
  }

  [data-css="tve-u-199997deb49"]::after {
    clear: both;
  }

  [data-css="tve-u-199997e4165"] {
    padding: 5px !important;
  }

  [data-css="tve-u-199997ea657"] {
    padding: 0px !important;
  }

  [data-css="tve-u-199997dca2d"] .tve_image_frame {
    height: 100%;
  }

  [data-css="tve-u-199997f12d8"] {
    margin-top: 0px;
    margin-left: 0px;
    width: 100% !important;
    max-width: none !important;
  }

  [data-css="tve-u-1999a597db8"] {
    width: 311px;
  }

  :not(#tve) [data-css="tve-u-1999922ec63"] strong {
    font-weight: 700 !important;
  }

  :not(#tve) [data-css="tve-u-1999a66cd8d"] {
    line-height: 1.05em !important;
  }

  [data-css="tve-u-1999cf87a6b"] {
    max-width: 61.7%;
  }

  [data-css="tve-u-1999dd0fc9a"] {
    background-color: rgb(247, 225, 168) !important;
  }

  [data-css="tve-u-199af1e7ce9"] {
    font-size: 10px !important;
  }

  [data-css="tve-u-199af1ec7c9"] {
    font-size: 10px !important;
  }

  [data-css="tve-u-199af1ef3dd"] {
    font-size: 10px !important;
  }

  [data-css="tve-u-199b7efee05"] {
    max-width: 50.2%;
  }

  :not(#tve) [data-css="tve-u-199b7f3ce77"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    line-height: 1.35em !important;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
  }

  [data-css="tve-u-199b858fe28"] {
    font-size: 10px !important;
  }

  [data-css="tve-u-199b8592c24"] {
    font-size: 10px !important;
  }

  [data-css="tve-u-199b85b093f"] {
    font-size: 12px !important;
    font-family: "Zen Maru Gothic" !important;
    font-weight: 400 !important;
  }

  :not(#tve) [data-css="tve-u-199b85b188b"] {
    line-height: 0.95em !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
  }

  :not(#tve) [data-css="tve-u-199388afe00"] .thrv_toggle_title .tve-toggle-text {
    font-weight: var(--tve-font-weight, var(--g-regular-weight, normal)) !important;
    font-family: var(--tve-font-family, "Zen Maru Gothic") !important;
  }

  [data-css="tve-u-19938953174"] {
    font-family: "Zen Maru Gothic" !important;
    font-weight: 400 !important;
  }

  [data-css="tve-u-19938953174"] strong {
    font-weight: 700 !important;
  }

  :not(#tve) [data-css="tve-u-1993891b3c5"] strong {
    font-weight: 700 !important;
  }

  :not(#tve) [data-css="tve-u-199389104cb"] strong {
    font-weight: 700 !important;
  }

  :not(#tve) [data-css="tve-u-19938923f5e"] strong {
    font-weight: 700 !important;
  }

  [data-css="tve-u-199b85b093f"] strong {
    font-weight: 700 !important;
  }

  :not(#tve) [data-css="tve-u-199b7f3ce77"] strong {
    font-weight: 700 !important;
  }

  [data-css="tve-u-199b8bb50d4"] {
    width: 100%;
    --tve-border-radius: 15px;
    border-radius: 15px;
    overflow: hidden;
    top: 0px;
    display: inline-block;
    padding-right: 0px !important;
    margin-bottom: 20px !important;
    z-index: 3 !important;
    margin-top: 20px !important;
  }

  [data-css="tve-u-199b8bb50d4"] .tve_image_frame {
    height: 100%;
  }

  [data-css="tve-u-199b8bb50d4"] img {
    filter: grayscale(0%) blur(0px) brightness(100%) sepia(0%) invert(0%) saturate(100%) contrast(100%) hue-rotate(0deg);
    opacity: 1;
  }

  [data-css="tve-u-199b942b649"] {
    max-width: 49.8%;
  }
}

@media (max-width:1023px) {
  #tcb_landing_page h1 {
    --tcb-gallery-crop-size: 385px;
  }

  #tcb_landing_page h2 {
    --tcb-gallery-crop-size: 385px;
  }

  #tcb_landing_page h3 {
    --tcb-gallery-crop-size: 385px;
  }

  #tcb_landing_page h4 {
    --tcb-gallery-crop-size: 385px;
  }

  #tcb_landing_page h5 {
    --tcb-gallery-crop-size: 385px;
  }

  #tcb_landing_page h6 {
    --tcb-gallery-crop-size: 385px;
  }

  #tcb_landing_page p {
    --tcb-gallery-crop-size: 385px;
  }

  #tcb_landing_page .thrv_text_element a:not(.tcb-button-link),
  #tcb_landing_page .tcb-styled-list a,
  #tcb_landing_page .tcb-numbered-list a,
  #tcb_landing_page .tve-input-option-text a {
    --tcb-gallery-crop-size: 385px;
  }

  #tcb_landing_page ul:not([class*="menu"]),
  #tcb_landing_page ol {
    --tcb-gallery-crop-size: 385px;
  }

  #tcb_landing_page li:not([class*="menu"]) {
    --tcb-gallery-crop-size: 385px;
  }

  #tcb_landing_page blockquote {
    --tcb-gallery-crop-size: 385px;
  }

  .tve_lp .tcb-plain-text {
    --tcb-gallery-crop-size: 385px;
  }

  #tcb_landing_page pre {
    --tcb-gallery-crop-size: 385px;
  }

  .tcb-logo.m-18309305f13 {
    width: 0px;
  }

  [data-css="tve-u-199b942b649"] {
    max-width: 49.5%;
  }

  [data-css="tve-u-199b7efee05"] {
    max-width: 50.5%;
  }

  [data-css="tve-u-1997e898f70"] {
    background-image: url("../assets/img/top.webp") !important;
    background-size: contain !important;
    background-position: 100% 50% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    --background-image: url("../assets/img/top.webp") !important;
    --background-size: contain !important;
    --background-position: 100% 50% !important;
    --background-attachment: scroll !important;
    --background-repeat: no-repeat !important;
    --tve-applied-background-image: url("../assets/img/top.webp") !important;
  }

  [data-css="tve-u-1997e8cf9d1"]>.tcb-flex-col {
    padding-left: 15px;
  }

  [data-css="tve-u-1997e8cf9d1"] {
    margin-left: -15px !important;
    flex-direction: row !important;
  }

  [data-css="tve-u-1997f1eeac2"] {
    flex-wrap: nowrap !important;
  }
}

@media (max-width:767px) {
  #tcb_landing_page h1 {
    --tcb-gallery-crop-size: 454px;
  }

  #tcb_landing_page h2 {
    --tcb-gallery-crop-size: 454px;
  }

  #tcb_landing_page h3 {
    --tcb-gallery-crop-size: 454px;
  }

  #tcb_landing_page h4 {
    --tcb-gallery-crop-size: 454px;
  }

  #tcb_landing_page h5 {
    --tcb-gallery-crop-size: 454px;
  }

  #tcb_landing_page h6 {
    --tcb-gallery-crop-size: 454px;
  }

  #tcb_landing_page p {
    --tcb-gallery-crop-size: 454px;
    font-size: 17px;
    --tcb-typography-font-size: 17px;
    line-height: 1.8em;
    --tcb-typography-line-height: 1.8em;
  }

  #tcb_landing_page .thrv_text_element a:not(.tcb-button-link),
  #tcb_landing_page .tcb-styled-list a,
  #tcb_landing_page .tcb-numbered-list a,
  #tcb_landing_page .tve-input-option-text a {
    --tcb-gallery-crop-size: 454px;
    font-size: 17px;
    --tcb-typography-font-size: 17px;
    line-height: 1.8em;
    --tcb-typography-line-height: 1.8em;
  }

  #tcb_landing_page ul:not([class*="menu"]),
  #tcb_landing_page ol {
    --tcb-gallery-crop-size: 454px;
    font-size: 17px;
    --tcb-typography-font-size: 17px;
    line-height: 1.8em;
    --tcb-typography-line-height: 1.8em;
  }

  #tcb_landing_page li:not([class*="menu"]) {
    --tcb-gallery-crop-size: 454px;
    font-size: 17px;
    --tcb-typography-font-size: 17px;
    line-height: 1.8em;
    --tcb-typography-line-height: 1.8em;
  }

  #tcb_landing_page blockquote {
    --tcb-gallery-crop-size: 454px;
    font-size: 17px;
    --tcb-typography-font-size: 17px;
    line-height: 1.8em;
    --tcb-typography-line-height: 1.8em;
  }

  .tve_lp .tcb-plain-text {
    --tcb-gallery-crop-size: 454px;
    font-size: 17px;
    --tcb-typography-font-size: 17px;
    line-height: 1.8em;
    --tcb-typography-line-height: 1.8em;
  }

  #tcb_landing_page pre {
    --tcb-gallery-crop-size: 454px;
  }

  [data-css="tve-u-199388afe00"] {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  :not(#tve) [data-css="tve-u-199388afe00"] .thrv_toggle_title .tve-toggle-text {
    font-size: var(--tve-font-size, 14px) !important;
  }

  [data-css="tve-u-199388afe00"] .thrv_toggle_title {

    --tve-font-size: 14px;
  }

  :not(#tve) [data-css="tve-u-1993891b3c5"] {
    font-size: 14px !important;
  }

  [data-css="tve-u-19938951222"] {
    font-size: 14px !important;
  }

  [data-css="tve-u-19938953174"] {
    font-size: 14px !important;
  }

  :not(#tve) [data-css="tve-u-19938923f5e"] {
    font-size: 14px !important;
  }

  [data-css="tve-u-19966119c6e"] {
    background-image: url("../assets/img/top2.webp") !important;
    background-size: cover !important;
    background-position: 77% 16% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    --background-image: url("../assets/img/top2.webp") !important;
    --background-size: cover !important;
    --background-position: 77% 16% !important;
    --background-attachment: scroll !important;
    --background-repeat: no-repeat !important;
    --tve-applied-background-image: url("../assets/img/top2.webp") !important;
  }

  [data-css="tve-u-199664b5504"] {
    float: right;
    z-index: 3;
    position: relative;
    --tve-alignment: right;
    width: 107px;
    left: 0px;
    margin-left: auto !important;
    margin-right: 10px !important;
    padding-right: 15px !important;
  }

  [data-css="tve-u-199664bcbdd"]::after {
    clear: both;
  }

  [data-css="tve-u-199664b5504"] .tve_image_frame {
    height: 100%;
  }

  [data-css="tve-u-199664b63bd"] {
    margin-top: 0px;
    margin-left: 0px;
    width: 100% !important;
    max-width: none !important;
  }

  [data-css="tve-u-19966d0489f"] {
    flex-flow: row-reverse wrap-reverse !important;
    padding-top: 0px !important;
  }

  [data-css="tve-u-19966d0489f"]>.tcb-flex-col {
    flex-basis: 390px !important;
  }

  [data-css="tve-u-199668be20e"] {
    padding: 0px !important;
    margin-bottom: 20px !important;
    margin-left: 10px !important;
    margin-right: 10px !important;
  }

  [data-css="tve-u-19966714447"] {
    padding: 0px !important;
  }

  :not(#tve) [data-css="tve-u-19966ee7fee"] {
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
  }

  [data-css="tve-u-19966d0516f"] {
    margin-top: 0px !important;
  }

  [data-css="tve-u-1997bd13db6"] {
    margin-top: 0px;
    margin-left: 0px;
    width: 100% !important;
    max-width: none !important;
  }

  [data-css="tve-u-1997dee8429"]::after {
    clear: both;
  }

  :not(#tve) [data-css="tve-u-1997def4690"] {
    padding-bottom: 9px !important;
    margin-bottom: 0px !important;
    font-size: 24px !important;
  }

  [data-css="tve-u-1997df61dbd"] {
    min-height: inherit;
  }

  [data-css="tve-u-1997df61dbd"]>.tcb-flex-col>.tcb-col {
    min-height: 1px;
  }

  [data-css="tve-u-1997deb2570"] {
    padding-right: 0px !important;
  }

  [data-css="tve-u-1997e7fb0fc"] {
    max-width: 95%;
    float: right;
    z-index: 3;
    position: relative;
    --tve-alignment: right;
    --tve-applied-max-width: 95% !important;
    background-image: url("../assets/img/img05-1.webp") !important;
    background-size: cover !important;
    background-position: 71% 50% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    --background-image: url("../assets/img/img05-1.webp") !important;
    --background-size: cover !important;
    --background-position: 71% 50% !important;
    --background-attachment: scroll !important;
    --background-repeat: no-repeat !important;
    --tve-applied-background-image: url("../assets/img/img05-1.webp") !important;
    margin-bottom: 181px !important;
  }

  [data-css="tve-u-1997e8034c5"] {
    left: -27px;
    top: 206px;
    max-width: 92%;
    position: relative !important;
    --tve-applied-max-width: 92% !important;
    background-color: transparent !important;
    --background-color: transparent !important;
    --tve-applied-background-color: transparent !important;
    background-image: linear-gradient(rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.85) 41%) !important;
    --background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.85) 41%) !important;
    --tve-applied-background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.85) 41%) !important;
    background-size: auto !important;
    background-position: 50% 50% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    --background-size: auto !important;
    --background-position: 50% 50% !important;
    --background-attachment: scroll !important;
    --background-repeat: no-repeat !important;
  }

  [data-css="tve-u-1997e808a43"] {
    max-width: 95%;
    float: right;
    z-index: 3;
    position: relative;
    --tve-alignment: right;
    --tve-applied-max-width: 95% !important;
    background-image: url("./"assets/img/img04.webp"") !important;
    background-size: cover !important;
    background-position: 41% 50% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    --background-image: url("../assets/img/img04.webp") !important;
    --background-size: cover !important;
    --background-position: 41% 50% !important;
    --background-attachment: scroll !important;
    --background-repeat: no-repeat !important;
    --tve-applied-background-image: url("../assets/img/img04.webp") !important;
    margin-bottom: 144px !important;
  }

  [data-css="tve-u-1997e815ea7"] {
    min-height: inherit;
    padding-bottom: 30px !important;
  }

  [data-css="tve-u-1997e815ea7"]>.tcb-flex-col>.tcb-col {
    min-height: 1px;
  }

  [data-css="tve-u-1997e8282d0"] {
    left: -27px;
    top: 210px;
    max-width: 92%;
    position: relative !important;
    --tve-applied-max-width: 92% !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
    --background-color: rgba(255, 255, 255, 0.9) !important;
    --tve-applied-background-color: rgba(255, 255, 255, 0.9) !important;
  }

  [data-css="tve-u-1997e898f70"] {
    max-width: 95%;
    float: right;
    z-index: 3;
    position: relative;
    --tve-alignment: right;
    --tve-applied-max-width: 95% !important;
    background-image: none !important;
    --background-image: none !important;
    --tve-applied-background-image: none !important;
    margin-bottom: 200px !important;
  }

  [data-css="tve-u-1997e8cf9d1"] {
    min-height: inherit;
    --tve-applied-min-height: 0px !important;
    padding-bottom: 0px !important;
  }

  [data-css="tve-u-1997e8cf9d1"]>.tcb-flex-col>.tcb-col {
    min-height: 1px;
  }

  [data-css="tve-u-1997eb86ca6"] {
    background-image: url("../assets/img/top.webp") !important;
    --background-image: url("../assets/img/top.webp") !important;
    --tve-applied-background-image: url("../assets/img/top.webp") !important;
    background-size: cover !important;
    background-position: 43% 43% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    --background-size: cover !important;
    --background-position: 43% 43% !important;
    --background-attachment: scroll !important;
    --background-repeat: no-repeat !important;
  }

  [data-css="tve-u-1997e82f98f"] {
    font-family: "Zen Maru Gothic" !important;
  }

  [data-css="tve-u-1997ec53b6b"] {
    font-family: "Zen Maru Gothic" !important;
    font-weight: 400 !important;
    font-size: 17px !important;
  }

  [data-css="tve-u-1997e81ed60"] {
    font-family: "Zen Maru Gothic" !important;
    font-weight: 400 !important;
    font-size: 17px !important;
  }

  :not(#tve) [data-css="tve-u-1997ec84462"] {
    
  }

  :not(#tve) [data-css="tve-u-1997ec89155"] {
    
  }

  :not(#tve) [data-css="tve-u-1997ec89157"] {
    
  }

  :not(#tve) [data-css="tve-u-1997ec89159"] {
    
  }

  :not(#tve) [data-css="tve-u-1997ec8915b"] {
    
  }

  :not(#tve) [data-css="tve-u-1997e83b8d0"] {
    
  }

  [data-css="tve-u-1997ecdbf0c"] {
    overflow: auto;
  }

  [data-css="tve-u-199387d73c9"]>.tve-cb {
    display: block;
  }

  [data-css="tve-u-1997f1e8dba"] {
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
  }

  [data-css="tve-u-1997f1ff3c5"] {
    padding-bottom: 0px !important;
  }

  [data-css="tve-u-1997f20dd4a"] {
    margin-bottom: 20px !important;
  }

  [data-css="tve-u-1997f204b05"] {
    margin-bottom: 20px !important;
  }

  [data-css="tve-u-1997f21368d"] {
    margin-bottom: 20px !important;
  }

  [data-css="tve-u-1997f0e7bed"] {
    margin-bottom: 20px !important;
  }

  [data-css="tve-u-1997f2dd2df"] {
    max-width: 34%;
    float: right;
    z-index: 3;
    position: relative;
    --tve-alignment: right;
    --tve-applied-max-width: 34% !important;
    margin-right: 15px !important;
    padding-right: 1px !important;
  }

  [data-css="tve-u-1997f301d0a"]::after {
    clear: both;
  }

  :not(#tve) [data-css="tve-u-1997ed565e0"] {
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
  }

  [data-css="tve-u-19966c86354"] {
    margin-bottom: 0px !important;
  }

  [data-css="tve-u-19985819398"] {
    left: -27px;
    top: 167px;
    max-width: 92%;
    position: relative !important;
    --tve-applied-max-width: 92% !important;
    background-color: rgba(255, 255, 255, 0.85) !important;
    --background-color: rgba(255, 255, 255, 0.85) !important;
    --tve-applied-background-color: rgba(255, 255, 255, 0.85) !important;
  }

  [data-css="tve-u-1998b2d3b4f"] {
    font-size: 18px !important;
  }

  [data-css="tve-u-1998b2d3b51"] {
    font-size: 17px !important;
  }

  [data-css="tve-u-1997eef0068"] {
    font-size: 17px !important;
  }

  [data-css="tve-u-1997eef0069"] {
    font-size: 17px !important;
  }

  [data-css="tve-u-1997eef006b"] {
    font-size: 17px !important;
  }

  [data-css="tve-u-1998b2d5301"] {
    font-size: 18px !important;
  }

  [data-css="tve-u-1997eeedaa7"] {
    font-size: 17px !important;
  }

  [data-css="tve-u-1997eeedaa9"] {
    font-size: 17px !important;
  }

  [data-css="tve-u-1998b2d707a"] {
    font-size: 18px !important;
  }

  [data-css="tve-u-19998b5b106"] {
    flex-wrap: nowrap !important;
    padding: 10px !important;
  }

  :not(#tve) [data-css="tve-u-1997f3f68fb"] {
    padding-top: 0px !important;
    margin-top: 0px !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    color: rgb(49, 49, 49) !important;
    --tcb-applied-color: rgb(49, 49, 49) !important;
    --tve-applied-color: rgb(49, 49, 49) !important;
  }

  [data-css="tve-u-19998b61d7c"] {
    max-width: 50%;
  }

  [data-css="tve-u-19998b609e7"] {
    max-width: 50%;
  }

  [data-css="tve-u-19998b5b106"]>.tcb-flex-col>.tcb-col {
    justify-content: center;
  }

  [data-css="tve-u-19998b58c24"] {
    background-color: rgb(124, 87, 152) !important;
    --background-color: rgb(124, 87, 152) !important;
    --tve-applied-background-color: rgb(124, 87, 152) !important;
  }

  [data-css="tve-u-199992051d7"] {
    max-width: 100%;
    --tve-applied-max-width: 100% !important;
  }

  [data-css="tve-u-19999209b1c"] {
    max-width: 100%;
    --tve-applied-max-width: 100% !important;
  }

  :not(#tve) [data-css="tve-u-1999924d163"] {
    text-decoration-line: underline !important;
    --eff: thin !important;
    text-decoration-color: var(--eff-color, currentColor) !important;
  }

  [data-css="tve-u-19999252698"] {
    max-width: 100%;
    --tve-applied-max-width: 100% !important;
  }

  [data-css="tve-u-19999253c08"] {
    max-width: 100%;
    --tve-applied-max-width: 100% !important;
  }

  [data-css="tve-u-19999254f36"] {
    max-width: 100%;
    --tve-applied-max-width: 100% !important;
  }

  [data-css="tve-u-1997f0bfe06"] {
    max-width: 100%;
    --tve-applied-max-width: 100% !important;
  }

  [data-css="tve-u-199997e4165"] {
    flex-wrap: nowrap !important;
  }

  [data-css="tve-u-199997d4a39"] {
    max-width: 50%;
  }

  [data-css="tve-u-199997e4165"]>.tcb-flex-col>.tcb-col {
    justify-content: center;
  }

  [data-css="tve-u-19998b75833"] {
    --tve-border-radius: 8px;
    overflow: hidden;
    --tve-border-width: 2px;
    border-radius: 8px !important;
    background-color: rgb(255, 249, 234) !important;
    --background-color: rgb(255, 249, 234) !important;
    --tve-applied-background-color: rgb(255, 249, 234) !important;
    border: 2px solid rgb(188, 133, 43) !important;
    --tve-applied-border: 2px solid rgb(188, 133, 43) !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }

  [data-css="tve-u-19998b61016"] {
    padding-right: 0px !important;
    margin-right: 0px !important;
  }

  [data-css="tve-u-199997dca2d"] {
    width: 315px;
  }

  [data-css="tve-u-199666e9bec"] {
    background-image: linear-gradient(rgba(254, 218, 218, 0.5), rgba(254, 218, 218, 0.5)) !important;
    background-size: auto !important;
    background-position: 50% 50% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    --background-image: linear-gradient(rgba(254, 218, 218, 0.5), rgba(254, 218, 218, 0.5)) !important;
    --background-size: auto !important;
    --background-position: 50% 50% !important;
    --background-attachment: scroll !important;
    --background-repeat: no-repeat !important;
    --tve-applied-background-image: linear-gradient(rgba(254, 218, 218, 0.5), rgba(254, 218, 218, 0.5)) !important;
  }

  [data-css="tve-u-19966fa9a8a"] {
    background-image: linear-gradient(rgba(251, 237, 237, 0.9), rgba(251, 237, 237, 0.9)) !important;
    background-size: auto !important;
    background-position: 50% 50% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    --background-image: linear-gradient(rgba(251, 237, 237, 0.9), rgba(251, 237, 237, 0.9)) !important;
    --background-size: auto !important;
    --background-position: 50% 50% !important;
    --background-attachment: scroll !important;
    --background-repeat: no-repeat !important;
    --tve-applied-background-image: linear-gradient(rgba(251, 237, 237, 0.9), rgba(251, 237, 237, 0.9)) !important;
  }

  [data-css="tve-u-1999a597db8"] {
    margin: 0px !important;
  }

  :not(#tve) [data-css="tve-u-1999922ec63"] {
    font-size: 17px !important;
  }

  [data-css="tve-u-1999a5ec681"] {
    font-size: 14px !important;
  }

  [data-css="tve-u-1999a5f9dc7"] {
    font-size: 14px !important;
  }

  :not(#tve) [data-css="tve-u-199b7f3ce77"] {
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    line-height: 1.4em !important;
  }

  [data-css="tve-u-199b7f461f3"] {
    font-size: 16px !important;
  }

  [data-css="tve-u-1997f1ee3c4"] {
    margin-bottom: 0px !important;
  }

  [data-css="tve-u-1997f1eeac2"] {
    padding-bottom: 0px !important;
    flex-flow: wrap !important;
  }

  :not(#tve) [data-css="tve-u-199388ee147"] {
    line-height: 1.4em !important;
  }

  [data-css="tve-u-199b8bb50d4"] {
    box-shadow: none;
    --tve-applied-box-shadow: none;
    width: 100%;
    --tve-alignment: center;
    float: none;
    padding-right: 0px !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  [data-css="tve-u-199b8bb50d4"] .tve_image_frame {
    height: 100%;
  }

  [data-css="tve-u-1997f1eeac2"]>.tcb-flex-col {
    flex-basis: 390px !important;
  }

  [data-css="tve-u-199b85b093f"] {
    font-size: 10px !important;
    font-family: "Zen Maru Gothic" !important;
    font-weight: 400 !important;
  }
}

html {
  height: auto;
}

html.tcb-editor {
  overflow-y: initial;
}

body:before,
body:after {
  height: 0 !important;
}

.thrv_page_section .out {
  max-width: none
}

.tve_wrap_all {
  position: relative;
}

.thrv-page-section[data-inherit-lp-settings="1"] .tve-page-section-in {
  max-width: 1080px !important;
  max-width: var(--page-section-max-width) !important;
}

body.tcb-full-header .thrv_header,
body.tcb-full-footer .thrv_footer {
  width: 100vw;
  max-width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}

.thrv-page-section,
.tve-page-section-out,
.tve-content-box-background,
.symbol-section-out,
.tcb-lp-content {
  transform: none !important;
  overflow: visible !important;
}

.thrv_wrapper[data-css="tve-u-19998b58c24"] {
  position: relative;
  width: 100%;
  background: #fff;
  z-index: 9;
  transition: none;
}

.thrv_wrapper[data-css="tve-u-19998b58c24"].fixed-bottom {
  position: fixed !important;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 2147483647 !important;
  isolation: isolate;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}

body,
html {
  overflow-x: visible !important;
}

@media (min-width:768px) {
  .thrv_wrapper[data-css="tve-u-19998b58c24"] {
    display: none !important;
  }
}

.tve_image_caption {
  position: relative;
}

.tve_image_caption:not(.tcb-mm-image.tve-tab-image) {
  height: auto !important;
}

.tve_image_caption .tve_image {
  max-width: 100%;
  width: 100%;
}

.thrv_text_element a:not(.tcb-button-link) {
  font-size: inherit;
}

.tcb-style-wrap strong {
  font-weight: var(--g-bold-weight, bold);
}

.thrv_text_element {
  overflow-wrap: break-word;
}

.thrive-symbol-shortcode {
  position: relative;
}

body:not(.tve_editor_page) .thrv_wrapper.thrv_header {
  padding: 0px;
}

.tcb-logo {
  display: block;
  max-width: 100%;
  width: 240px;
  box-sizing: border-box !important;
}

.tcb-logo.thrv_wrapper {
  padding: 0px;
}

.tcb-logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.notifications-content-wrapper.tcb-permanently-hidden {
  display: none !important;
}

.tcb-permanently-hidden {
  display: none !important;
}

.tar-disabled {
  cursor: default;
  opacity: 0.4;
  pointer-events: none;
}

.tcb-clear::after {
  display: block;
  height: 0px;
  content: "";
}

.tcb-flex-row {
  display: flex;
  flex-flow: row;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 0px;
  margin-left: -15px;
  padding-bottom: 15px;
  padding-top: 15px;
}

.tcb-flex-col {
  flex: 1 1 auto;
  padding-top: 0px;
  padding-left: 15px;
}

.tcb-flex-row .tcb-flex-col {
  box-sizing: border-box;
}

.tcb-col {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.tcb-flex-row .tcb-col {
  box-sizing: border-box;
}

.tcb-col.variable-height {
  height: unset !important;
}

html {
  text-rendering: auto !important;
}

html body {
  text-rendering: auto !important;
}

body.tve_lp::before {
  content: none;
}

.thrv_wrapper {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 1px;
}

.thrv_wrapper div {
  box-sizing: content-box;
}

.thrv_symbol .thrv_wrapper:not(.thrv_icon) {
  box-sizing: border-box !important;
}

.thrv_wrapper.thrv_text_element,
.thrv_wrapper.thrv_symbol {
  margin: 0px;
}

.thrv_wrapper.thrv-columns {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0px;
}

p {
  font-size: 1em;
}

.tve_image {
  border-radius: 0px;
  box-shadow: none;
}

div .tve_image_caption {
  padding: 0px;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.tve_image_caption .tve_image_frame {
  display: block;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.tve_image_caption .tve_image {
  display: block;
  padding: 0px;
  height: auto;
}

#tve_editor.tve_empty_dropzone .thrv_symbol.thrv_header .symbol-section-in {
  padding: 1px;
}

.thrv_symbol.thrv_header {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

.thrv_symbol.thrv_header .thrive-symbol-shortcode {
  margin: 0px auto;
  position: relative;
}

.symbol-section-in {
  margin: 0px auto;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.symbol-section-in:empty::before {
  font-family: sans-serif;
  line-height: 40px;
}

.symbol-section-in::after,
.symbol-section-in::before {
  content: "";
  display: block;
  overflow: auto;
}

.symbol-section-out {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  overflow: hidden;
  box-sizing: border-box !important;
}

:not(#_s):not(#_s) .tcb-conditional-display-placeholder {
  min-height: var(--tcb-container-height-d, 100px) !important;
  position: relative;
}

:not(#_s):not(#_s) .tcb-conditional-display-placeholder.thrv-page-section {
  box-sizing: border-box;
  margin: 0px;
}

:not(#_s):not(#_s) .tcb-conditional-display-placeholder.thrv-content-box {
  box-sizing: border-box;
}

:not(#_s):not(#_s) .tcb-conditional-display-placeholder .tve-page-section-out,
:not(#_s):not(#_s) .tcb-conditional-display-placeholder .tve-content-box-background {
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  overflow: hidden;
}

@media (max-width:1023px) {
  :not(#_s):not(#_s) .tcb-conditional-display-placeholder {
    min-height: var(--tcb-container-height-t) !important;
  }
}

@media (max-width:767px) {
  html {
    overflow-x: hidden !important;
  }

  html,
  body {
    max-width: 100vw !important;
  }

  body:not(.tcb_show_all_hidden) .tcb-mobile-hidden {
    display: none !important;
  }

  .tcb-flex-row {
    flex-direction: column;
  }

  .tcb-flex-row.v-2 {
    flex-direction: row;
  }

  :not(#_s):not(#_s) .tcb-conditional-display-placeholder {
    min-height: var(--tcb-container-height-m) !important;
  }
}

@media (min-width:1024px) {
  body:not(.tcb_show_all_hidden) .tcb-desktop-hidden {
    display: none !important;
  }
}

@media (min-width:768px) and (max-width:1023px) {
  body:not(.tcb_show_all_hidden) .tcb-tablet-hidden {
    display: none !important;
  }
}

@media (max-width:1023px) and (min-width:768px) {

  .tcb-flex-row:not(.tcb--cols--2):not(.tcb-medium-no-wrap),
  .tcb-flex-row.tcb-resized:not(.tcb--cols--2):not(.tcb-medium-no-wrap) {
    flex-wrap: wrap;
  }

  .tcb-flex-row:not(.tcb--cols--2):not(.tcb-medium-no-wrap)>.tcb-flex-col,
  .tcb-flex-row.tcb-resized:not(.tcb--cols--2):not(.tcb-medium-no-wrap)>.tcb-flex-col {
    flex: 1 0 250px;
    max-width: 100% !important;
  }
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
  .tcb-flex-col {
    width: 100%;
  }

  .tcb-col {
    display: block;
  }
}

@media screen and (max-device-width:480px) {
  body {
    text-size-adjust: none;
  }
}

@import url("//fonts.googleapis.com/css?family=Zen+Maru+Gothic:400,700&subset=latin");

@media (min-width:300px) {
  .thrv_symbol_601.tve-default-state [data-css="tve-u-185d46104bf"] {}

  .thrv_symbol_601.tve-default-state [data-css="tve-u-185d46104ce"] {}

  .thrv_symbol_601.tve-default-state [data-css="tve-u-185d46104d8"] {}

  .thrv_symbol_601.tve-default-state [data-css="tve-u-185d46104e9"] {}

  .thrv_symbol_601 [data-css="tve-u-16ea80bf344"] {
    width: 213px !important;
    margin: 0px !important;
  }

  .thrv_symbol_601 .thrive-symbol-shortcode {
    padding: 20px !important;
  }

  .thrv_symbol_601 [data-css="tve-u-16ea80e7302"] {
    margin: 0px !important;
  }

  .thrv_symbol_601 [data-css="tve-u-16ea80e7883"] {
    padding: 0px !important;
    --tve-applied-min-height: 22px !important;
  }

  .thrv_symbol_601 [data-css="tve-u-16ea80e7883"]>.tcb-flex-col>.tcb-col {
    justify-content: center;
    min-height: 22px;
  }

  .thrv_symbol_601.tve-default-state .symbol-section-out.tve-default-state {
    background-color: transparent !important;
    min-height: 0px !important;
    --background-color: transparent !important;
    --tve-applied-background-color: transparent !important;
  }

  .thrv_symbol_601.tve-default-state {
    margin-top: 0px !important;
  }

  .thrv_symbol_601 {
    max-width: var(--lp-layout-max-width);
    top: 0px;
    z-index: 9999 !important;
    position: absolute !important;
  }

  .thrv_symbol_601.tve-default-state .symbol-section-in.tve-default-state {
    padding-bottom: 0px !important;
    padding-top: 0px !important;
    min-height: 19px !important;
  }

  .thrv_symbol_601 [data-css="tve-u-185d46104bf"] {
    max-width: 25%;
  }
	
  .thrv_symbol_601 [data-css="tve-u-199b94c9b7b"] {
    max-width: 27.7%;
  }

  .thrv_symbol_601 [data-css="tve-u-185d46104ce"] {
    max-width: 14.3%;
  }

  .thrv_symbol_601 [data-css="tve-u-185d46104ad"] {
    max-width: 5%;
  }

  .thrv_symbol_601.tve-default-state [data-css="tve-u-185d46104e1"] {}

  .thrv_symbol_601.tve-default-state [data-css="tve-u-1909c152fa2"] {}

  .thrv_symbol_601 [data-css="tve-u-1993856585c"] {
    width: 150px;
    float: right;
    z-index: 3;
    position: relative;
    --tve-alignment: right;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
  }

  .thrv_symbol_601 [data-css="tve-u-1993856c89b"]::after {
    clear: both;
  }


  :not(#tve) .thrv_symbol_601 [data-css="tve-u-199b94d352d"] {
    --g-regular-weight: 400;
    --g-bold-weight: 700;
    padding-bottom: 4px !important;
    margin-bottom: 0px !important;
    padding-top: 4px !important;
    margin-top: 0px !important;
    color: rgb(255, 255, 255) !important;
    --tcb-applied-color: rgb(255, 255, 255) !important;
    --tve-applied-color: rgb(255, 255, 255) !important;
    font-family: "Zen Maru Gothic" !important;
    font-weight: var(--g-regular-weight, normal) !important;
  }

  .thrv_symbol_601 [data-css="tve-u-199b94ddb4c"] {
    --tve-alignment: center;
    float: none;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    background-color: transparent !important;
    --background-color: transparent !important;
    --tve-applied-background-color: transparent !important;
    background-image: linear-gradient(90deg, rgb(249, 140, 140) 0%, rgb(246, 90, 70) 100%) !important;
    background-size: auto !important;
    background-position: 50% 50% !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    --background-image: linear-gradient(90deg, rgb(249, 140, 140) 0%, rgb(246, 90, 70) 100%) !important;
    --background-size: auto !important;
    --background-position: 50% 50% !important;
    --background-attachment: scroll !important;
    --background-repeat: no-repeat !important;
    --tve-applied-background-image: linear-gradient(90deg, rgb(249, 140, 140) 0%, rgb(246, 90, 70) 100%) !important;
  }

  :not(#tve) .thrv_symbol_601 [data-css="tve-u-199b94d352d"] strong {
    font-weight: 700 !important;
  }

  .thrv_symbol_601 [data-css="tve-u-199b9c3de87"] {
    max-width: 33%;
  }
}

@media (max-width:1023px) {
  .thrv_symbol_601.tve-default-state [data-css="tve-u-185d46104bf"] {}

  .thrv_symbol_601.tve-default-state [data-css="tve-u-185d46104ce"] {}

  .thrv_symbol_601.tve-default-state [data-css="tve-u-185d46104d8"] {}

  .thrv_symbol_601.tve-default-state [data-css="tve-u-185d46104e9"] {}

  .thrv_symbol_601 [data-css="tve-u-16ea80bf344"] {
    width: 190px;
  }

  .thrv_symbol_601 [data-css="tve-u-16ea80e7883"]>.tcb-flex-col {
    flex-basis: 45px !important;
    padding-left: 15px;
  }

  .thrv_symbol_601.tve-default-state [data-css="tve-u-185d46104e1"] {}

  .thrv_symbol_601.tve-default-state [data-css="tve-u-1909c152fa2"] {}

  .thrv_symbol_601 [data-css="tve-u-16ea80e7883"]>.tcb-flex-col>.tcb-col {
    justify-content: center;
  }

  .thrv_symbol_601 [data-css="tve-u-16ea80e7883"] {
    margin-left: -15px !important;
  }

  .thrv_symbol_601 [data-css="tve-u-199b94ddb4c"] {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}

@media (max-width:767px) {
  .thrv_symbol_601.tve-default-state [data-css="tve-u-185d46104bf"] {}

  .thrv_symbol_601.tve-default-state [data-css="tve-u-185d46104ce"] {}

  .thrv_symbol_601.tve-default-state [data-css="tve-u-185d46104d8"] {}

  .thrv_symbol_601.tve-default-state [data-css="tve-u-185d46104e9"] {}

  .thrv_symbol_601 [data-css="tve-u-16ea80e7883"] {
    min-height: inherit;
    flex-flow: row !important;
    margin-left: 0px !important;
  }

  .thrv_symbol_601 [data-css="tve-u-16ea80bf344"] {
    width: 178px !important;
  }

  .thrv_symbol_601 [data-css="tve-u-16ea80e7883"]>.tcb-flex-col>.tcb-col {
    min-height: 1px;
    justify-content: center;
  }

  .thrv_symbol_601.tve-default-state .symbol-section-in.tve-default-state {
    padding: 0px !important;
  }

  .thrv_symbol_601 [data-css="tve-u-16ea80e7883"]>.tcb-flex-col {
    padding-left: 0px;
  }

  .thrv_symbol_601.tve-default-state {
    margin-top: 0px !important;
  }

  .thrv_symbol_601 [data-css="tve-u-16ea80e7302"] {
    max-width: unset;
    min-width: unset;
    width: 100%;
    --tve-applied-max-width: unset !important;
    --tve-applied-min-width: unset !important;
    --tve-applied-width: 100% !important;
    margin-right: 0px !important;
  }

  .thrv_symbol_601.tve-default-state [data-css="tve-u-185d46104e1"] {}

  .thrv_symbol_601.tve-default-state [data-css="tve-u-1909c152fa2"] {}

  .thrv_symbol_601.tve-scroll-state .symbol-section-in.tve-scroll-state {
    padding: 0px !important;
  }
}

#thrive-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: transparent !important;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#thrive-header.scrolled {
  background: #ffffff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* すべての h4 に line-height を適用 */
h4 {
  line-height: 1.9em !important;
  --tcb-typography-line-height: 1.9em; /* Thrive変数も上書き */
}


@media (max-width:767px) {
  .mobile-sticky-fixed {
    position: fixed !important;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 2147483000;
    background: #fff;
  }
}

/* デフォルトでは両方非表示に */
.header--sp,
.header--pc {
  display: none;
}

/* スマホ専用（1024px以下） */
@media (max-width: 767px) {
  .header--sp {
    display: block;
  }
}

/* PC専用（768px以上） */
@media (min-width: 768px) {
  .header--pc {
    display: block;
  }
}
