@charset "UTF-8";
/**
 * サイト内全体で使用するスタイル
 */
.mobile {
  display: block;
}
@media screen and (min-width: 1280px) {
  .mobile {
    display: none;
  }
}
.mobile.inline {
  display: inline;
}
@media screen and (min-width: 1280px) {
  .mobile.inline {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 1280px) {
  .pc {
    display: block;
  }
}
.pc.inline {
  display: none;
}
@media screen and (min-width: 1280px) {
  .pc.inline {
    display: inline;
  }
}

/* clearfix */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clear {
  clear: both;
}

/* 色設定 */
/* フォントカラー */
.red,
.has-red-color {
  color: #e03a2a;
}

.blue,
.has-blue-color {
  color: #007ec2;
}

.yellow,
.has-yellow-color {
  color: #fcdf21;
}

.green,
.has-green-color {
  color: #009b63;
}

.orange,
.has-orange-color {
  color: #f18e1e;
}

.has-accent-color-color {
  color: #01b6ad;
}

/* フォントサイズ */
body {
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 1023px) {
  body {
    font-size: 14px;
    line-height: 1.6;
  }
}

.has-normal-font-size,
.has-regular-font-size {
  font-size: 16px;
}
@media screen and (max-width: 1023px) {
  .has-normal-font-size,
  .has-regular-font-size {
    font-size: 14px !important;
  }
}

.fs-l,
.has-medium-font-size,
.has-sm-medium-font-size {
  font-size: 1.15em;
  line-height: 1.6;
}

.fs-ll,
.big,
.has-sm-large-font-size {
  font-size: 1.3em;
  line-height: 1.6;
}

.fs-s,
.small,
small,
.cap,
.is-style-sme-list-remark {
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 1023px) {
  .fs-s,
  .small,
  small,
  .cap,
  .is-style-sme-list-remark {
    font-size: 12px;
  }
}

/* フォントウェイト */
.bold {
  font-weight: 700;
}

.mac h1,
.mac h2,
.mac h3,
.mac h4,
.mac h5,
.mac h6,
.mac .bold {
  font-weight: 900 !important;
}

/* フォント位置 */
.ta-c,
.center {
  text-align: center;
}

.ta-l {
  text-align: left;
}

.ta-r {
  text-align: right;
}

/* フォーカス */
a,
button {
  outline: none;
}

@media screen and (min-width: 1280px) {
  a img {
    transition: all 0.2s ease-out;
  }
  a img:hover {
    filter: brightness(90%);
  }
}

/* ボタン※ブロックエディタのボタンブロックを除く */
.c-link {
  color: #007ec2;
  text-decoration: none;
}
.c-link::before {
  content: "»";
  display: inline-block;
  margin-right: 5px;
}

.c-btn {
  position: relative;
  min-width: 300px;
  font-weight: 700;
  color: #333333;
  background: #fff;
  border: 1px solid #01b6ad;
  border-radius: 0;
  box-shadow: 4px 4px 0 0 rgba(1, 182, 173, 0.2);
}
@media screen and (max-width: 639px) {
  .c-btn {
    min-width: 100%;
  }
}
.c-btn::before {
  position: absolute;
  content: "\f054";
  display: block;
  top: 50%;
  right: 10px;
  margin-top: -0.45em;
  font: normal normal normal 16px/1 "Font Awesome 5 Free";
  font-weight: 900;
  color: #01b6ad;
}
.c-btn.c-btn--send {
  color: #fff;
  background: #01b6ad;
}

/**
 * フォーム用
 */
/* フォーム */
form input[type=email],
form input[type=number],
form input[type=password],
form input[type=search],
form input[type=tel],
form input[type=text],
form input[type=url],
form textarea,
form select {
  font-size: 16px !important;
}
form input[type=email],
form input[type=number],
form input[type=password],
form input[type=search],
form input[type=tel],
form input[type=text],
form input[type=url],
form textarea {
  width: 100%;
  background: #fff;
  border: 2px solid #dee0de;
}
form input[type=email].small_width,
form input[type=number].small_width,
form input[type=password].small_width,
form input[type=search].small_width,
form input[type=tel].small_width,
form input[type=text].small_width,
form input[type=url].small_width,
form textarea.small_width {
  width: 80px;
}
form input[type=email].telephone,
form input[type=number].telephone,
form input[type=password].telephone,
form input[type=search].telephone,
form input[type=tel].telephone,
form input[type=text].telephone,
form input[type=url].telephone,
form textarea.telephone {
  width: 30%;
  max-width: 150px;
}
form input[type=email].zip,
form input[type=number].zip,
form input[type=password].zip,
form input[type=search].zip,
form input[type=tel].zip,
form input[type=text].zip,
form input[type=url].zip,
form textarea.zip {
  width: 4em;
}
form input[type=email].address,
form input[type=number].address,
form input[type=password].address,
form input[type=search].address,
form input[type=tel].address,
form input[type=text].address,
form input[type=url].address,
form textarea.address {
  width: 100%;
}
form textarea {
  height: 95px;
}
form select {
  border: 2px solid #dee0de;
}
form input[type=radio],
form input[type=checkbox] {
  margin-right: 2px;
}
form .mt10 {
  margin-top: 10px;
}

/* フォーム用テーブル風ブロック */
.table {
  display: table;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
  border-spacing: 0;
}
@media screen and (max-width: 639px) {
  .table {
    display: block;
  }
}
.table .tr {
  display: table-row;
}
@media screen and (max-width: 639px) {
  .table .tr {
    display: block;
    border-top: 1px solid #ecedec;
  }
  .table .tr:first-child {
    border: none;
  }
}
.table .tr.noline .th,
.table .tr.noline .td {
  border: none !important;
}
.table .tr .th,
.table .tr .td {
  display: table-cell;
  padding: 20px 0;
  border-bottom: 1px solid #ecedec;
}
@media screen and (max-width: 639px) {
  .table .tr .th,
  .table .tr .td {
    display: block;
    border: none;
    padding: 10px 0;
  }
}
.table .tr .th {
  width: 300px;
  padding-right: 30px;
  vertical-align: top;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .table .tr .th {
    width: 200px;
  }
}
@media screen and (max-width: 639px) {
  .table .tr .th {
    width: 100%;
  }
}
.table .tr .td {
  width: calc(100% - 250px);
  vertical-align: middle;
}
@media screen and (max-width: 1023px) {
  .table .tr .td {
    width: calc(100% - 200px);
  }
}
@media screen and (max-width: 639px) {
  .table .tr .td {
    width: 100%;
  }
}
.table .tr .td.error-pink input[type=text],
.table .tr .td.error-pink input[type=email],
.table .tr .td.error-pink input[type=tel],
.table .tr .td.error-pink input[type=url],
.table .tr .td.error-pink textarea {
  border-color: #e03a2a;
}
.table .tr .td > *:first-child {
  margin-top: 0;
}

/* フォーム用テーブル */
.contact-table {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .contact-table {
    width: 100%;
  }
}
.contact-table__table .mwform-radio-field.horizontal-item,
.contact-table__table .mwform-checkbox-field.horizontal-item {
  display: inline-block;
  margin-left: 0;
}
.contact-table__table .mwform-radio-field.horizontal-item:last-child,
.contact-table__table .mwform-checkbox-field.horizontal-item:last-child {
  margin-right: 0;
}
.contact-table__table .required,
.contact-table__table .optional {
  display: inline-block;
  margin-right: 8px;
  padding: 4px 12px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  border-radius: 5px;
}
.contact-table__table .required {
  background: #e03a2a;
}
.contact-table__table .optional {
  background: #abadac;
}
.contact-table__table .error,
.contact-table__table .formError .formErrorContent {
  display: inline-block !important;
  margin-top: 5px;
  padding: 3px 10px;
  font-size: 12px;
  color: #fff !important;
  background: #e03a2a !important;
}
.contact-table__table .td > p {
  margin: 0;
}
.contact-table__indent .table {
  border: none;
}
.contact-table__btn {
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .contact-table__btn input[type=submit] {
    width: 90%;
    margin-left: 0;
    margin-right: 0;
  }
}
.contact-box {
  margin: 20px 0;
  padding: 15px 20px;
  background: #f9f9f9;
  border-radius: 10px;
}
@media screen and (max-width: 1023px) {
  .contact-box {
    padding: 10px 15px;
  }
}
.contact-box > *:first-child {
  margin-top: 0 !important;
  margin-bottom: 10px;
}
.contact-box .table .tr.noline .th,
.contact-box .table .tr.noline .td {
  padding-bottom: 0 !important;
}

/* モーダルウィンドウ */
.js-mail-modal {
  display: none;
}

.modaal-wrapper {
  z-index: 100001;
}
.modaal-overlay {
  z-index: 100000;
}

/* デイトピッカー */
.ui-datepicker-div {
  z-index: 100001;
}

/* アコーディオン */
.js-dl-accodion dt {
  cursor: pointer;
}
.js-dl-accodion dd {
  display: none;
}

.js-group-accodion h3 {
  cursor: pointer;
}
.js-group-accodion h3 + * {
  display: none;
}

/* 利用規約埋め込み */
.insert-page {
  width: 90%;
  max-width: 600px;
  height: 250px;
  border: 1px solid #ecedec;
  background-color: #fffdee;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 639px) {
  .insert-page {
    width: 100%;
  }
}
.insert-page *:first-child {
  margin-top: 0;
}
.insert-page h2 {
  font-size: 16px;
  background: #ebe5b7;
}
.insert-page pre {
  white-space: pre-wrap;
  background: none;
  border: none;
}
@media screen and (max-width: 639px) {
  .insert-page pre {
    font-size: 13px;
  }
}

/* 地図埋め込み */
/* フッターCTA */
.p-footer-cta .c-row {
  justify-content: center;
}
.p-footer-cta .c-row .c-row__col {
  max-width: none;
  flex: none;
}
.p-footer-cta__text {
  font-size: 0.9rem;
}
.p-footer-cta__primary-btn.c-btn {
  min-width: auto;
  background: #fff;
  margin: 5px 0 10px 0;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
@media screen and (max-width: 1023px) {
  .p-footer-cta__primary-btn.c-btn {
    padding-right: 25px !important;
  }
  .p-footer-cta__primary-btn.c-btn img {
    width: auto;
    height: 40px;
  }
}
.p-footer-cta__primary-btn.c-btn:hover, .p-footer-cta__primary-btn.c-btn:active {
  background: #f2faf7;
}

/* レイアウト */
.l-header {
  height: 95px;
  padding: 10px 0;
  background: #01b6ad;
}
@media screen and (max-width: 1023px) {
  .l-header {
    height: 60px;
    padding: 0;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__content {
    padding: 0;
  }
}
.l-header__content .c-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header__content .c-container .u-invisible-md-down {
  order: 2;
}
@media screen and (max-width: 1023px) {
  .l-header__content .c-container .u-invisible-md-down {
    position: absolute;
    top: 0;
    right: 0;
    display: block !important;
  }
}
.l-header__content .c-container .u-invisible-md-down .p-header-sub-nav {
  padding: 0;
}
@media screen and (max-width: 1023px) {
  .l-header .c-site-branding {
    margin-top: 7px;
  }
}
.l-header .c-site-branding__title a {
  width: 180px;
  display: inline-block;
}
.l-header .c-site-branding__title a img {
  max-height: 60px;
}
@media screen and (max-width: 1023px) {
  .l-header .c-site-branding__title a img {
    width: auto;
    height: 40px;
  }
}
.l-header .p-global-nav ul li.nav-logout a {
  padding: 15px 30px;
  border-radius: 5px;
  background: #01b6ad;
  color: #fff;
}
.l-header .c-hamburger-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: #07516e;
}
.l-header .c-hamburger-btn__bars {
  width: 25px;
  height: 23px;
}
.l-header .c-hamburger-btn__bar {
  height: 3px;
  background: #fff;
}
.l-header .c-hamburger-btn__bar:nth-of-type(2) {
  top: 10px;
}
.l-header .c-hamburger-btn__bar:nth-of-type(3) {
  top: 20px;
}
.l-header .c-hamburger-btn__label {
  display: none;
}
.l-header .hd-sub-login a,
.l-header .hd-sub-logout a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 50px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #07516e;
  border-radius: 5px;
  text-decoration: none;
}
@media screen and (max-width: 1023px) {
  .l-header .hd-sub-login a,
  .l-header .hd-sub-logout a {
    display: block;
    width: 60px;
    height: 60px;
    font-size: 10px;
    line-height: 1;
    letter-spacing: -0.5px;
    border-radius: 0;
  }
}
.l-header .hd-sub-login a::before,
.l-header .hd-sub-logout a::before {
  content: "\f2f6";
  display: inline-block;
  margin: 2px 4px 0 0;
  font: normal normal normal 16px/1 "Font Awesome 5 Free";
  font-weight: 900;
}
@media screen and (max-width: 1023px) {
  .l-header .hd-sub-login a::before,
  .l-header .hd-sub-logout a::before {
    display: block;
    margin: 10px auto 6px !important;
    font-size: 22px;
  }
}
.l-header .hd-sub-login a:hover,
.l-header .hd-sub-logout a:hover {
  text-decoration: none;
}
@media screen and (min-width: 1280px) {
  .l-header .hd-sub-login a:hover,
  .l-header .hd-sub-logout a:hover {
    color: #07516e !important;
    background: #fff !important;
  }
}
@media screen and (max-width: 1023px) {
  .l-header .hd-sub-logout {
    right: 61px;
  }
}
.l-header .hd-sub-logout a {
  width: 130px;
}
@media screen and (max-width: 1023px) {
  .l-header .hd-sub-logout a {
    width: 60px;
  }
}
.l-header .hd-sub-logout a::before {
  content: "\f2f5";
}

.c-hamburger-btn[aria-expanded=true] > .c-hamburger-btn__bars > .c-hamburger-btn__bar:first-of-type, .c-hamburger-btn[aria-expanded=true] > .c-hamburger-btn__bars > .c-hamburger-btn__bar:nth-of-type(3) {
  top: 10px;
}

.p-breadcrumbs-wrapper {
  padding: 15px 0 !important;
}
.p-breadcrumbs-wrapper .c-breadcrumbs {
  font-size: 13px;
}
.p-breadcrumbs-wrapper .c-breadcrumbs a {
  color: #5b5d5c;
}

.member__title {
  text-align: center;
}
.member__info {
  margin-top: 5px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .member__info {
    font-size: 16px;
  }
}
.member__name {
  font-size: 22px;
}
@media screen and (max-width: 639px) {
  .member__name {
    font-size: 18px;
  }
}

/*============================================================================

	.newsbar　＊お知らせ＊

============================================================================*/
.newsbar {
  color: #5a4d26;
  background-color: #fff9e6;
  border: 1px solid #fff3cd;
}
.newsbar .c-container {
  display: flex;
  align-items: center;
  margin: 10px auto;
}
.newsbar__close {
  margin: 0 10px;
}
@media screen and (max-width: 1279px) {
  .newsbar__close {
    margin-left: 0;
  }
}
.newsbar__close::before {
  content: "\f057";
  display: inline-block;
  width: auto;
  font: normal normal normal 20px/1 "Font Awesome 5 Free";
  font-weight: 900;
}
@media screen and (max-width: 1279px) {
  .newsbar__close::before {
    font-size: 16px;
  }
}
.newsbar__close:hover {
  cursor: pointer;
  opacity: 0.5;
}
.newsbar__title {
  margin-bottom: 3px;
  font-size: 16px;
  line-height: 1.3;
}
@media screen and (max-width: 1279px) {
  .newsbar__title {
    margin-bottom: 2px;
    font-size: 14px;
  }
}
.newsbar__title a {
  color: #5a4d26;
}
.newsbar__excerpt {
  font-size: 14px;
  line-height: 1.45;
}
@media screen and (max-width: 1279px) {
  .newsbar__excerpt {
    font-size: 12px;
    line-height: 1.3;
  }
}
.newsbar__excerpt > *:first-child {
  margin-top: 0 !important;
}

.l-footer {
  background: #f9f9f9;
}
.l-footer .c-copyright {
  font-size: 11px;
  color: #333333;
  background: #e6e7e6;
}

.c-footer-page-top {
  background-color: #01b6ad;
}
.c-footer-page-top a {
  display: block;
  width: 100%;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.p-footer-sub-nav {
  padding: 10px 0;
}
.p-footer-sub-nav .c-navbar {
  justify-content: center;
}
.p-footer-sub-nav .c-navbar__item {
  position: relative;
  padding-left: 15px;
}
.p-footer-sub-nav .c-navbar__item::before {
  position: absolute;
  content: "\f0da";
  display: inline-block;
  top: 50%;
  left: 3px;
  margin-top: -0.5em;
  font: normal normal normal 14px/1 "Font Awesome 5 Free";
  font-weight: 900;
}
.p-footer-sub-nav .c-navbar__item a {
  color: #333333;
}

.c-widget__title {
  padding: 10px 5px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: #07516e;
  background-image: linear-gradient(-45deg, #e5f5ef 25%, #f2faf7 25%, #f2faf7 50%, #e5f5ef 50%, #e5f5ef 75%, #f2faf7 75%, #f2faf7);
  background-size: 6px 6px;
}
.c-widget__title::before, .c-widget__title::after {
  display: none !important;
}
.c-widget.widget_nav_menu > .c-widget__title {
  margin-bottom: 0;
}
.c-widget.widget_nav_menu ul.menu > li {
  border-bottom: 1px solid #ecedec;
}
@media screen and (min-width: 1280px) {
  .c-widget.widget_nav_menu ul.menu > li > span,
  .c-widget.widget_nav_menu ul.menu > li > a {
    transition: all 0.2s ease-out;
  }
  .c-widget.widget_nav_menu ul.menu > li > span:hover,
  .c-widget.widget_nav_menu ul.menu > li > a:hover {
    background: rgba(236, 247, 243, 0.5);
  }
}
.c-widget.widget_nav_menu ul.menu > li span.none:hover {
  cursor: pointer;
}
.c-widget.widget_nav_menu ul.menu > li ul {
  margin: 0;
  padding: 0;
  border: none;
}
@media screen and (min-width: 1280px) {
  .c-widget.widget_nav_menu ul.menu > li ul > li > span,
  .c-widget.widget_nav_menu ul.menu > li ul > li > a {
    transition: all 0.2s ease-out;
  }
  .c-widget.widget_nav_menu ul.menu > li ul > li > span:hover,
  .c-widget.widget_nav_menu ul.menu > li ul > li > a:hover {
    opacity: 0.5;
  }
}
.c-widget.widget_nav_menu ul.menu li {
  position: relative;
  margin-top: 0;
}
.c-widget.widget_nav_menu ul.menu li.current-menu-item > span,
.c-widget.widget_nav_menu ul.menu li.current-menu-item > a {
  background: rgba(236, 247, 243, 0.3);
}
.c-widget.widget_nav_menu ul.menu li > span,
.c-widget.widget_nav_menu ul.menu li > a {
  display: block;
  padding: 12px 10px;
  font-size: 16px;
  line-height: 1.4;
  color: #07516e;
  text-decoration: none;
}
.c-widget.widget_nav_menu ul.menu li .children-expander {
  top: 14px;
  right: 10px;
  width: 15px;
  height: 15px;
  transform: none;
}
.c-widget.widget_nav_menu ul.menu li .children-expander .c-ic-angle-right {
  position: relative;
  padding: 0;
  display: block;
  width: 15px;
  height: 15px;
  transition: all 0.2s ease-out;
}
.c-widget.widget_nav_menu ul.menu li .children-expander .c-ic-angle-right:before, .c-widget.widget_nav_menu ul.menu li .children-expander .c-ic-angle-right:after {
  content: "";
  position: absolute;
  display: block;
  background: #01b6ad;
  transform: none;
}
.c-widget.widget_nav_menu ul.menu li .children-expander .c-ic-angle-right:before {
  position: absolute;
  width: 15px;
  height: 2px;
  top: 7px;
  transition: all 0.2s ease-out;
}
.c-widget.widget_nav_menu ul.menu li .children-expander .c-ic-angle-right:after {
  height: 15px;
  width: 2px;
  left: 7px;
}
.c-widget.widget_nav_menu ul.menu li .children-expander[data-is-expanded=true] .c-ic-angle-right {
  transform: rotate(90deg);
}
.c-widget.widget_nav_menu ul.menu li .children-expander[data-is-expanded=true] .c-ic-angle-right:before {
  opacity: 0;
}
.c-widget.widget_nav_menu ul.menu li .ic {
  display: inline-block;
  margin-right: 7px;
  padding: 1px 7px;
  font-size: 14px;
  letter-spacing: 0;
  color: #fff;
  background: #07516e;
  border-radius: 5px;
}
@media screen and (max-width: 1023px) {
  .c-widget.widget_nav_menu ul.menu li .ic {
    margin-right: 5px;
    padding: 1px 5px;
    font-size: 11px;
  }
}
.c-widget.widget_nav_menu ul.menu li .ic.ic__1 {
  background: #219be0;
}
.c-widget.widget_nav_menu ul.menu li .ic.ic__2 {
  background: #eec132;
}
.c-widget.widget_nav_menu ul.menu li .ic.ic__3 {
  background: #ee3261;
}
.c-widget.widget_nav_menu ul.menu li .ic.ic__4 {
  background: #01b6ad;
}
.c-widget.widget_qasearch {
  border: 3px solid #01b6ad;
  border-radius: 10px;
}
.c-widget.widget_qasearch .c-widget__title {
  margin: 0;
  padding: 10px 15px 5px 15px;
  background: none;
}
@media screen and (max-width: 1023px) {
  .c-widget.widget_qasearch .c-widget__title {
    padding: 10px 10px 5px 10px;
  }
}
.c-widget.widget_qasearch .widget_qasearch__inner {
  background: #01b6ad;
  padding: 15px 15px 10px 15px;
}
@media screen and (max-width: 1023px) {
  .c-widget.widget_qasearch .widget_qasearch__inner {
    padding: 10px;
  }
}
.c-widget.widget_qasearch .widget_qasearch__link {
  margin-top: 5px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
.c-widget.widget_qasearch .widget_qasearch__link::before {
  content: "\f0da";
  display: inline-block;
  position: relative;
  top: 1px;
  margin-right: 5px;
  font: normal normal normal 1em/1 "Font Awesome 5 Free";
  font-weight: 900;
}
.c-widget.widget_qasearch .widget_qasearch__link a {
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 1280px) {
  .c-widget.widget_qasearch .widget_qasearch__link a {
    transition: all 0.2s ease-out;
  }
  .c-widget.widget_qasearch .widget_qasearch__link a:hover {
    opacity: 0.75;
  }
}

#nav_menu-6 .c-widget__title,
#nav_menu-8 .c-widget__title,
#nav_menu-13 .c-widget__title {
  color: #fff;
  background-image: linear-gradient(-45deg, #219be0 25%, #34a9ec 25%, #34a9ec 50%, #219be0 50%, #219be0 75%, #34a9ec 75%, #34a9ec);
}
#nav_menu-6.current-menu-item > span,
#nav_menu-6.current-menu-item > a,
#nav_menu-8.current-menu-item > span,
#nav_menu-8.current-menu-item > a,
#nav_menu-13.current-menu-item > span,
#nav_menu-13.current-menu-item > a {
  color: #fff;
  background: #01b6ad;
}

#nav_menu-7 .c-widget__title,
#nav_menu-9 .c-widget__title,
#nav_menu-12 .c-widget__title {
  color: #fff;
  background-image: linear-gradient(-45deg, #eec132 25%, #f7cb3e 25%, #f7cb3e 50%, #eec132 50%, #eec132 75%, #f7cb3e 75%, #f7cb3e);
}

#nav_menu-17 .c-widget__title,
#nav_menu-18 .c-widget__title,
#nav_menu-19 .c-widget__title {
  color: #fff;
  background-image: linear-gradient(-45deg, #ee3261 25%, #f5547c 25%, #f5547c 50%, #ee3261 50%, #ee3261 75%, #f5547c 75%, #f5547c);
}

@media screen and (max-width: 1023px) {
  .l-contents__sidebar {
    display: none;
  }
}

.l-sidebar-sticky-widget-area {
  top: 100px;
}

.c-drawer {
  width: calc(100% - 60px) !important;
  max-width: none;
  color: #333333;
  background: #fff;
}
.c-drawer__inner {
  padding-top: 30px;
  padding-bottom: 60px;
}
.c-drawer__inner .c-widget__title,
.c-drawer__inner .c-widget.widget_nav_menu ul.menu li > a,
.c-drawer__inner .c-widget.widget_nav_menu ul.menu li > span {
  font-size: 14px;
}
.c-drawer .c-drawer__menu {
  display: none !important;
}

.alignleft,
.alignright {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

@media screen and (max-width: 1023px) {
  .c-entry__header {
    margin-bottom: 20px;
  }
}
.c-entry__title {
  line-height: 1.2;
  color: #07516e;
  border: none;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 5px solid #ecf7f3;
}
@media screen and (max-width: 1023px) {
  .c-entry__title {
    margin-bottom: 20px;
  }
}
.c-entry__title--qacat {
  margin-bottom: 20px;
}
.c-entry__title--qa {
  margin-bottom: 10px;
}
.c-entry__subtitle {
  line-height: 1.2;
  color: #07516e;
}
@media screen and (max-width: 1023px) {
  .c-entry__subtitle {
    font-size: 18px;
  }
}
.c-entry__qatitle {
  position: relative;
  margin-top: 30px;
  padding-left: 40px;
  min-height: 30px;
  line-height: 1.3;
  color: #07516e;
}
@media screen and (max-width: 1023px) {
  .c-entry__qatitle {
    margin-top: 20px;
    padding-left: 38px;
    font-size: 18px;
  }
}
@media screen and (max-width: 639px) {
  .c-entry__qatitle {
    padding-left: 30px;
  }
}
.c-entry__qatitle::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: 2px;
  left: 0;
  width: 30px;
  height: 30px;
  background: url("../img/member/qa/faq-q1_2.png") 0 0 no-repeat;
  background-size: 30px 30px;
}
@media screen and (max-width: 1023px) {
  .c-entry__qatitle::before {
    top: -2px;
  }
}
@media screen and (max-width: 639px) {
  .c-entry__qatitle::before {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
  }
}
.c-entry__mencat {
  margin-bottom: 10px;
}
@media screen and (max-width: 1023px) {
  .c-entry__mencat {
    margin-bottom: 5px;
  }
}
.c-entry__mencat span {
  display: inline-block;
  padding: 5px 13px;
  color: #fff;
  background: #07516e;
  border-radius: 5px;
}
@media screen and (max-width: 1023px) {
  .c-entry__mencat span {
    padding: 2px 10px;
  }
}
.c-entry__mencat.social-and-employment span {
  background: #219be0;
}
.c-entry__mencat.employment-only span {
  background: #eec132;
}
.c-entry__mencat.welfare span {
  background: #ee3261;
}
.c-entry__qacat {
  padding-left: 0;
  color: #07516e;
  font-size: 14px;
  line-height: 1.3;
}
@media screen and (max-width: 1023px) {
  .c-entry__qacat {
    font-size: 12px;
  }
}
.c-entry__qacat::before {
  content: "\f07b";
  margin-right: 5px;
  font: normal normal normal 1em/1 "Font Awesome 5 Free";
  font-weight: 900;
}
.c-entry__qacat li {
  display: inline-block;
}
.c-entry__qacat li::after {
  content: "\f105";
  color: #cce4db;
  margin: 0 3px 0 6px;
  font: normal normal normal 1em/1 "Font Awesome 5 Free";
  font-weight: 900;
}
.c-entry__qacat li:last-child::after {
  display: none;
}
.c-entry__meta {
  display: none;
}
@media screen and (max-width: 1023px) {
  .c-entry__body .p-entry-content h2 {
    margin-top: 60px;
  }
}
.c-entry__body .p-entry-content h2 + h3 {
  margin-top: 20px;
}
@media screen and (max-width: 1023px) {
  .c-entry__body .p-entry-content h3 {
    margin-top: 40px;
  }
}
.c-entry__body .p-entry-content p {
  margin-top: 20px;
}
@media screen and (max-width: 1023px) {
  .c-entry__body .p-entry-content p {
    margin-top: 15px;
  }
}
.c-entry__body .p-entry-content ul {
  margin-top: 20px;
}
@media screen and (max-width: 1023px) {
  .c-entry__body .p-entry-content ul {
    margin-top: 15px;
  }
}
.c-entry__body .p-entry-content .has-sm-small-font-size {
  font-size: 13px;
  line-height: 1.5;
}
@media screen and (max-width: 1023px) {
  .c-entry__body .p-entry-content .has-sm-small-font-size {
    font-size: 12px !important;
  }
}
.c-entry__body .p-entry-content > *:first-child {
  margin-top: 0 !important;
}
.c-entry__body .l-article-bottom-widget-area {
  margin-top: 60px;
}
@media screen and (max-width: 1023px) {
  .c-entry__body .l-article-bottom-widget-area {
    margin-top: 40px;
  }
}
.c-entry__body .l-article-bottom-widget-area .crp-list {
  margin: 0;
  padding: 0;
}
.c-entry__body .l-article-bottom-widget-area .crp-list .crp-list-item {
  margin-top: 10px;
}
.c-entry__body .l-article-bottom-widget-area .crp-list .crp-list-item:first-child {
  margin-top: 0 !important;
}
.c-entry__body .l-article-bottom-widget-area .crp-list .crp-list-item-image {
  width: 20%;
  margin-right: 20px;
}
@media screen and (max-width: 1023px) {
  .c-entry__body .l-article-bottom-widget-area .crp-list .crp-list-item-image {
    margin-right: 15px;
  }
}
.c-entry__body .l-article-bottom-widget-area .crp-list .crp-list-item-image img {
  border: 1px solid #ecedec;
}
.c-entry__body .l-article-bottom-widget-area .crp-list .crp-list-item-title {
  width: calc(80% - 20px);
}
@media screen and (max-width: 1023px) {
  .c-entry__body .l-article-bottom-widget-area .crp-list .crp-list-item-title {
    width: calc(80% - 15px);
  }
}
.c-entry__body .l-article-bottom-widget-area .crp-list .crp-list-item-title a {
  color: #07516e;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 1023px) {
  .c-entry__body .l-article-bottom-widget-area .crp-list .crp-list-item-title a {
    font-size: 14px;
  }
}

.p-entry-content--qa {
  margin-top: 50px;
}
@media screen and (max-width: 1023px) {
  .p-entry-content--qa {
    margin-top: 40px;
  }
}

.c-entries--simple .c-entries__item {
  border-color: #ecedec;
}
.c-entries--simple .c-entries__item > a {
  padding: 20px 0;
}
@media screen and (max-width: 639px) {
  .c-entries--simple .c-entries__item > a {
    padding: 15px 0;
  }
}
@media screen and (max-width: 639px) {
  .c-entries--simple .c-entry-summary__figure {
    width: 90px;
  }
}
.c-entries--simple .c-entry-summary__figure img {
  border: 1px solid #ecedec;
}
.c-entries--simple .c-entry-summary__figure .c-entry-summary__term {
  display: none !important;
}
.c-entries--simple .c-entry-summary__header .c-entry-summary__term {
  display: inline-block !important;
  margin-right: 5px;
  font-weight: 400;
}
.c-entries--simple .c-entry-summary__header .c-entry-summary__published {
  display: none;
}
.c-entries--simple .c-entry-summary__title {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  margin-top: 10px;
  color: #333333;
  font-size: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 1023px) {
  .c-entries--simple .c-entry-summary__title {
    margin-top: 5px !important;
    font-size: 18px;
  }
}
@media screen and (max-width: 639px) {
  .c-entries--simple .c-entry-summary__title {
    font-size: 16px;
  }
}
.c-entries--simple .c-entry-summary__title::before, .c-entries--simple .c-entry-summary__title::after {
  display: none;
}
@media screen and (max-width: 639px) {
  .c-entries--simple .c-entry-summary__term {
    padding: 5px 8px;
  }
}
.c-entries--simple .c-entry-summary__meta {
  display: none;
}

.l-footer .c-entry-summary__content {
  display: none;
}

.alignleft,
.alignright {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

@media screen and (max-width: 1023px) {
  .c-entry__header {
    margin-bottom: 20px;
  }
}
.c-entry__title {
  line-height: 1.2;
  color: #07516e;
  border: none;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 5px solid #ecf7f3;
}
@media screen and (max-width: 1023px) {
  .c-entry__title {
    margin-bottom: 20px;
  }
}
.c-entry__title--qacat {
  margin-bottom: 20px;
}
.c-entry__title--qa {
  margin-bottom: 10px;
}
.c-entry__subtitle {
  line-height: 1.2;
  color: #07516e;
}
@media screen and (max-width: 1023px) {
  .c-entry__subtitle {
    font-size: 18px;
  }
}
.c-entry__qatitle {
  position: relative;
  margin-top: 30px;
  padding-left: 40px;
  min-height: 30px;
  line-height: 1.3;
  color: #07516e;
}
@media screen and (max-width: 1023px) {
  .c-entry__qatitle {
    margin-top: 20px;
    padding-left: 38px;
    font-size: 18px;
  }
}
@media screen and (max-width: 639px) {
  .c-entry__qatitle {
    padding-left: 30px;
  }
}
.c-entry__qatitle::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: 2px;
  left: 0;
  width: 30px;
  height: 30px;
  background: url("../img/member/qa/faq-q1_2.png") 0 0 no-repeat;
  background-size: 30px 30px;
}
@media screen and (max-width: 1023px) {
  .c-entry__qatitle::before {
    top: -2px;
  }
}
@media screen and (max-width: 639px) {
  .c-entry__qatitle::before {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
  }
}
.c-entry__mencat {
  margin-bottom: 10px;
}
@media screen and (max-width: 1023px) {
  .c-entry__mencat {
    margin-bottom: 5px;
  }
}
.c-entry__mencat span {
  display: inline-block;
  padding: 5px 13px;
  color: #fff;
  background: #07516e;
  border-radius: 5px;
}
@media screen and (max-width: 1023px) {
  .c-entry__mencat span {
    padding: 2px 10px;
  }
}
.c-entry__mencat.social-and-employment span {
  background: #219be0;
}
.c-entry__mencat.employment-only span {
  background: #eec132;
}
.c-entry__mencat.welfare span {
  background: #ee3261;
}
.c-entry__qacat {
  padding-left: 0;
  color: #07516e;
  font-size: 14px;
  line-height: 1.3;
}
@media screen and (max-width: 1023px) {
  .c-entry__qacat {
    font-size: 12px;
  }
}
.c-entry__qacat::before {
  content: "\f07b";
  margin-right: 5px;
  font: normal normal normal 1em/1 "Font Awesome 5 Free";
  font-weight: 900;
}
.c-entry__qacat li {
  display: inline-block;
}
.c-entry__qacat li::after {
  content: "\f105";
  color: #cce4db;
  margin: 0 3px 0 6px;
  font: normal normal normal 1em/1 "Font Awesome 5 Free";
  font-weight: 900;
}
.c-entry__qacat li:last-child::after {
  display: none;
}
.c-entry__meta {
  display: none;
}
@media screen and (max-width: 1023px) {
  .c-entry__body .p-entry-content h2 {
    margin-top: 60px;
  }
}
.c-entry__body .p-entry-content h2 + h3 {
  margin-top: 20px;
}
@media screen and (max-width: 1023px) {
  .c-entry__body .p-entry-content h3 {
    margin-top: 40px;
  }
}
.c-entry__body .p-entry-content p {
  margin-top: 20px;
}
@media screen and (max-width: 1023px) {
  .c-entry__body .p-entry-content p {
    margin-top: 15px;
  }
}
.c-entry__body .p-entry-content ul {
  margin-top: 20px;
}
@media screen and (max-width: 1023px) {
  .c-entry__body .p-entry-content ul {
    margin-top: 15px;
  }
}
.c-entry__body .p-entry-content .has-sm-small-font-size {
  font-size: 13px;
  line-height: 1.5;
}
@media screen and (max-width: 1023px) {
  .c-entry__body .p-entry-content .has-sm-small-font-size {
    font-size: 12px !important;
  }
}
.c-entry__body .p-entry-content > *:first-child {
  margin-top: 0 !important;
}
.c-entry__body .l-article-bottom-widget-area {
  margin-top: 60px;
}
@media screen and (max-width: 1023px) {
  .c-entry__body .l-article-bottom-widget-area {
    margin-top: 40px;
  }
}
.c-entry__body .l-article-bottom-widget-area .crp-list {
  margin: 0;
  padding: 0;
}
.c-entry__body .l-article-bottom-widget-area .crp-list .crp-list-item {
  margin-top: 10px;
}
.c-entry__body .l-article-bottom-widget-area .crp-list .crp-list-item:first-child {
  margin-top: 0 !important;
}
.c-entry__body .l-article-bottom-widget-area .crp-list .crp-list-item-image {
  width: 20%;
  margin-right: 20px;
}
@media screen and (max-width: 1023px) {
  .c-entry__body .l-article-bottom-widget-area .crp-list .crp-list-item-image {
    margin-right: 15px;
  }
}
.c-entry__body .l-article-bottom-widget-area .crp-list .crp-list-item-image img {
  border: 1px solid #ecedec;
}
.c-entry__body .l-article-bottom-widget-area .crp-list .crp-list-item-title {
  width: calc(80% - 20px);
}
@media screen and (max-width: 1023px) {
  .c-entry__body .l-article-bottom-widget-area .crp-list .crp-list-item-title {
    width: calc(80% - 15px);
  }
}
.c-entry__body .l-article-bottom-widget-area .crp-list .crp-list-item-title a {
  color: #07516e;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 1023px) {
  .c-entry__body .l-article-bottom-widget-area .crp-list .crp-list-item-title a {
    font-size: 14px;
  }
}

.p-entry-content--qa {
  margin-top: 50px;
}
@media screen and (max-width: 1023px) {
  .p-entry-content--qa {
    margin-top: 40px;
  }
}

.p-entry-content,
.smb-section__body,
.wp-block-group__inner-container,
.l-contents-bottom-widget-area {
  /**
   * ブロックエディタ：ボタン
   */
  /**
   * ブロックエディタ：グループ
   */
  /**
   * ブロックエディタ：見出し
   */
  /**
   * ブロックエディタ：リスト
   */
  /**
   * 吹き出し
   */
  /* FAQ */
  /* ------------------------------------
      トップページ
  ------------------------------------ */
  /* メニュー */
}
.p-entry-content .wp-block-buttons,
.smb-section__body .wp-block-buttons,
.wp-block-group__inner-container .wp-block-buttons,
.l-contents-bottom-widget-area .wp-block-buttons {
  flex-wrap: wrap;
}
@media screen and (max-width: 1023px) {
  .p-entry-content .wp-block-buttons,
  .smb-section__body .wp-block-buttons,
  .wp-block-group__inner-container .wp-block-buttons,
  .l-contents-bottom-widget-area .wp-block-buttons {
    justify-content: center;
  }
}
.p-entry-content .wp-block-buttons.alignright,
.smb-section__body .wp-block-buttons.alignright,
.wp-block-group__inner-container .wp-block-buttons.alignright,
.l-contents-bottom-widget-area .wp-block-buttons.alignright {
  float: none;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 639px) {
  .p-entry-content .wp-block-buttons.alignright,
  .smb-section__body .wp-block-buttons.alignright,
  .wp-block-group__inner-container .wp-block-buttons.alignright,
  .l-contents-bottom-widget-area .wp-block-buttons.alignright {
    justify-content: center;
  }
}
.p-entry-content .wp-block-buttons.alignright .wp-block-button,
.smb-section__body .wp-block-buttons.alignright .wp-block-button,
.wp-block-group__inner-container .wp-block-buttons.alignright .wp-block-button,
.l-contents-bottom-widget-area .wp-block-buttons.alignright .wp-block-button {
  padding-right: 0;
}
.p-entry-content .wp-block-buttons.alignleft,
.smb-section__body .wp-block-buttons.alignleft,
.wp-block-group__inner-container .wp-block-buttons.alignleft,
.l-contents-bottom-widget-area .wp-block-buttons.alignleft {
  float: none;
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 639px) {
  .p-entry-content .wp-block-buttons.alignleft,
  .smb-section__body .wp-block-buttons.alignleft,
  .wp-block-group__inner-container .wp-block-buttons.alignleft,
  .l-contents-bottom-widget-area .wp-block-buttons.alignleft {
    justify-content: center;
  }
}
.p-entry-content .wp-block-buttons.alignleft .wp-block-button,
.smb-section__body .wp-block-buttons.alignleft .wp-block-button,
.wp-block-group__inner-container .wp-block-buttons.alignleft .wp-block-button,
.l-contents-bottom-widget-area .wp-block-buttons.alignleft .wp-block-button {
  padding-right: 0;
}
@media screen and (max-width: 639px) {
  .p-entry-content .wp-block-buttons .wp-block-button,
  .smb-section__body .wp-block-buttons .wp-block-button,
  .wp-block-group__inner-container .wp-block-buttons .wp-block-button,
  .l-contents-bottom-widget-area .wp-block-buttons .wp-block-button {
    width: 90%;
    margin-left: 0;
    margin-right: 0;
  }
}
.p-entry-content .wp-block-buttons .wp-block-button__link,
.smb-section__body .wp-block-buttons .wp-block-button__link,
.wp-block-group__inner-container .wp-block-buttons .wp-block-button__link,
.l-contents-bottom-widget-area .wp-block-buttons .wp-block-button__link {
  position: relative;
  min-width: 300px;
  font-weight: 700;
  color: #333333;
  background: #fff;
  border: 1px solid #01b6ad;
  border-radius: 0;
  box-shadow: 4px 4px 0 0 rgba(1, 182, 173, 0.2);
}
@media screen and (max-width: 639px) {
  .p-entry-content .wp-block-buttons .wp-block-button__link,
  .smb-section__body .wp-block-buttons .wp-block-button__link,
  .wp-block-group__inner-container .wp-block-buttons .wp-block-button__link,
  .l-contents-bottom-widget-area .wp-block-buttons .wp-block-button__link {
    width: 100%;
    min-width: auto;
  }
}
.p-entry-content .wp-block-buttons .wp-block-button__link::before,
.smb-section__body .wp-block-buttons .wp-block-button__link::before,
.wp-block-group__inner-container .wp-block-buttons .wp-block-button__link::before,
.l-contents-bottom-widget-area .wp-block-buttons .wp-block-button__link::before {
  position: absolute;
  content: "\f054";
  display: block;
  top: 50%;
  right: 10px;
  margin-top: -0.45em;
  font: normal normal normal 16px/1 "Font Awesome 5 Free";
  font-weight: 900;
  color: #01b6ad;
}
.p-entry-content .is-style-sme-alert::before,
.p-entry-content .is-style-sme-alert-success::before,
.p-entry-content .is-style-sme-alert-warning::before,
.p-entry-content .is-style-sme-alert-remark::before,
.smb-section__body .is-style-sme-alert::before,
.smb-section__body .is-style-sme-alert-success::before,
.smb-section__body .is-style-sme-alert-warning::before,
.smb-section__body .is-style-sme-alert-remark::before,
.wp-block-group__inner-container .is-style-sme-alert::before,
.wp-block-group__inner-container .is-style-sme-alert-success::before,
.wp-block-group__inner-container .is-style-sme-alert-warning::before,
.wp-block-group__inner-container .is-style-sme-alert-remark::before,
.l-contents-bottom-widget-area .is-style-sme-alert::before,
.l-contents-bottom-widget-area .is-style-sme-alert-success::before,
.l-contents-bottom-widget-area .is-style-sme-alert-warning::before,
.l-contents-bottom-widget-area .is-style-sme-alert-remark::before {
  display: none;
}
.p-entry-content .is-style-sme-alert .wp-block-group__inner-container h3::before,
.p-entry-content .is-style-sme-alert-success .wp-block-group__inner-container h3::before,
.p-entry-content .is-style-sme-alert-warning .wp-block-group__inner-container h3::before,
.p-entry-content .is-style-sme-alert-remark .wp-block-group__inner-container h3::before,
.smb-section__body .is-style-sme-alert .wp-block-group__inner-container h3::before,
.smb-section__body .is-style-sme-alert-success .wp-block-group__inner-container h3::before,
.smb-section__body .is-style-sme-alert-warning .wp-block-group__inner-container h3::before,
.smb-section__body .is-style-sme-alert-remark .wp-block-group__inner-container h3::before,
.wp-block-group__inner-container .is-style-sme-alert .wp-block-group__inner-container h3::before,
.wp-block-group__inner-container .is-style-sme-alert-success .wp-block-group__inner-container h3::before,
.wp-block-group__inner-container .is-style-sme-alert-warning .wp-block-group__inner-container h3::before,
.wp-block-group__inner-container .is-style-sme-alert-remark .wp-block-group__inner-container h3::before,
.l-contents-bottom-widget-area .is-style-sme-alert .wp-block-group__inner-container h3::before,
.l-contents-bottom-widget-area .is-style-sme-alert-success .wp-block-group__inner-container h3::before,
.l-contents-bottom-widget-area .is-style-sme-alert-warning .wp-block-group__inner-container h3::before,
.l-contents-bottom-widget-area .is-style-sme-alert-remark .wp-block-group__inner-container h3::before {
  content: "";
  position: absolute;
  display: block;
  height: 24px;
  width: 24px;
  top: 5px;
  left: 0;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1023px) {
  .p-entry-content .is-style-sme-alert .wp-block-group__inner-container h3::before,
  .p-entry-content .is-style-sme-alert-success .wp-block-group__inner-container h3::before,
  .p-entry-content .is-style-sme-alert-warning .wp-block-group__inner-container h3::before,
  .p-entry-content .is-style-sme-alert-remark .wp-block-group__inner-container h3::before,
  .smb-section__body .is-style-sme-alert .wp-block-group__inner-container h3::before,
  .smb-section__body .is-style-sme-alert-success .wp-block-group__inner-container h3::before,
  .smb-section__body .is-style-sme-alert-warning .wp-block-group__inner-container h3::before,
  .smb-section__body .is-style-sme-alert-remark .wp-block-group__inner-container h3::before,
  .wp-block-group__inner-container .is-style-sme-alert .wp-block-group__inner-container h3::before,
  .wp-block-group__inner-container .is-style-sme-alert-success .wp-block-group__inner-container h3::before,
  .wp-block-group__inner-container .is-style-sme-alert-warning .wp-block-group__inner-container h3::before,
  .wp-block-group__inner-container .is-style-sme-alert-remark .wp-block-group__inner-container h3::before,
  .l-contents-bottom-widget-area .is-style-sme-alert .wp-block-group__inner-container h3::before,
  .l-contents-bottom-widget-area .is-style-sme-alert-success .wp-block-group__inner-container h3::before,
  .l-contents-bottom-widget-area .is-style-sme-alert-warning .wp-block-group__inner-container h3::before,
  .l-contents-bottom-widget-area .is-style-sme-alert-remark .wp-block-group__inner-container h3::before {
    top: 3px;
  }
}
.p-entry-content .is-style-sme-alert .wp-block-group__inner-container h3,
.smb-section__body .is-style-sme-alert .wp-block-group__inner-container h3,
.wp-block-group__inner-container .is-style-sme-alert .wp-block-group__inner-container h3,
.l-contents-bottom-widget-area .is-style-sme-alert .wp-block-group__inner-container h3 {
  border-bottom: 2px solid #fff3cd;
}
.p-entry-content .is-style-sme-alert .wp-block-group__inner-container h3::before,
.smb-section__body .is-style-sme-alert .wp-block-group__inner-container h3::before,
.wp-block-group__inner-container .is-style-sme-alert .wp-block-group__inner-container h3::before,
.l-contents-bottom-widget-area .is-style-sme-alert .wp-block-group__inner-container h3::before {
  background-image: url("../../../snow-monkey-editor/src/style/alert/icon.svg");
}
.p-entry-content .is-style-sme-alert-success .wp-block-group__inner-container h3,
.smb-section__body .is-style-sme-alert-success .wp-block-group__inner-container h3,
.wp-block-group__inner-container .is-style-sme-alert-success .wp-block-group__inner-container h3,
.l-contents-bottom-widget-area .is-style-sme-alert-success .wp-block-group__inner-container h3 {
  border-bottom: 2px solid #dfffb3;
}
.p-entry-content .is-style-sme-alert-success .wp-block-group__inner-container h3::before,
.smb-section__body .is-style-sme-alert-success .wp-block-group__inner-container h3::before,
.wp-block-group__inner-container .is-style-sme-alert-success .wp-block-group__inner-container h3::before,
.l-contents-bottom-widget-area .is-style-sme-alert-success .wp-block-group__inner-container h3::before {
  background-image: url("../../../snow-monkey-editor/src/style/alert-success/icon.svg");
}
.p-entry-content .is-style-sme-alert-warning .wp-block-group__inner-container h3,
.smb-section__body .is-style-sme-alert-warning .wp-block-group__inner-container h3,
.wp-block-group__inner-container .is-style-sme-alert-warning .wp-block-group__inner-container h3,
.l-contents-bottom-widget-area .is-style-sme-alert-warning .wp-block-group__inner-container h3 {
  border-bottom: 2px solid #ffdacd;
}
.p-entry-content .is-style-sme-alert-warning .wp-block-group__inner-container h3::before,
.smb-section__body .is-style-sme-alert-warning .wp-block-group__inner-container h3::before,
.wp-block-group__inner-container .is-style-sme-alert-warning .wp-block-group__inner-container h3::before,
.l-contents-bottom-widget-area .is-style-sme-alert-warning .wp-block-group__inner-container h3::before {
  background-image: url("../../../snow-monkey-editor/src/style/alert-warning/icon.svg");
}
.p-entry-content .is-style-sme-alert-remark .wp-block-group__inner-container h3,
.smb-section__body .is-style-sme-alert-remark .wp-block-group__inner-container h3,
.wp-block-group__inner-container .is-style-sme-alert-remark .wp-block-group__inner-container h3,
.l-contents-bottom-widget-area .is-style-sme-alert-remark .wp-block-group__inner-container h3 {
  border-bottom: 2px solid #eee;
}
.p-entry-content .is-style-sme-alert-remark .wp-block-group__inner-container h3::before,
.smb-section__body .is-style-sme-alert-remark .wp-block-group__inner-container h3::before,
.wp-block-group__inner-container .is-style-sme-alert-remark .wp-block-group__inner-container h3::before,
.l-contents-bottom-widget-area .is-style-sme-alert-remark .wp-block-group__inner-container h3::before {
  background-image: url("../../../snow-monkey-editor/src/style/alert-remark/icon.svg");
}
.p-entry-content .is-style-member-summary,
.smb-section__body .is-style-member-summary,
.wp-block-group__inner-container .is-style-member-summary,
.l-contents-bottom-widget-area .is-style-member-summary {
  padding: 30px;
  color: #fff;
  background: #01b6ad;
  border-radius: 20px;
}
@media screen and (max-width: 1023px) {
  .p-entry-content .is-style-member-summary,
  .smb-section__body .is-style-member-summary,
  .wp-block-group__inner-container .is-style-member-summary,
  .l-contents-bottom-widget-area .is-style-member-summary {
    padding: 20px;
  }
}
@media screen and (max-width: 639px) {
  .p-entry-content .is-style-member-summary,
  .smb-section__body .is-style-member-summary,
  .wp-block-group__inner-container .is-style-member-summary,
  .l-contents-bottom-widget-area .is-style-member-summary {
    padding: 15px;
  }
}
.p-entry-content .is-style-member-summary h3,
.smb-section__body .is-style-member-summary h3,
.wp-block-group__inner-container .is-style-member-summary h3,
.l-contents-bottom-widget-area .is-style-member-summary h3 {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  position: relative;
  padding: 10px 20px;
  color: #01b6ad;
  background: #fff;
  border: 2px solid #01b6ad;
  border-radius: 10px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-entry-content .is-style-member-summary h3,
  .smb-section__body .is-style-member-summary h3,
  .wp-block-group__inner-container .is-style-member-summary h3,
  .l-contents-bottom-widget-area .is-style-member-summary h3 {
    padding: 8px 15px;
  }
}
@media screen and (max-width: 639px) {
  .p-entry-content .is-style-member-summary h3,
  .smb-section__body .is-style-member-summary h3,
  .wp-block-group__inner-container .is-style-member-summary h3,
  .l-contents-bottom-widget-area .is-style-member-summary h3 {
    padding: 6px 10px;
  }
}
.p-entry-content .is-style-member-summary h3::before,
.smb-section__body .is-style-member-summary h3::before,
.wp-block-group__inner-container .is-style-member-summary h3::before,
.l-contents-bottom-widget-area .is-style-member-summary h3::before {
  display: none;
}
.p-entry-content .is-style-member-summary .is-style-ordered-list-point,
.smb-section__body .is-style-member-summary .is-style-ordered-list-point,
.wp-block-group__inner-container .is-style-member-summary .is-style-ordered-list-point,
.l-contents-bottom-widget-area .is-style-member-summary .is-style-ordered-list-point {
  margin-top: 20px;
}
@media screen and (max-width: 639px) {
  .p-entry-content .is-style-member-summary .is-style-ordered-list-point,
  .smb-section__body .is-style-member-summary .is-style-ordered-list-point,
  .wp-block-group__inner-container .is-style-member-summary .is-style-ordered-list-point,
  .l-contents-bottom-widget-area .is-style-member-summary .is-style-ordered-list-point {
    margin-top: 10px;
  }
}
.p-entry-content .is-style-member-outline,
.smb-section__body .is-style-member-outline,
.wp-block-group__inner-container .is-style-member-outline,
.l-contents-bottom-widget-area .is-style-member-outline {
  margin-top: 60px;
  padding: 0 20px 20px 20px;
  background: #f8fffc;
  border: 1px solid #e2f2ec;
  border-radius: 20px;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .p-entry-content .is-style-member-outline,
  .smb-section__body .is-style-member-outline,
  .wp-block-group__inner-container .is-style-member-outline,
  .l-contents-bottom-widget-area .is-style-member-outline {
    margin-top: 40px;
  }
}
.p-entry-content .is-style-member-outline h2,
.p-entry-content .is-style-member-outline h3,
.smb-section__body .is-style-member-outline h2,
.smb-section__body .is-style-member-outline h3,
.wp-block-group__inner-container .is-style-member-outline h2,
.wp-block-group__inner-container .is-style-member-outline h3,
.l-contents-bottom-widget-area .is-style-member-outline h2,
.l-contents-bottom-widget-area .is-style-member-outline h3 {
  margin: 0;
  position: relative;
  display: inline-block;
  top: -20px;
  margin-bottom: -20px;
  padding: 15px 30px;
  color: #fff;
  font-size: 20px;
  background: #01b6ad;
  border-radius: 30px;
}
@media screen and (max-width: 639px) {
  .p-entry-content .is-style-member-outline h2,
  .p-entry-content .is-style-member-outline h3,
  .smb-section__body .is-style-member-outline h2,
  .smb-section__body .is-style-member-outline h3,
  .wp-block-group__inner-container .is-style-member-outline h2,
  .wp-block-group__inner-container .is-style-member-outline h3,
  .l-contents-bottom-widget-area .is-style-member-outline h2,
  .l-contents-bottom-widget-area .is-style-member-outline h3 {
    font-size: 18px;
  }
}
.p-entry-content .is-style-member-outline h2::before,
.p-entry-content .is-style-member-outline h3::before,
.smb-section__body .is-style-member-outline h2::before,
.smb-section__body .is-style-member-outline h3::before,
.wp-block-group__inner-container .is-style-member-outline h2::before,
.wp-block-group__inner-container .is-style-member-outline h3::before,
.l-contents-bottom-widget-area .is-style-member-outline h2::before,
.l-contents-bottom-widget-area .is-style-member-outline h3::before {
  display: none;
}
.p-entry-content .is-style-member-outline h2::after,
.p-entry-content .is-style-member-outline h3::after,
.smb-section__body .is-style-member-outline h2::after,
.smb-section__body .is-style-member-outline h3::after,
.wp-block-group__inner-container .is-style-member-outline h2::after,
.wp-block-group__inner-container .is-style-member-outline h3::after,
.l-contents-bottom-widget-area .is-style-member-outline h2::after,
.l-contents-bottom-widget-area .is-style-member-outline h3::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 10px solid transparent;
  border-top: 10px solid #01b6ad;
  background: none;
}
.p-entry-content .is-style-member-outline *:not(h2),
.smb-section__body .is-style-member-outline *:not(h2),
.wp-block-group__inner-container .is-style-member-outline *:not(h2),
.l-contents-bottom-widget-area .is-style-member-outline *:not(h2) {
  text-align: left;
}
.p-entry-content .is-style-member-todo,
.smb-section__body .is-style-member-todo,
.wp-block-group__inner-container .is-style-member-todo,
.l-contents-bottom-widget-area .is-style-member-todo {
  margin: 0;
  padding: 0 20px 20px 20px;
  margin-top: 50px;
  background: #f8fffc;
  border-top: 2px solid #01b6ad;
  border-bottom: 2px solid #01b6ad;
}
@media screen and (max-width: 639px) {
  .p-entry-content .is-style-member-todo,
  .smb-section__body .is-style-member-todo,
  .wp-block-group__inner-container .is-style-member-todo,
  .l-contents-bottom-widget-area .is-style-member-todo {
    padding: 0 10px 15px 10px;
  }
}
.p-entry-content .is-style-member-todo h3,
.p-entry-content .is-style-member-todo h4,
.smb-section__body .is-style-member-todo h3,
.smb-section__body .is-style-member-todo h4,
.wp-block-group__inner-container .is-style-member-todo h3,
.wp-block-group__inner-container .is-style-member-todo h4,
.l-contents-bottom-widget-area .is-style-member-todo h3,
.l-contents-bottom-widget-area .is-style-member-todo h4 {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  position: relative;
  top: -20px;
  margin: 0 0 -20px 0;
  padding: 5px 15px;
  display: inline-block;
  font-size: 16px;
  color: #fff;
  background: #01b6ad;
  border-radius: 5px;
}
.p-entry-content .is-style-member-todo h3::before,
.p-entry-content .is-style-member-todo h4::before,
.smb-section__body .is-style-member-todo h3::before,
.smb-section__body .is-style-member-todo h4::before,
.wp-block-group__inner-container .is-style-member-todo h3::before,
.wp-block-group__inner-container .is-style-member-todo h4::before,
.l-contents-bottom-widget-area .is-style-member-todo h3::before,
.l-contents-bottom-widget-area .is-style-member-todo h4::before {
  display: none;
}
@media screen and (max-width: 639px) {
  .p-entry-content .is-style-member-todo h3,
  .p-entry-content .is-style-member-todo h4,
  .smb-section__body .is-style-member-todo h3,
  .smb-section__body .is-style-member-todo h4,
  .wp-block-group__inner-container .is-style-member-todo h3,
  .wp-block-group__inner-container .is-style-member-todo h4,
  .l-contents-bottom-widget-area .is-style-member-todo h3,
  .l-contents-bottom-widget-area .is-style-member-todo h4 {
    top: -15px;
    margin-bottom: -15px;
    padding: 3px 10px;
    font-size: 16px;
  }
}
.p-entry-content .is-style-member-todo h3 + *,
.p-entry-content .is-style-member-todo h4 + *,
.smb-section__body .is-style-member-todo h3 + *,
.smb-section__body .is-style-member-todo h4 + *,
.wp-block-group__inner-container .is-style-member-todo h3 + *,
.wp-block-group__inner-container .is-style-member-todo h4 + *,
.l-contents-bottom-widget-area .is-style-member-todo h3 + *,
.l-contents-bottom-widget-area .is-style-member-todo h4 + * {
  margin-top: 0;
}
.p-entry-content .is-style-member-related,
.smb-section__body .is-style-member-related,
.wp-block-group__inner-container .is-style-member-related,
.l-contents-bottom-widget-area .is-style-member-related {
  margin-top: 20px;
  padding: 15px 20px;
  background: #f9f9f9;
  border-radius: 5px;
}
@media screen and (max-width: 639px) {
  .p-entry-content .is-style-member-related,
  .smb-section__body .is-style-member-related,
  .wp-block-group__inner-container .is-style-member-related,
  .l-contents-bottom-widget-area .is-style-member-related {
    padding: 10px;
  }
}
.p-entry-content .is-style-member-related h4,
.smb-section__body .is-style-member-related h4,
.wp-block-group__inner-container .is-style-member-related h4,
.l-contents-bottom-widget-area .is-style-member-related h4 {
  margin: 0;
  padding: 0;
  font-size: 18px;
}
@media screen and (max-width: 639px) {
  .p-entry-content .is-style-member-related h4,
  .smb-section__body .is-style-member-related h4,
  .wp-block-group__inner-container .is-style-member-related h4,
  .l-contents-bottom-widget-area .is-style-member-related h4 {
    font-size: 16px;
  }
}
.p-entry-content .is-style-member-related h4 + *,
.smb-section__body .is-style-member-related h4 + *,
.wp-block-group__inner-container .is-style-member-related h4 + *,
.l-contents-bottom-widget-area .is-style-member-related h4 + * {
  margin-top: 10px;
}
.p-entry-content .is-style-member-related ul li a,
.smb-section__body .is-style-member-related ul li a,
.wp-block-group__inner-container .is-style-member-related ul li a,
.l-contents-bottom-widget-area .is-style-member-related ul li a {
  color: #07516e;
}
.p-entry-content .is-style-member-related > *:first-child,
.smb-section__body .is-style-member-related > *:first-child,
.wp-block-group__inner-container .is-style-member-related > *:first-child,
.l-contents-bottom-widget-area .is-style-member-related > *:first-child {
  margin-top: 0;
}
.p-entry-content .is-style-member-faq,
.smb-section__body .is-style-member-faq,
.wp-block-group__inner-container .is-style-member-faq,
.l-contents-bottom-widget-area .is-style-member-faq {
  margin-top: 20px;
  padding: 0 20px 20px 20px;
  background: #fff;
  border: 1px solid #cce4db;
  border-radius: 5px;
}
@media screen and (max-width: 639px) {
  .p-entry-content .is-style-member-faq,
  .smb-section__body .is-style-member-faq,
  .wp-block-group__inner-container .is-style-member-faq,
  .l-contents-bottom-widget-area .is-style-member-faq {
    padding: 0 10px 10px 10px;
  }
}
.p-entry-content .is-style-member-faq h3,
.p-entry-content .is-style-member-faq h4,
.smb-section__body .is-style-member-faq h3,
.smb-section__body .is-style-member-faq h4,
.wp-block-group__inner-container .is-style-member-faq h3,
.wp-block-group__inner-container .is-style-member-faq h4,
.l-contents-bottom-widget-area .is-style-member-faq h3,
.l-contents-bottom-widget-area .is-style-member-faq h4 {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  position: relative;
  width: calc(100% + 40px);
  left: -20px;
  padding: 5px 20px;
  font-size: 18px;
  color: #fff;
  background: #07516e;
  border-radius: 5px 5px 0 0;
}
@media screen and (max-width: 639px) {
  .p-entry-content .is-style-member-faq h3,
  .p-entry-content .is-style-member-faq h4,
  .smb-section__body .is-style-member-faq h3,
  .smb-section__body .is-style-member-faq h4,
  .wp-block-group__inner-container .is-style-member-faq h3,
  .wp-block-group__inner-container .is-style-member-faq h4,
  .l-contents-bottom-widget-area .is-style-member-faq h3,
  .l-contents-bottom-widget-area .is-style-member-faq h4 {
    left: -10px;
    padding: 5px 10px;
    width: calc(100% + 20px);
    font-size: 16px;
  }
}
.p-entry-content .is-style-member-faq ul,
.smb-section__body .is-style-member-faq ul,
.wp-block-group__inner-container .is-style-member-faq ul,
.l-contents-bottom-widget-area .is-style-member-faq ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 20px;
}
@media screen and (max-width: 639px) {
  .p-entry-content .is-style-member-faq ul,
  .smb-section__body .is-style-member-faq ul,
  .wp-block-group__inner-container .is-style-member-faq ul,
  .l-contents-bottom-widget-area .is-style-member-faq ul {
    margin-top: 15px;
  }
}
.p-entry-content .is-style-member-faq ul li,
.smb-section__body .is-style-member-faq ul li,
.wp-block-group__inner-container .is-style-member-faq ul li,
.l-contents-bottom-widget-area .is-style-member-faq ul li {
  position: relative;
  margin-top: 10px;
  padding-left: 30px;
}
.p-entry-content .is-style-member-faq ul li::before,
.smb-section__body .is-style-member-faq ul li::before,
.wp-block-group__inner-container .is-style-member-faq ul li::before,
.l-contents-bottom-widget-area .is-style-member-faq ul li::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 1px;
  left: 0;
  width: 25px;
  height: 25px;
  background: url(../img/member/qa/faq-q1_2.png) 0 0 no-repeat;
  background-size: 25px 25px;
}
.p-entry-content .is-style-member-faq ul li a,
.smb-section__body .is-style-member-faq ul li a,
.wp-block-group__inner-container .is-style-member-faq ul li a,
.l-contents-bottom-widget-area .is-style-member-faq ul li a {
  display: inline-block;
  font-weight: 700;
}
.p-entry-content .is-style-member-faq ul li p,
.smb-section__body .is-style-member-faq ul li p,
.wp-block-group__inner-container .is-style-member-faq ul li p,
.l-contents-bottom-widget-area .is-style-member-faq ul li p {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (max-width: 639px) {
  .p-entry-content .is-style-member-faq ul li p,
  .smb-section__body .is-style-member-faq ul li p,
  .wp-block-group__inner-container .is-style-member-faq ul li p,
  .l-contents-bottom-widget-area .is-style-member-faq ul li p {
    font-size: 12px;
  }
}
.p-entry-content .is-style-member-checksheet,
.smb-section__body .is-style-member-checksheet,
.wp-block-group__inner-container .is-style-member-checksheet,
.l-contents-bottom-widget-area .is-style-member-checksheet {
  padding: 25px;
  background: #fff;
  border: 20px solid #e2f2ec;
}
@media screen and (max-width: 1023px) {
  .p-entry-content .is-style-member-checksheet,
  .smb-section__body .is-style-member-checksheet,
  .wp-block-group__inner-container .is-style-member-checksheet,
  .l-contents-bottom-widget-area .is-style-member-checksheet {
    padding: 20px;
    border-width: 15px;
  }
}
@media screen and (max-width: 639px) {
  .p-entry-content .is-style-member-checksheet,
  .smb-section__body .is-style-member-checksheet,
  .wp-block-group__inner-container .is-style-member-checksheet,
  .l-contents-bottom-widget-area .is-style-member-checksheet {
    padding: 15px;
    border-width: 15px;
  }
}
.p-entry-content .is-style-member-checksheet h2,
.p-entry-content .is-style-member-checksheet h3,
.p-entry-content .is-style-member-checksheet h4,
.smb-section__body .is-style-member-checksheet h2,
.smb-section__body .is-style-member-checksheet h3,
.smb-section__body .is-style-member-checksheet h4,
.wp-block-group__inner-container .is-style-member-checksheet h2,
.wp-block-group__inner-container .is-style-member-checksheet h3,
.wp-block-group__inner-container .is-style-member-checksheet h4,
.l-contents-bottom-widget-area .is-style-member-checksheet h2,
.l-contents-bottom-widget-area .is-style-member-checksheet h3,
.l-contents-bottom-widget-area .is-style-member-checksheet h4 {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  position: relative;
  margin-bottom: 20px;
  padding-left: 1.7em;
  padding-bottom: 15px;
  color: #07516e;
  font-size: 20px;
  border-bottom: 1px dashed #cce4db;
}
@media screen and (max-width: 639px) {
  .p-entry-content .is-style-member-checksheet h2,
  .p-entry-content .is-style-member-checksheet h3,
  .p-entry-content .is-style-member-checksheet h4,
  .smb-section__body .is-style-member-checksheet h2,
  .smb-section__body .is-style-member-checksheet h3,
  .smb-section__body .is-style-member-checksheet h4,
  .wp-block-group__inner-container .is-style-member-checksheet h2,
  .wp-block-group__inner-container .is-style-member-checksheet h3,
  .wp-block-group__inner-container .is-style-member-checksheet h4,
  .l-contents-bottom-widget-area .is-style-member-checksheet h2,
  .l-contents-bottom-widget-area .is-style-member-checksheet h3,
  .l-contents-bottom-widget-area .is-style-member-checksheet h4 {
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
}
.p-entry-content .is-style-member-checksheet h2::before,
.p-entry-content .is-style-member-checksheet h3::before,
.p-entry-content .is-style-member-checksheet h4::before,
.smb-section__body .is-style-member-checksheet h2::before,
.smb-section__body .is-style-member-checksheet h3::before,
.smb-section__body .is-style-member-checksheet h4::before,
.wp-block-group__inner-container .is-style-member-checksheet h2::before,
.wp-block-group__inner-container .is-style-member-checksheet h3::before,
.wp-block-group__inner-container .is-style-member-checksheet h4::before,
.l-contents-bottom-widget-area .is-style-member-checksheet h2::before,
.l-contents-bottom-widget-area .is-style-member-checksheet h3::before,
.l-contents-bottom-widget-area .is-style-member-checksheet h4::before {
  background: none;
  position: absolute;
  content: "\f044";
  display: block;
  top: 0.075em;
  left: 0;
  font: normal normal normal 1.2em/1 "Font Awesome 5 Free";
  font-weight: 900;
  color: #01b6ad;
}
.p-entry-content .is-style-member-checksheet > ul,
.smb-section__body .is-style-member-checksheet > ul,
.wp-block-group__inner-container .is-style-member-checksheet > ul,
.l-contents-bottom-widget-area .is-style-member-checksheet > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-entry-content .is-style-member-checksheet > ul > li,
.smb-section__body .is-style-member-checksheet > ul > li,
.wp-block-group__inner-container .is-style-member-checksheet > ul > li,
.l-contents-bottom-widget-area .is-style-member-checksheet > ul > li {
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 42px;
  margin-top: 15px;
  padding-top: 8px;
  padding-left: 55px;
}
@media screen and (max-width: 639px) {
  .p-entry-content .is-style-member-checksheet > ul > li,
  .smb-section__body .is-style-member-checksheet > ul > li,
  .wp-block-group__inner-container .is-style-member-checksheet > ul > li,
  .l-contents-bottom-widget-area .is-style-member-checksheet > ul > li {
    margin-top: 10px;
    padding-left: 50px;
  }
}
.p-entry-content .is-style-member-checksheet > ul > li label,
.p-entry-content .is-style-member-checksheet > ul > li .label,
.smb-section__body .is-style-member-checksheet > ul > li label,
.smb-section__body .is-style-member-checksheet > ul > li .label,
.wp-block-group__inner-container .is-style-member-checksheet > ul > li label,
.wp-block-group__inner-container .is-style-member-checksheet > ul > li .label,
.l-contents-bottom-widget-area .is-style-member-checksheet > ul > li label,
.l-contents-bottom-widget-area .is-style-member-checksheet > ul > li .label {
  position: absolute;
  top: 0;
  left: 0;
}
.p-entry-content .is-style-member-checksheet > ul > li label .check_label_loop,
.p-entry-content .is-style-member-checksheet > ul > li .label .check_label_loop,
.smb-section__body .is-style-member-checksheet > ul > li label .check_label_loop,
.smb-section__body .is-style-member-checksheet > ul > li .label .check_label_loop,
.wp-block-group__inner-container .is-style-member-checksheet > ul > li label .check_label_loop,
.wp-block-group__inner-container .is-style-member-checksheet > ul > li .label .check_label_loop,
.l-contents-bottom-widget-area .is-style-member-checksheet > ul > li label .check_label_loop,
.l-contents-bottom-widget-area .is-style-member-checksheet > ul > li .label .check_label_loop {
  position: relative;
  float: left;
  display: block;
  width: 36px;
  height: 36px;
  top: 0;
  left: 5px;
  text-align: center;
  line-height: 36px;
  color: #fff;
  background: #01b6ad;
  border-radius: 18px;
  z-index: 2;
}
.p-entry-content .is-style-member-checksheet > ul > li ul,
.smb-section__body .is-style-member-checksheet > ul > li ul,
.wp-block-group__inner-container .is-style-member-checksheet > ul > li ul,
.l-contents-bottom-widget-area .is-style-member-checksheet > ul > li ul {
  margin: 10px 0 0 0;
}
@media screen and (max-width: 639px) {
  .p-entry-content .is-style-member-checksheet > ul > li ul,
  .smb-section__body .is-style-member-checksheet > ul > li ul,
  .wp-block-group__inner-container .is-style-member-checksheet > ul > li ul,
  .l-contents-bottom-widget-area .is-style-member-checksheet > ul > li ul {
    margin-top: 5px;
  }
}
.p-entry-content .is-style-member-checksheet > ul > li ul li,
.smb-section__body .is-style-member-checksheet > ul > li ul li,
.wp-block-group__inner-container .is-style-member-checksheet > ul > li ul li,
.l-contents-bottom-widget-area .is-style-member-checksheet > ul > li ul li {
  margin-top: 5px;
  line-height: 1.5;
}
.p-entry-content .is-style-member-checksheet > ul li .has-sm-small-font-size,
.smb-section__body .is-style-member-checksheet > ul li .has-sm-small-font-size,
.wp-block-group__inner-container .is-style-member-checksheet > ul li .has-sm-small-font-size,
.l-contents-bottom-widget-area .is-style-member-checksheet > ul li .has-sm-small-font-size {
  display: inline-block;
  margin: 5px;
  line-height: 1.5;
}
.p-entry-content label,
.smb-section__body label,
.wp-block-group__inner-container label,
.l-contents-bottom-widget-area label {
  position: relative;
  width: 42px;
  margin: 0;
  padding: 0;
  z-index: 2;
}
.p-entry-content label input[type=checkbox],
.smb-section__body label input[type=checkbox],
.wp-block-group__inner-container label input[type=checkbox],
.l-contents-bottom-widget-area label input[type=checkbox] {
  display: none;
}
.p-entry-content label input[type=checkbox]#contact_agreement-1,
.smb-section__body label input[type=checkbox]#contact_agreement-1,
.wp-block-group__inner-container label input[type=checkbox]#contact_agreement-1,
.l-contents-bottom-widget-area label input[type=checkbox]#contact_agreement-1 {
  display: inline-block;
}
.p-entry-content label input[type=checkbox]:checked + .check_label,
.smb-section__body label input[type=checkbox]:checked + .check_label,
.wp-block-group__inner-container label input[type=checkbox]:checked + .check_label,
.l-contents-bottom-widget-area label input[type=checkbox]:checked + .check_label {
  background-position: left bottom;
}
.p-entry-content label input[type=checkbox] + .check_label,
.smb-section__body label input[type=checkbox] + .check_label,
.wp-block-group__inner-container label input[type=checkbox] + .check_label,
.l-contents-bottom-widget-area label input[type=checkbox] + .check_label {
  overflow: hidden;
  display: inline-block;
  -moz-appearance: none;
       appearance: none;
  position: relative;
  width: 42px;
  height: 42px;
  vertical-align: middle;
  background: url("../img/member/checksheet/checkbox2.png") left top;
  background-size: 42px auto;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  -webkit-appearance: none;
}
.p-entry-content .is-style-accordion,
.smb-section__body .is-style-accordion,
.wp-block-group__inner-container .is-style-accordion,
.l-contents-bottom-widget-area .is-style-accordion {
  margin-top: 20px;
  border: 1px solid #e6e7e6;
  border-radius: 5px;
}
.p-entry-content .is-style-accordion + .is-style-accordion,
.smb-section__body .is-style-accordion + .is-style-accordion,
.wp-block-group__inner-container .is-style-accordion + .is-style-accordion,
.l-contents-bottom-widget-area .is-style-accordion + .is-style-accordion {
  margin-top: 10px;
}
.p-entry-content .is-style-accordion h2,
.p-entry-content .is-style-accordion h3,
.p-entry-content .is-style-accordion h4,
.p-entry-content .is-style-accordion h5,
.smb-section__body .is-style-accordion h2,
.smb-section__body .is-style-accordion h3,
.smb-section__body .is-style-accordion h4,
.smb-section__body .is-style-accordion h5,
.wp-block-group__inner-container .is-style-accordion h2,
.wp-block-group__inner-container .is-style-accordion h3,
.wp-block-group__inner-container .is-style-accordion h4,
.wp-block-group__inner-container .is-style-accordion h5,
.l-contents-bottom-widget-area .is-style-accordion h2,
.l-contents-bottom-widget-area .is-style-accordion h3,
.l-contents-bottom-widget-area .is-style-accordion h4,
.l-contents-bottom-widget-area .is-style-accordion h5 {
  margin: 0;
  padding: 0;
  border: none;
  position: relative;
  padding: 15px 20px 15px 45px;
  font-size: 20px;
  border-radius: 5px;
  transition: 300ms;
}
@media screen and (max-width: 1023px) {
  .p-entry-content .is-style-accordion h2,
  .p-entry-content .is-style-accordion h3,
  .p-entry-content .is-style-accordion h4,
  .p-entry-content .is-style-accordion h5,
  .smb-section__body .is-style-accordion h2,
  .smb-section__body .is-style-accordion h3,
  .smb-section__body .is-style-accordion h4,
  .smb-section__body .is-style-accordion h5,
  .wp-block-group__inner-container .is-style-accordion h2,
  .wp-block-group__inner-container .is-style-accordion h3,
  .wp-block-group__inner-container .is-style-accordion h4,
  .wp-block-group__inner-container .is-style-accordion h5,
  .l-contents-bottom-widget-area .is-style-accordion h2,
  .l-contents-bottom-widget-area .is-style-accordion h3,
  .l-contents-bottom-widget-area .is-style-accordion h4,
  .l-contents-bottom-widget-area .is-style-accordion h5 {
    padding: 15px 20px 15px 45px;
    font-size: 18px;
  }
}
@media screen and (max-width: 639px) {
  .p-entry-content .is-style-accordion h2,
  .p-entry-content .is-style-accordion h3,
  .p-entry-content .is-style-accordion h4,
  .p-entry-content .is-style-accordion h5,
  .smb-section__body .is-style-accordion h2,
  .smb-section__body .is-style-accordion h3,
  .smb-section__body .is-style-accordion h4,
  .smb-section__body .is-style-accordion h5,
  .wp-block-group__inner-container .is-style-accordion h2,
  .wp-block-group__inner-container .is-style-accordion h3,
  .wp-block-group__inner-container .is-style-accordion h4,
  .wp-block-group__inner-container .is-style-accordion h5,
  .l-contents-bottom-widget-area .is-style-accordion h2,
  .l-contents-bottom-widget-area .is-style-accordion h3,
  .l-contents-bottom-widget-area .is-style-accordion h4,
  .l-contents-bottom-widget-area .is-style-accordion h5 {
    padding: 10px 10px 10px 35px;
    font-size: 16px;
  }
}
.p-entry-content .is-style-accordion h2::before,
.p-entry-content .is-style-accordion h3::before,
.p-entry-content .is-style-accordion h4::before,
.p-entry-content .is-style-accordion h5::before,
.smb-section__body .is-style-accordion h2::before,
.smb-section__body .is-style-accordion h3::before,
.smb-section__body .is-style-accordion h4::before,
.smb-section__body .is-style-accordion h5::before,
.wp-block-group__inner-container .is-style-accordion h2::before,
.wp-block-group__inner-container .is-style-accordion h3::before,
.wp-block-group__inner-container .is-style-accordion h4::before,
.wp-block-group__inner-container .is-style-accordion h5::before,
.l-contents-bottom-widget-area .is-style-accordion h2::before,
.l-contents-bottom-widget-area .is-style-accordion h3::before,
.l-contents-bottom-widget-area .is-style-accordion h4::before,
.l-contents-bottom-widget-area .is-style-accordion h5::before {
  background: none;
  width: auto;
  height: auto;
  position: absolute;
  content: "\f054";
  display: inline-block;
  top: 50%;
  left: 20px;
  margin-top: -0.45em;
  color: #01b6ad;
  font: normal normal normal 1.2em/1 "Font Awesome 5 Free";
  font-weight: 900;
  transition: 300ms;
}
@media screen and (max-width: 639px) {
  .p-entry-content .is-style-accordion h2::before,
  .p-entry-content .is-style-accordion h3::before,
  .p-entry-content .is-style-accordion h4::before,
  .p-entry-content .is-style-accordion h5::before,
  .smb-section__body .is-style-accordion h2::before,
  .smb-section__body .is-style-accordion h3::before,
  .smb-section__body .is-style-accordion h4::before,
  .smb-section__body .is-style-accordion h5::before,
  .wp-block-group__inner-container .is-style-accordion h2::before,
  .wp-block-group__inner-container .is-style-accordion h3::before,
  .wp-block-group__inner-container .is-style-accordion h4::before,
  .wp-block-group__inner-container .is-style-accordion h5::before,
  .l-contents-bottom-widget-area .is-style-accordion h2::before,
  .l-contents-bottom-widget-area .is-style-accordion h3::before,
  .l-contents-bottom-widget-area .is-style-accordion h4::before,
  .l-contents-bottom-widget-area .is-style-accordion h5::before {
    left: 15px;
    margin-top: -0.4em;
  }
}
.p-entry-content .is-style-accordion h2:hover,
.p-entry-content .is-style-accordion h3:hover,
.p-entry-content .is-style-accordion h4:hover,
.p-entry-content .is-style-accordion h5:hover,
.smb-section__body .is-style-accordion h2:hover,
.smb-section__body .is-style-accordion h3:hover,
.smb-section__body .is-style-accordion h4:hover,
.smb-section__body .is-style-accordion h5:hover,
.wp-block-group__inner-container .is-style-accordion h2:hover,
.wp-block-group__inner-container .is-style-accordion h3:hover,
.wp-block-group__inner-container .is-style-accordion h4:hover,
.wp-block-group__inner-container .is-style-accordion h5:hover,
.l-contents-bottom-widget-area .is-style-accordion h2:hover,
.l-contents-bottom-widget-area .is-style-accordion h3:hover,
.l-contents-bottom-widget-area .is-style-accordion h4:hover,
.l-contents-bottom-widget-area .is-style-accordion h5:hover {
  cursor: pointer;
  background: #f8fffc;
}
.p-entry-content .is-style-accordion h2.active::before,
.p-entry-content .is-style-accordion h3.active::before,
.p-entry-content .is-style-accordion h4.active::before,
.p-entry-content .is-style-accordion h5.active::before,
.smb-section__body .is-style-accordion h2.active::before,
.smb-section__body .is-style-accordion h3.active::before,
.smb-section__body .is-style-accordion h4.active::before,
.smb-section__body .is-style-accordion h5.active::before,
.wp-block-group__inner-container .is-style-accordion h2.active::before,
.wp-block-group__inner-container .is-style-accordion h3.active::before,
.wp-block-group__inner-container .is-style-accordion h4.active::before,
.wp-block-group__inner-container .is-style-accordion h5.active::before,
.l-contents-bottom-widget-area .is-style-accordion h2.active::before,
.l-contents-bottom-widget-area .is-style-accordion h3.active::before,
.l-contents-bottom-widget-area .is-style-accordion h4.active::before,
.l-contents-bottom-widget-area .is-style-accordion h5.active::before {
  transform: rotate(90deg);
}
.p-entry-content .is-style-accordion h2 + .wp-block-group,
.p-entry-content .is-style-accordion h3 + .wp-block-group,
.p-entry-content .is-style-accordion h4 + .wp-block-group,
.p-entry-content .is-style-accordion h5 + .wp-block-group,
.smb-section__body .is-style-accordion h2 + .wp-block-group,
.smb-section__body .is-style-accordion h3 + .wp-block-group,
.smb-section__body .is-style-accordion h4 + .wp-block-group,
.smb-section__body .is-style-accordion h5 + .wp-block-group,
.wp-block-group__inner-container .is-style-accordion h2 + .wp-block-group,
.wp-block-group__inner-container .is-style-accordion h3 + .wp-block-group,
.wp-block-group__inner-container .is-style-accordion h4 + .wp-block-group,
.wp-block-group__inner-container .is-style-accordion h5 + .wp-block-group,
.l-contents-bottom-widget-area .is-style-accordion h2 + .wp-block-group,
.l-contents-bottom-widget-area .is-style-accordion h3 + .wp-block-group,
.l-contents-bottom-widget-area .is-style-accordion h4 + .wp-block-group,
.l-contents-bottom-widget-area .is-style-accordion h5 + .wp-block-group {
  display: none;
  padding: 15px 20px 20px 20px;
}
@media screen and (max-width: 639px) {
  .p-entry-content .is-style-accordion h2 + .wp-block-group,
  .p-entry-content .is-style-accordion h3 + .wp-block-group,
  .p-entry-content .is-style-accordion h4 + .wp-block-group,
  .p-entry-content .is-style-accordion h5 + .wp-block-group,
  .smb-section__body .is-style-accordion h2 + .wp-block-group,
  .smb-section__body .is-style-accordion h3 + .wp-block-group,
  .smb-section__body .is-style-accordion h4 + .wp-block-group,
  .smb-section__body .is-style-accordion h5 + .wp-block-group,
  .wp-block-group__inner-container .is-style-accordion h2 + .wp-block-group,
  .wp-block-group__inner-container .is-style-accordion h3 + .wp-block-group,
  .wp-block-group__inner-container .is-style-accordion h4 + .wp-block-group,
  .wp-block-group__inner-container .is-style-accordion h5 + .wp-block-group,
  .l-contents-bottom-widget-area .is-style-accordion h2 + .wp-block-group,
  .l-contents-bottom-widget-area .is-style-accordion h3 + .wp-block-group,
  .l-contents-bottom-widget-area .is-style-accordion h4 + .wp-block-group,
  .l-contents-bottom-widget-area .is-style-accordion h5 + .wp-block-group {
    padding: 10px 10px 15px 10px;
  }
}
.p-entry-content .is-style-accordion h2 + .wp-block-group > *:first-child,
.p-entry-content .is-style-accordion h3 + .wp-block-group > *:first-child,
.p-entry-content .is-style-accordion h4 + .wp-block-group > *:first-child,
.p-entry-content .is-style-accordion h5 + .wp-block-group > *:first-child,
.smb-section__body .is-style-accordion h2 + .wp-block-group > *:first-child,
.smb-section__body .is-style-accordion h3 + .wp-block-group > *:first-child,
.smb-section__body .is-style-accordion h4 + .wp-block-group > *:first-child,
.smb-section__body .is-style-accordion h5 + .wp-block-group > *:first-child,
.wp-block-group__inner-container .is-style-accordion h2 + .wp-block-group > *:first-child,
.wp-block-group__inner-container .is-style-accordion h3 + .wp-block-group > *:first-child,
.wp-block-group__inner-container .is-style-accordion h4 + .wp-block-group > *:first-child,
.wp-block-group__inner-container .is-style-accordion h5 + .wp-block-group > *:first-child,
.l-contents-bottom-widget-area .is-style-accordion h2 + .wp-block-group > *:first-child,
.l-contents-bottom-widget-area .is-style-accordion h3 + .wp-block-group > *:first-child,
.l-contents-bottom-widget-area .is-style-accordion h4 + .wp-block-group > *:first-child,
.l-contents-bottom-widget-area .is-style-accordion h5 + .wp-block-group > *:first-child {
  margin-top: 0 !important;
}
.p-entry-content .is-style-qainfo,
.smb-section__body .is-style-qainfo,
.wp-block-group__inner-container .is-style-qainfo,
.l-contents-bottom-widget-area .is-style-qainfo {
  padding: 20px;
  background: rgba(236, 247, 243, 0.75);
}
@media screen and (max-width: 1023px) {
  .p-entry-content .is-style-qainfo,
  .smb-section__body .is-style-qainfo,
  .wp-block-group__inner-container .is-style-qainfo,
  .l-contents-bottom-widget-area .is-style-qainfo {
    padding: 15px;
  }
}
.p-entry-content .is-style-qainfo .wp-block-image,
.smb-section__body .is-style-qainfo .wp-block-image,
.wp-block-group__inner-container .is-style-qainfo .wp-block-image,
.l-contents-bottom-widget-area .is-style-qainfo .wp-block-image {
  margin: 0;
  padding: 0;
}
.p-entry-content .is-style-qainfo .wp-block-image a,
.smb-section__body .is-style-qainfo .wp-block-image a,
.wp-block-group__inner-container .is-style-qainfo .wp-block-image a,
.l-contents-bottom-widget-area .is-style-qainfo .wp-block-image a {
  display: block;
  padding: 10px;
  background: #fff;
  border: 2px solid #f9f9f9;
  border-radius: 5px;
  transition: all 0.2s ease-out;
}
.p-entry-content .is-style-qainfo .wp-block-image a:hover,
.smb-section__body .is-style-qainfo .wp-block-image a:hover,
.wp-block-group__inner-container .is-style-qainfo .wp-block-image a:hover,
.l-contents-bottom-widget-area .is-style-qainfo .wp-block-image a:hover {
  filter: brightness(90%);
}
.p-entry-content .is-style-qainfo .wp-block-image a img:hover,
.smb-section__body .is-style-qainfo .wp-block-image a img:hover,
.wp-block-group__inner-container .is-style-qainfo .wp-block-image a img:hover,
.l-contents-bottom-widget-area .is-style-qainfo .wp-block-image a img:hover {
  filter: none;
}
.p-entry-content .is-style-qainfo .wp-block-columns,
.smb-section__body .is-style-qainfo .wp-block-columns,
.wp-block-group__inner-container .is-style-qainfo .wp-block-columns,
.l-contents-bottom-widget-area .is-style-qainfo .wp-block-columns {
  align-items: center !important;
}
.p-entry-content .is-style-qainfo .wp-block-columns .wp-block-column > *:first-child,
.smb-section__body .is-style-qainfo .wp-block-columns .wp-block-column > *:first-child,
.wp-block-group__inner-container .is-style-qainfo .wp-block-columns .wp-block-column > *:first-child,
.l-contents-bottom-widget-area .is-style-qainfo .wp-block-columns .wp-block-column > *:first-child {
  margin-top: 0 !important;
}
@media screen and (max-width: 1023px) {
  .p-entry-content .is-style-qainfo .wp-block-columns .wp-block-column:nth-child(1),
  .smb-section__body .is-style-qainfo .wp-block-columns .wp-block-column:nth-child(1),
  .wp-block-group__inner-container .is-style-qainfo .wp-block-columns .wp-block-column:nth-child(1),
  .l-contents-bottom-widget-area .is-style-qainfo .wp-block-columns .wp-block-column:nth-child(1) {
    flex-basis: 33.33% !important;
  }
  .p-entry-content .is-style-qainfo .wp-block-columns .wp-block-column:nth-child(2),
  .smb-section__body .is-style-qainfo .wp-block-columns .wp-block-column:nth-child(2),
  .wp-block-group__inner-container .is-style-qainfo .wp-block-columns .wp-block-column:nth-child(2),
  .l-contents-bottom-widget-area .is-style-qainfo .wp-block-columns .wp-block-column:nth-child(2) {
    flex-basis: 66.66% !important;
  }
}
@media screen and (max-width: 639px) {
  .p-entry-content .is-style-qainfo .wp-block-columns .wp-block-column:nth-child(1), .p-entry-content .is-style-qainfo .wp-block-columns .wp-block-column:nth-child(2),
  .smb-section__body .is-style-qainfo .wp-block-columns .wp-block-column:nth-child(1),
  .smb-section__body .is-style-qainfo .wp-block-columns .wp-block-column:nth-child(2),
  .wp-block-group__inner-container .is-style-qainfo .wp-block-columns .wp-block-column:nth-child(1),
  .wp-block-group__inner-container .is-style-qainfo .wp-block-columns .wp-block-column:nth-child(2),
  .l-contents-bottom-widget-area .is-style-qainfo .wp-block-columns .wp-block-column:nth-child(1),
  .l-contents-bottom-widget-area .is-style-qainfo .wp-block-columns .wp-block-column:nth-child(2) {
    flex-basis: 50% !important;
  }
}
.p-entry-content h2,
.smb-section__body h2,
.wp-block-group__inner-container h2,
.l-contents-bottom-widget-area h2 {
  clear: both;
  padding: 0;
  background: none;
  border: none;
  position: relative;
  margin-bottom: 20px;
  padding: 10px 10px 10px 45px;
  font-size: 26px;
  line-height: 1.3;
  color: #fff;
  background: #01b6ad;
  border-radius: 5px;
}
@media screen and (max-width: 1023px) {
  .p-entry-content h2,
  .smb-section__body h2,
  .wp-block-group__inner-container h2,
  .l-contents-bottom-widget-area h2 {
    font-size: 20px;
    padding: 10px 10px 10px 30px;
  }
}
.p-entry-content h2::before,
.smb-section__body h2::before,
.wp-block-group__inner-container h2::before,
.l-contents-bottom-widget-area h2::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.6em;
  left: 20px;
  width: 16px;
  height: 26px;
  background: url("../img/front/heding-icon-1.png") 0 0 no-repeat;
  background-size: 16px 26px;
}
@media screen and (max-width: 1023px) {
  .p-entry-content h2::before,
  .smb-section__body h2::before,
  .wp-block-group__inner-container h2::before,
  .l-contents-bottom-widget-area h2::before {
    left: 10px;
    width: 14px;
    background-size: 14px auto;
  }
}
.p-entry-content h3,
.smb-section__body h3,
.wp-block-group__inner-container h3,
.l-contents-bottom-widget-area h3 {
  clear: both;
  padding: 0;
  background: none;
  border: none;
  position: relative;
  padding: 0 10px 10px 30px;
  font-size: 22px;
  line-height: 1.4;
  border-bottom: 3px solid #ecf7f3;
}
@media screen and (max-width: 1023px) {
  .p-entry-content h3,
  .smb-section__body h3,
  .wp-block-group__inner-container h3,
  .l-contents-bottom-widget-area h3 {
    font-size: 18px;
  }
}
.p-entry-content h3::before,
.smb-section__body h3::before,
.wp-block-group__inner-container h3::before,
.l-contents-bottom-widget-area h3::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 20px;
  height: 20px;
  background: url("../img/front/heding-icon-3.png");
  background-size: 20px 20px;
}
@media screen and (max-width: 1023px) {
  .p-entry-content h3::before,
  .smb-section__body h3::before,
  .wp-block-group__inner-container h3::before,
  .l-contents-bottom-widget-area h3::before {
    top: 0.4em;
    font-size: 16px;
  }
}
.p-entry-content .is-style-sme-list-arrow li:before,
.smb-section__body .is-style-sme-list-arrow li:before,
.wp-block-group__inner-container .is-style-sme-list-arrow li:before,
.l-contents-bottom-widget-area .is-style-sme-list-arrow li:before {
  left: calc(-1.5em + 7px);
  top: calc(0.43478rem + 3px);
  width: 9px;
  height: 9px;
  border-width: 0 3px 3px 0;
  border-color: #01b6ad;
}
.p-entry-content .is-style-sme-list-arrow li:after,
.smb-section__body .is-style-sme-list-arrow li:after,
.wp-block-group__inner-container .is-style-sme-list-arrow li:after,
.l-contents-bottom-widget-area .is-style-sme-list-arrow li:after {
  left: calc(-1.5em + 5px);
  top: calc(0.43478rem + 6px);
  width: 8px;
  border-width: 3px 0 0;
  border-color: #01b6ad;
}
.p-entry-content .is-style-sme-list-check li:before,
.smb-section__body .is-style-sme-list-check li:before,
.wp-block-group__inner-container .is-style-sme-list-check li:before,
.l-contents-bottom-widget-area .is-style-sme-list-check li:before {
  left: calc(-1.5em + 5px);
  top: calc(0.43478rem + 1px);
  width: 11px;
  height: 7px;
  border-color: #01b6ad;
  border-width: 0 0 3px 3px;
}
.p-entry-content .is-style-sme-ordered-list-circle li:before,
.p-entry-content .is-style-sme-ordered-list-square li:before,
.smb-section__body .is-style-sme-ordered-list-circle li:before,
.smb-section__body .is-style-sme-ordered-list-square li:before,
.wp-block-group__inner-container .is-style-sme-ordered-list-circle li:before,
.wp-block-group__inner-container .is-style-sme-ordered-list-square li:before,
.l-contents-bottom-widget-area .is-style-sme-ordered-list-circle li:before,
.l-contents-bottom-widget-area .is-style-sme-ordered-list-square li:before {
  line-height: 1;
}
.p-entry-content .is-style-arrow-small,
.smb-section__body .is-style-arrow-small,
.wp-block-group__inner-container .is-style-arrow-small,
.l-contents-bottom-widget-area .is-style-arrow-small {
  list-style: none;
}
.p-entry-content .is-style-arrow-small li,
.smb-section__body .is-style-arrow-small li,
.wp-block-group__inner-container .is-style-arrow-small li,
.l-contents-bottom-widget-area .is-style-arrow-small li {
  position: relative;
}
.p-entry-content .is-style-arrow-small li::before,
.smb-section__body .is-style-arrow-small li::before,
.wp-block-group__inner-container .is-style-arrow-small li::before,
.l-contents-bottom-widget-area .is-style-arrow-small li::before {
  position: absolute;
  content: "\f0da";
  top: 0.3em;
  left: -1em;
  font: normal normal normal 14px/1 "Font Awesome 5 Free";
  font-weight: 900;
}
@media screen and (max-width: 1023px) {
  .p-entry-content .is-style-arrow-small li::before,
  .smb-section__body .is-style-arrow-small li::before,
  .wp-block-group__inner-container .is-style-arrow-small li::before,
  .l-contents-bottom-widget-area .is-style-arrow-small li::before {
    top: 0.4em;
  }
}
.p-entry-content .is-style-arrow-small li .qa_txt,
.smb-section__body .is-style-arrow-small li .qa_txt,
.wp-block-group__inner-container .is-style-arrow-small li .qa_txt,
.l-contents-bottom-widget-area .is-style-arrow-small li .qa_txt {
  display: none;
}
.p-entry-content .is-style-arrow-small.alignright,
.smb-section__body .is-style-arrow-small.alignright,
.wp-block-group__inner-container .is-style-arrow-small.alignright,
.l-contents-bottom-widget-area .is-style-arrow-small.alignright {
  max-width: none;
}
.p-entry-content .is-style-ordered-list-point,
.smb-section__body .is-style-ordered-list-point,
.wp-block-group__inner-container .is-style-ordered-list-point,
.l-contents-bottom-widget-area .is-style-ordered-list-point {
  margin-top: 5px !important;
  padding: 0;
  list-style: none;
  counter-reset: pointnumber;
}
.p-entry-content .is-style-ordered-list-point a,
.smb-section__body .is-style-ordered-list-point a,
.wp-block-group__inner-container .is-style-ordered-list-point a,
.l-contents-bottom-widget-area .is-style-ordered-list-point a {
  color: #fff;
}
.p-entry-content .is-style-ordered-list-point > li,
.smb-section__body .is-style-ordered-list-point > li,
.wp-block-group__inner-container .is-style-ordered-list-point > li,
.l-contents-bottom-widget-area .is-style-ordered-list-point > li {
  position: relative;
  margin: 0;
  padding: 25px 0 25px 60px;
  font-size: 18px;
  line-height: 1.4;
  border-bottom: 1px dotted #fff;
}
@media screen and (max-width: 639px) {
  .p-entry-content .is-style-ordered-list-point > li,
  .smb-section__body .is-style-ordered-list-point > li,
  .wp-block-group__inner-container .is-style-ordered-list-point > li,
  .l-contents-bottom-widget-area .is-style-ordered-list-point > li {
    padding: 10px 0 10px 55px;
    font-size: 16px;
  }
}
.p-entry-content .is-style-ordered-list-point > li > a,
.smb-section__body .is-style-ordered-list-point > li > a,
.wp-block-group__inner-container .is-style-ordered-list-point > li > a,
.l-contents-bottom-widget-area .is-style-ordered-list-point > li > a {
  font-weight: 700;
}
.p-entry-content .is-style-ordered-list-point > li:before,
.smb-section__body .is-style-ordered-list-point > li:before,
.wp-block-group__inner-container .is-style-ordered-list-point > li:before,
.l-contents-bottom-widget-area .is-style-ordered-list-point > li:before {
  position: absolute;
  counter-increment: pointnumber;
  content: counter(pointnumber, decimal-leading-zero);
  display: inline-block;
  left: 0;
  top: 22px;
  width: 50px;
  height: 1em;
  font-family: "Avenir", "Arial Black", "Arial", sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .p-entry-content .is-style-ordered-list-point > li:before,
  .smb-section__body .is-style-ordered-list-point > li:before,
  .wp-block-group__inner-container .is-style-ordered-list-point > li:before,
  .l-contents-bottom-widget-area .is-style-ordered-list-point > li:before {
    font-size: 20px;
  }
}
.p-entry-content .is-style-ordered-list-point > li:after,
.smb-section__body .is-style-ordered-list-point > li:after,
.wp-block-group__inner-container .is-style-ordered-list-point > li:after,
.l-contents-bottom-widget-area .is-style-ordered-list-point > li:after {
  position: absolute;
  content: "POINT";
  left: 0;
  top: 12px;
  padding-bottom: 5px;
  width: 50px;
  line-height: 1;
  font-family: "Avenir", "Arial Black", "Arial", sans-serif;
  font-size: 10px;
  text-align: center;
}
.p-entry-content .is-style-ordered-list-point > li:last-child,
.smb-section__body .is-style-ordered-list-point > li:last-child,
.wp-block-group__inner-container .is-style-ordered-list-point > li:last-child,
.l-contents-bottom-widget-area .is-style-ordered-list-point > li:last-child {
  border: none;
  padding-bottom: 10px;
}
.p-entry-content .is-style-ordered-list-point > li > ul,
.smb-section__body .is-style-ordered-list-point > li > ul,
.wp-block-group__inner-container .is-style-ordered-list-point > li > ul,
.l-contents-bottom-widget-area .is-style-ordered-list-point > li > ul {
  counter-reset: count 0;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 639px) {
  .p-entry-content .is-style-ordered-list-point > li > ul,
  .smb-section__body .is-style-ordered-list-point > li > ul,
  .wp-block-group__inner-container .is-style-ordered-list-point > li > ul,
  .l-contents-bottom-widget-area .is-style-ordered-list-point > li > ul {
    font-size: 14px;
  }
}
.p-entry-content .is-style-ordered-list-point > li > ul li,
.smb-section__body .is-style-ordered-list-point > li > ul li,
.wp-block-group__inner-container .is-style-ordered-list-point > li > ul li,
.l-contents-bottom-widget-area .is-style-ordered-list-point > li > ul li {
  margin-top: 3px;
}
.p-entry-content .is-style-ordered-list-point > li > ul li a,
.smb-section__body .is-style-ordered-list-point > li > ul li a,
.wp-block-group__inner-container .is-style-ordered-list-point > li > ul li a,
.l-contents-bottom-widget-area .is-style-ordered-list-point > li > ul li a {
  text-decoration: none;
}
.p-entry-content .is-style-ordered-list-point > li > ul li a:hover,
.smb-section__body .is-style-ordered-list-point > li > ul li a:hover,
.wp-block-group__inner-container .is-style-ordered-list-point > li > ul li a:hover,
.l-contents-bottom-widget-area .is-style-ordered-list-point > li > ul li a:hover {
  text-decoration: underline;
}
.p-entry-content .is-style-ordered-list-point > li > ul li .qa_txt,
.smb-section__body .is-style-ordered-list-point > li > ul li .qa_txt,
.wp-block-group__inner-container .is-style-ordered-list-point > li > ul li .qa_txt,
.l-contents-bottom-widget-area .is-style-ordered-list-point > li > ul li .qa_txt {
  display: none;
}
.p-entry-content .is-style-progress,
.smb-section__body .is-style-progress,
.wp-block-group__inner-container .is-style-progress,
.l-contents-bottom-widget-area .is-style-progress {
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  counter-reset: pointnumber;
  margin-bottom: 30px;
  background: #ecf7f3;
}
.p-entry-content .is-style-progress li,
.smb-section__body .is-style-progress li,
.wp-block-group__inner-container .is-style-progress li,
.l-contents-bottom-widget-area .is-style-progress li {
  margin: 0;
  padding: 0;
  position: relative;
  flex: 1;
  padding: 15px 5px 15px 25px;
  line-height: 1.3;
}
@media screen and (max-width: 1023px) {
  .p-entry-content .is-style-progress li,
  .smb-section__body .is-style-progress li,
  .wp-block-group__inner-container .is-style-progress li,
  .l-contents-bottom-widget-area .is-style-progress li {
    padding: 10px 5px 10px 20px;
  }
}
.p-entry-content .is-style-progress li::before,
.smb-section__body .is-style-progress li::before,
.wp-block-group__inner-container .is-style-progress li::before,
.l-contents-bottom-widget-area .is-style-progress li::before {
  content: "";
  position: absolute;
  height: 100%;
  border-left: 20px solid #fff;
  border-bottom: 150px solid transparent;
  border-top: 150px solid transparent;
  right: -12px;
  top: calc(50% - 150px);
  z-index: 2;
}
.p-entry-content .is-style-progress li:after,
.smb-section__body .is-style-progress li:after,
.wp-block-group__inner-container .is-style-progress li:after,
.l-contents-bottom-widget-area .is-style-progress li:after {
  content: "";
  position: absolute;
  height: 100%;
  border-left: 20px solid #ecf7f3;
  border-bottom: 150px solid transparent;
  border-top: 150px solid transparent;
  right: -10px;
  top: calc(50% - 150px);
  z-index: 2;
}
.p-entry-content .is-style-progress li:first-child,
.smb-section__body .is-style-progress li:first-child,
.wp-block-group__inner-container .is-style-progress li:first-child,
.l-contents-bottom-widget-area .is-style-progress li:first-child {
  padding-left: 15px;
}
@media screen and (max-width: 1023px) {
  .p-entry-content .is-style-progress li:first-child,
  .smb-section__body .is-style-progress li:first-child,
  .wp-block-group__inner-container .is-style-progress li:first-child,
  .l-contents-bottom-widget-area .is-style-progress li:first-child {
    padding-left: 10px;
  }
}
.p-entry-content .is-style-progress li:first-child::after,
.smb-section__body .is-style-progress li:first-child::after,
.wp-block-group__inner-container .is-style-progress li:first-child::after,
.l-contents-bottom-widget-area .is-style-progress li:first-child::after {
  border-right-color: #01b6ad;
}
.p-entry-content .is-style-progress li a,
.smb-section__body .is-style-progress li a,
.wp-block-group__inner-container .is-style-progress li a,
.l-contents-bottom-widget-area .is-style-progress li a {
  color: #01b6ad;
  text-decoration: none;
}
.p-entry-content .is-style-progress li a:before,
.smb-section__body .is-style-progress li a:before,
.wp-block-group__inner-container .is-style-progress li a:before,
.l-contents-bottom-widget-area .is-style-progress li a:before {
  counter-increment: pointnumber;
  content: "STEP " counter(pointnumber, decimal-leading-zero);
  display: block;
  margin-bottom: 10px;
  color: #01b6ad;
  font-family: "Avenir", "Arial Black", "Arial", sans-serif;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .p-entry-content .is-style-progress li a:before,
  .smb-section__body .is-style-progress li a:before,
  .wp-block-group__inner-container .is-style-progress li a:before,
  .l-contents-bottom-widget-area .is-style-progress li a:before {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
.p-entry-content .is-style-progress li a:hover,
.smb-section__body .is-style-progress li a:hover,
.wp-block-group__inner-container .is-style-progress li a:hover,
.l-contents-bottom-widget-area .is-style-progress li a:hover {
  text-decoration: underline;
}
.p-entry-content .is-style-progress li.active,
.smb-section__body .is-style-progress li.active,
.wp-block-group__inner-container .is-style-progress li.active,
.l-contents-bottom-widget-area .is-style-progress li.active {
  color: #fff;
  background: #01b6ad;
}
.p-entry-content .is-style-progress li.active:after,
.smb-section__body .is-style-progress li.active:after,
.wp-block-group__inner-container .is-style-progress li.active:after,
.l-contents-bottom-widget-area .is-style-progress li.active:after {
  border-left-color: #01b6ad;
}
.p-entry-content .is-style-progress li.active:before,
.smb-section__body .is-style-progress li.active:before,
.wp-block-group__inner-container .is-style-progress li.active:before,
.l-contents-bottom-widget-area .is-style-progress li.active:before {
  color: #fff;
}
.p-entry-content .is-style-progress li.active a,
.smb-section__body .is-style-progress li.active a,
.wp-block-group__inner-container .is-style-progress li.active a,
.l-contents-bottom-widget-area .is-style-progress li.active a {
  color: #fff;
}
.p-entry-content .is-style-progress li.active a:before,
.smb-section__body .is-style-progress li.active a:before,
.wp-block-group__inner-container .is-style-progress li.active a:before,
.l-contents-bottom-widget-area .is-style-progress li.active a:before {
  color: #fff;
}
.p-entry-content .wp-block-snow-monkey-blocks-balloon,
.smb-section__body .wp-block-snow-monkey-blocks-balloon,
.wp-block-group__inner-container .wp-block-snow-monkey-blocks-balloon,
.l-contents-bottom-widget-area .wp-block-snow-monkey-blocks-balloon {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
}
@media screen and (max-width: 639px) {
  .p-entry-content .wp-block-snow-monkey-blocks-balloon,
  .smb-section__body .wp-block-snow-monkey-blocks-balloon,
  .wp-block-group__inner-container .wp-block-snow-monkey-blocks-balloon,
  .l-contents-bottom-widget-area .wp-block-snow-monkey-blocks-balloon {
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  .p-entry-content .wp-block-snow-monkey-blocks-balloon.smb-balloon,
  .smb-section__body .wp-block-snow-monkey-blocks-balloon.smb-balloon,
  .wp-block-group__inner-container .wp-block-snow-monkey-blocks-balloon.smb-balloon,
  .l-contents-bottom-widget-area .wp-block-snow-monkey-blocks-balloon.smb-balloon {
    flex-direction: row;
  }
  .p-entry-content .wp-block-snow-monkey-blocks-balloon.smb-balloon .smb-balloon__person,
  .smb-section__body .wp-block-snow-monkey-blocks-balloon.smb-balloon .smb-balloon__person,
  .wp-block-group__inner-container .wp-block-snow-monkey-blocks-balloon.smb-balloon .smb-balloon__person,
  .l-contents-bottom-widget-area .wp-block-snow-monkey-blocks-balloon.smb-balloon .smb-balloon__person {
    margin: 0 15px 0 0;
  }
  .p-entry-content .wp-block-snow-monkey-blocks-balloon.smb-balloon--reverse,
  .smb-section__body .wp-block-snow-monkey-blocks-balloon.smb-balloon--reverse,
  .wp-block-group__inner-container .wp-block-snow-monkey-blocks-balloon.smb-balloon--reverse,
  .l-contents-bottom-widget-area .wp-block-snow-monkey-blocks-balloon.smb-balloon--reverse {
    flex-direction: row-reverse;
  }
  .p-entry-content .wp-block-snow-monkey-blocks-balloon.smb-balloon--reverse .smb-balloon__person,
  .smb-section__body .wp-block-snow-monkey-blocks-balloon.smb-balloon--reverse .smb-balloon__person,
  .wp-block-group__inner-container .wp-block-snow-monkey-blocks-balloon.smb-balloon--reverse .smb-balloon__person,
  .l-contents-bottom-widget-area .wp-block-snow-monkey-blocks-balloon.smb-balloon--reverse .smb-balloon__person {
    margin: 0 0 0 15px;
  }
}
.p-entry-content .wp-block-snow-monkey-blocks-balloon .smb-balloon__person,
.smb-section__body .wp-block-snow-monkey-blocks-balloon .smb-balloon__person,
.wp-block-group__inner-container .wp-block-snow-monkey-blocks-balloon .smb-balloon__person,
.l-contents-bottom-widget-area .wp-block-snow-monkey-blocks-balloon .smb-balloon__person {
  display: block;
  width: 100px;
}
@media screen and (max-width: 639px) {
  .p-entry-content .wp-block-snow-monkey-blocks-balloon .smb-balloon__person,
  .smb-section__body .wp-block-snow-monkey-blocks-balloon .smb-balloon__person,
  .wp-block-group__inner-container .wp-block-snow-monkey-blocks-balloon .smb-balloon__person,
  .l-contents-bottom-widget-area .wp-block-snow-monkey-blocks-balloon .smb-balloon__person {
    width: 70px;
  }
}
.p-entry-content .wp-block-snow-monkey-blocks-balloon .smb-balloon__figure,
.smb-section__body .wp-block-snow-monkey-blocks-balloon .smb-balloon__figure,
.wp-block-group__inner-container .wp-block-snow-monkey-blocks-balloon .smb-balloon__figure,
.l-contents-bottom-widget-area .wp-block-snow-monkey-blocks-balloon .smb-balloon__figure {
  height: 100px;
  width: 100px;
  max-width: none;
  border: none;
}
@media screen and (max-width: 639px) {
  .p-entry-content .wp-block-snow-monkey-blocks-balloon .smb-balloon__figure,
  .smb-section__body .wp-block-snow-monkey-blocks-balloon .smb-balloon__figure,
  .wp-block-group__inner-container .wp-block-snow-monkey-blocks-balloon .smb-balloon__figure,
  .l-contents-bottom-widget-area .wp-block-snow-monkey-blocks-balloon .smb-balloon__figure {
    height: 70px;
    width: 70px;
  }
}
.p-entry-content .wp-block-snow-monkey-blocks-balloon .smb-balloon__name,
.smb-section__body .wp-block-snow-monkey-blocks-balloon .smb-balloon__name,
.wp-block-group__inner-container .wp-block-snow-monkey-blocks-balloon .smb-balloon__name,
.l-contents-bottom-widget-area .wp-block-snow-monkey-blocks-balloon .smb-balloon__name {
  text-align: center;
  white-space: normal;
  margin: 5px 0 0 0;
}
@media screen and (max-width: 639px) {
  .p-entry-content .wp-block-snow-monkey-blocks-balloon .smb-balloon__name,
  .smb-section__body .wp-block-snow-monkey-blocks-balloon .smb-balloon__name,
  .wp-block-group__inner-container .wp-block-snow-monkey-blocks-balloon .smb-balloon__name,
  .l-contents-bottom-widget-area .wp-block-snow-monkey-blocks-balloon .smb-balloon__name {
    margin: 5px 0 0 0;
  }
}
@media screen and (max-width: 639px) {
  .p-entry-content .wp-block-snow-monkey-blocks-balloon .smb-balloon__body,
  .smb-section__body .wp-block-snow-monkey-blocks-balloon .smb-balloon__body,
  .wp-block-group__inner-container .wp-block-snow-monkey-blocks-balloon .smb-balloon__body,
  .l-contents-bottom-widget-area .wp-block-snow-monkey-blocks-balloon .smb-balloon__body {
    width: 100%;
  }
}
.p-entry-content .wp-block-snow-monkey-blocks-balloon .smb-balloon__body::after,
.smb-section__body .wp-block-snow-monkey-blocks-balloon .smb-balloon__body::after,
.wp-block-group__inner-container .wp-block-snow-monkey-blocks-balloon .smb-balloon__body::after,
.l-contents-bottom-widget-area .wp-block-snow-monkey-blocks-balloon .smb-balloon__body::after {
  top: 50px;
}
@media screen and (max-width: 1023px) {
  .p-entry-content .wp-block-snow-monkey-blocks-balloon .smb-balloon__body::after,
  .smb-section__body .wp-block-snow-monkey-blocks-balloon .smb-balloon__body::after,
  .wp-block-group__inner-container .wp-block-snow-monkey-blocks-balloon .smb-balloon__body::after,
  .l-contents-bottom-widget-area .wp-block-snow-monkey-blocks-balloon .smb-balloon__body::after {
    top: 40px;
  }
}
@media screen and (max-width: 639px) {
  .p-entry-content .wp-block-snow-monkey-blocks-balloon .smb-balloon__body::after,
  .smb-section__body .wp-block-snow-monkey-blocks-balloon .smb-balloon__body::after,
  .wp-block-group__inner-container .wp-block-snow-monkey-blocks-balloon .smb-balloon__body::after,
  .l-contents-bottom-widget-area .wp-block-snow-monkey-blocks-balloon .smb-balloon__body::after {
    position: absolute;
    top: 25px;
    left: -10px;
    height: 0;
    width: 0;
    border-color: transparent #f7f7f7 transparent transparent;
    border-style: solid;
    border-width: 5px 10px 5px 0;
  }
}
.p-entry-content .wp-block-snow-monkey-blocks-faq .smb-faq__item__question__label,
.smb-section__body .wp-block-snow-monkey-blocks-faq .smb-faq__item__question__label,
.wp-block-group__inner-container .wp-block-snow-monkey-blocks-faq .smb-faq__item__question__label,
.l-contents-bottom-widget-area .wp-block-snow-monkey-blocks-faq .smb-faq__item__question__label {
  margin-right: 20px;
  font-weight: 700;
}
.p-entry-content .wp-block-snow-monkey-blocks-faq .smb-faq__item__question__body,
.smb-section__body .wp-block-snow-monkey-blocks-faq .smb-faq__item__question__body,
.wp-block-group__inner-container .wp-block-snow-monkey-blocks-faq .smb-faq__item__question__body,
.l-contents-bottom-widget-area .wp-block-snow-monkey-blocks-faq .smb-faq__item__question__body {
  font-size: 1.2em;
}
.p-entry-content .wp-block-snow-monkey-blocks-faq .smb-faq__item__answer__label,
.smb-section__body .wp-block-snow-monkey-blocks-faq .smb-faq__item__answer__label,
.wp-block-group__inner-container .wp-block-snow-monkey-blocks-faq .smb-faq__item__answer__label,
.l-contents-bottom-widget-area .wp-block-snow-monkey-blocks-faq .smb-faq__item__answer__label {
  margin-right: 20px;
  font-weight: 700;
}
.p-entry-content blockquote,
.smb-section__body blockquote,
.wp-block-group__inner-container blockquote,
.l-contents-bottom-widget-area blockquote {
  margin-top: 20px;
}
.p-entry-content .wp-block-separator,
.smb-section__body .wp-block-separator,
.wp-block-group__inner-container .wp-block-separator,
.l-contents-bottom-widget-area .wp-block-separator {
  margin: 30px 0;
}
@media screen and (max-width: 639px) {
  .p-entry-content .wp-block-separator,
  .smb-section__body .wp-block-separator,
  .wp-block-group__inner-container .wp-block-separator,
  .l-contents-bottom-widget-area .wp-block-separator {
    margin: 20px 0;
  }
}
.p-entry-content .my-block-note,
.smb-section__body .my-block-note,
.wp-block-group__inner-container .my-block-note,
.l-contents-bottom-widget-area .my-block-note {
  margin-top: 15px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 5px;
}
@media screen and (max-width: 639px) {
  .p-entry-content .my-block-note,
  .smb-section__body .my-block-note,
  .wp-block-group__inner-container .my-block-note,
  .l-contents-bottom-widget-area .my-block-note {
    padding: 10px;
  }
}
.p-entry-content .my-block-note > p,
.p-entry-content .my-block-note > ul,
.p-entry-content .my-block-note > ol,
.p-entry-content .my-block-note > dl,
.p-entry-content .my-block-note > div,
.smb-section__body .my-block-note > p,
.smb-section__body .my-block-note > ul,
.smb-section__body .my-block-note > ol,
.smb-section__body .my-block-note > dl,
.smb-section__body .my-block-note > div,
.wp-block-group__inner-container .my-block-note > p,
.wp-block-group__inner-container .my-block-note > ul,
.wp-block-group__inner-container .my-block-note > ol,
.wp-block-group__inner-container .my-block-note > dl,
.wp-block-group__inner-container .my-block-note > div,
.l-contents-bottom-widget-area .my-block-note > p,
.l-contents-bottom-widget-area .my-block-note > ul,
.l-contents-bottom-widget-area .my-block-note > ol,
.l-contents-bottom-widget-area .my-block-note > dl,
.l-contents-bottom-widget-area .my-block-note > div {
  font-size: 14px;
}
.p-entry-content .my-block-note .fs-s,
.p-entry-content .my-block-note .small,
.p-entry-content .my-block-note small,
.p-entry-content .my-block-note .cap,
.smb-section__body .my-block-note .fs-s,
.smb-section__body .my-block-note .small,
.smb-section__body .my-block-note small,
.smb-section__body .my-block-note .cap,
.wp-block-group__inner-container .my-block-note .fs-s,
.wp-block-group__inner-container .my-block-note .small,
.wp-block-group__inner-container .my-block-note small,
.wp-block-group__inner-container .my-block-note .cap,
.l-contents-bottom-widget-area .my-block-note .fs-s,
.l-contents-bottom-widget-area .my-block-note .small,
.l-contents-bottom-widget-area .my-block-note small,
.l-contents-bottom-widget-area .my-block-note .cap {
  font-size: 12px;
}
.p-entry-content .my-block-note > *:first-child,
.smb-section__body .my-block-note > *:first-child,
.wp-block-group__inner-container .my-block-note > *:first-child,
.l-contents-bottom-widget-area .my-block-note > *:first-child {
  margin-top: 0;
}
.p-entry-content .smb-box,
.smb-section__body .smb-box,
.wp-block-group__inner-container .smb-box,
.l-contents-bottom-widget-area .smb-box {
  margin-top: 20px;
  padding: 20px;
}
@media screen and (max-width: 639px) {
  .p-entry-content .smb-box,
  .smb-section__body .smb-box,
  .wp-block-group__inner-container .smb-box,
  .l-contents-bottom-widget-area .smb-box {
    padding: 15px;
  }
}
.p-entry-content .smb-box__body > *:first-child,
.smb-section__body .smb-box__body > *:first-child,
.wp-block-group__inner-container .smb-box__body > *:first-child,
.l-contents-bottom-widget-area .smb-box__body > *:first-child {
  margin-top: 0 !important;
}
.p-entry-content .js-acc:hover,
.smb-section__body .js-acc:hover,
.wp-block-group__inner-container .js-acc:hover,
.l-contents-bottom-widget-area .js-acc:hover {
  cursor: pointer;
}
.p-entry-content .js-acc-body,
.smb-section__body .js-acc-body,
.wp-block-group__inner-container .js-acc-body,
.l-contents-bottom-widget-area .js-acc-body {
  display: none;
}
.p-entry-content .js-acc-body > *:first-child,
.smb-section__body .js-acc-body > *:first-child,
.wp-block-group__inner-container .js-acc-body > *:first-child,
.l-contents-bottom-widget-area .js-acc-body > *:first-child {
  margin-top: 0 !important;
}
.p-entry-content #ez-toc-container,
.smb-section__body #ez-toc-container,
.wp-block-group__inner-container #ez-toc-container,
.l-contents-bottom-widget-area #ez-toc-container {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  border: 2px solid #e6e7e6;
  border-radius: 5px;
}
@media screen and (max-width: 639px) {
  .p-entry-content #ez-toc-container,
  .smb-section__body #ez-toc-container,
  .wp-block-group__inner-container #ez-toc-container,
  .l-contents-bottom-widget-area #ez-toc-container {
    margin: 40px auto;
    padding: 15px;
  }
}
.p-entry-content #ez-toc-container .ez-toc-title,
.smb-section__body #ez-toc-container .ez-toc-title,
.wp-block-group__inner-container #ez-toc-container .ez-toc-title,
.l-contents-bottom-widget-area #ez-toc-container .ez-toc-title {
  margin: 0;
  font-weight: 700;
}
.p-entry-content #ez-toc-container .ez-toc-list,
.smb-section__body #ez-toc-container .ez-toc-list,
.wp-block-group__inner-container #ez-toc-container .ez-toc-list,
.l-contents-bottom-widget-area #ez-toc-container .ez-toc-list {
  margin-top: 0.9rem;
  margin-top: calc(var(--_space, 1.8rem) * 0.5 * var(--_margin-scale, 1));
  list-style: none;
}
.p-entry-content #ez-toc-container .ez-toc-list li,
.smb-section__body #ez-toc-container .ez-toc-list li,
.wp-block-group__inner-container #ez-toc-container .ez-toc-list li,
.l-contents-bottom-widget-area #ez-toc-container .ez-toc-list li {
  position: relative;
}
.p-entry-content #ez-toc-container .ez-toc-list li::before,
.smb-section__body #ez-toc-container .ez-toc-list li::before,
.wp-block-group__inner-container #ez-toc-container .ez-toc-list li::before,
.l-contents-bottom-widget-area #ez-toc-container .ez-toc-list li::before {
  position: absolute;
  content: "\f0da";
  top: 0.5em;
  left: -1em;
  font: normal normal normal 14px/1 "Font Awesome 5 Free";
  font-weight: 900;
}
.p-entry-content .wp-block-table table thead th,
.smb-section__body .wp-block-table table thead th,
.wp-block-group__inner-container .wp-block-table table thead th,
.l-contents-bottom-widget-area .wp-block-table table thead th {
  color: #333333;
  border-color: #ecedec;
  background: rgba(236, 237, 236, 0.3);
}
.p-entry-content .wp-block-table table tbody th,
.p-entry-content .wp-block-table table tbody td,
.smb-section__body .wp-block-table table tbody th,
.smb-section__body .wp-block-table table tbody td,
.wp-block-group__inner-container .wp-block-table table tbody th,
.wp-block-group__inner-container .wp-block-table table tbody td,
.l-contents-bottom-widget-area .wp-block-table table tbody th,
.l-contents-bottom-widget-area .wp-block-table table tbody td {
  border-color: #ecedec;
}
.p-entry-content .wp-block-table table tbody th,
.smb-section__body .wp-block-table table tbody th,
.wp-block-group__inner-container .wp-block-table table tbody th,
.l-contents-bottom-widget-area .wp-block-table table tbody th {
  background: rgba(236, 237, 236, 0.3);
  white-space: nowrap;
}
@media screen and (max-width: 639px) {
  .p-entry-content .wp-block-table.is-style-table-mobile table,
  .smb-section__body .wp-block-table.is-style-table-mobile table,
  .wp-block-group__inner-container .wp-block-table.is-style-table-mobile table,
  .l-contents-bottom-widget-area .wp-block-table.is-style-table-mobile table {
    display: table;
    width: 100%;
    border-bottom: 1px solid #dee0de !important;
  }
  .p-entry-content .wp-block-table.is-style-table-mobile table thead th,
  .p-entry-content .wp-block-table.is-style-table-mobile table thead td,
  .p-entry-content .wp-block-table.is-style-table-mobile table tbody th,
  .p-entry-content .wp-block-table.is-style-table-mobile table tbody td,
  .p-entry-content .wp-block-table.is-style-table-mobile table tfoot th,
  .p-entry-content .wp-block-table.is-style-table-mobile table tfoot td,
  .smb-section__body .wp-block-table.is-style-table-mobile table thead th,
  .smb-section__body .wp-block-table.is-style-table-mobile table thead td,
  .smb-section__body .wp-block-table.is-style-table-mobile table tbody th,
  .smb-section__body .wp-block-table.is-style-table-mobile table tbody td,
  .smb-section__body .wp-block-table.is-style-table-mobile table tfoot th,
  .smb-section__body .wp-block-table.is-style-table-mobile table tfoot td,
  .wp-block-group__inner-container .wp-block-table.is-style-table-mobile table thead th,
  .wp-block-group__inner-container .wp-block-table.is-style-table-mobile table thead td,
  .wp-block-group__inner-container .wp-block-table.is-style-table-mobile table tbody th,
  .wp-block-group__inner-container .wp-block-table.is-style-table-mobile table tbody td,
  .wp-block-group__inner-container .wp-block-table.is-style-table-mobile table tfoot th,
  .wp-block-group__inner-container .wp-block-table.is-style-table-mobile table tfoot td,
  .l-contents-bottom-widget-area .wp-block-table.is-style-table-mobile table thead th,
  .l-contents-bottom-widget-area .wp-block-table.is-style-table-mobile table thead td,
  .l-contents-bottom-widget-area .wp-block-table.is-style-table-mobile table tbody th,
  .l-contents-bottom-widget-area .wp-block-table.is-style-table-mobile table tbody td,
  .l-contents-bottom-widget-area .wp-block-table.is-style-table-mobile table tfoot th,
  .l-contents-bottom-widget-area .wp-block-table.is-style-table-mobile table tfoot td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
}
@media screen and (max-width: 639px) {
  .p-entry-content .wp-block-table.is-style-table-mobile-scroll,
  .smb-section__body .wp-block-table.is-style-table-mobile-scroll,
  .wp-block-group__inner-container .wp-block-table.is-style-table-mobile-scroll,
  .l-contents-bottom-widget-area .wp-block-table.is-style-table-mobile-scroll {
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
  }
  .p-entry-content .wp-block-table.is-style-table-mobile-scroll table,
  .smb-section__body .wp-block-table.is-style-table-mobile-scroll table,
  .wp-block-group__inner-container .wp-block-table.is-style-table-mobile-scroll table,
  .l-contents-bottom-widget-area .wp-block-table.is-style-table-mobile-scroll table {
    width: 100%;
  }
}
.p-entry-content table thead,
.p-entry-content table tbody,
.p-entry-content table tfoot,
.smb-section__body table thead,
.smb-section__body table tbody,
.smb-section__body table tfoot,
.wp-block-group__inner-container table thead,
.wp-block-group__inner-container table tbody,
.wp-block-group__inner-container table tfoot,
.l-contents-bottom-widget-area table thead,
.l-contents-bottom-widget-area table tbody,
.l-contents-bottom-widget-area table tfoot {
  width: 100%;
}
.p-entry-content table thead th,
.p-entry-content table tbody th,
.p-entry-content table tfoot th,
.smb-section__body table thead th,
.smb-section__body table tbody th,
.smb-section__body table tfoot th,
.wp-block-group__inner-container table thead th,
.wp-block-group__inner-container table tbody th,
.wp-block-group__inner-container table tfoot th,
.l-contents-bottom-widget-area table thead th,
.l-contents-bottom-widget-area table tbody th,
.l-contents-bottom-widget-area table tfoot th {
  background: #f8fffc;
}
.p-entry-content .my-block-top-menu h2,
.smb-section__body .my-block-top-menu h2,
.wp-block-group__inner-container .my-block-top-menu h2,
.l-contents-bottom-widget-area .my-block-top-menu h2 {
  padding: 0;
  border: none;
  color: #fff;
  background: #01b6ad;
  border-radius: 5px;
}
@media screen and (max-width: 639px) {
  .p-entry-content .my-block-top-menu h2,
  .smb-section__body .my-block-top-menu h2,
  .wp-block-group__inner-container .my-block-top-menu h2,
  .l-contents-bottom-widget-area .my-block-top-menu h2 {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 1023px) {
  .p-entry-content .my-block-top-menu .c-row__col,
  .smb-section__body .my-block-top-menu .c-row__col,
  .wp-block-group__inner-container .my-block-top-menu .c-row__col,
  .l-contents-bottom-widget-area .my-block-top-menu .c-row__col {
    flex: 0 1 33.33%;
    max-width: 33.33%;
  }
}
@media screen and (max-width: 639px) {
  .p-entry-content .my-block-top-menu .c-row__col,
  .smb-section__body .my-block-top-menu .c-row__col,
  .wp-block-group__inner-container .my-block-top-menu .c-row__col,
  .l-contents-bottom-widget-area .my-block-top-menu .c-row__col {
    flex: 0 1 50%;
    max-width: 50%;
  }
}
.p-entry-content .my-block-top-menu .c-row__col a,
.smb-section__body .my-block-top-menu .c-row__col a,
.wp-block-group__inner-container .my-block-top-menu .c-row__col a,
.l-contents-bottom-widget-area .my-block-top-menu .c-row__col a {
  display: block;
}
.p-entry-content .my-block-top-menu .smb-items__banner,
.smb-section__body .my-block-top-menu .smb-items__banner,
.wp-block-group__inner-container .my-block-top-menu .smb-items__banner,
.l-contents-bottom-widget-area .my-block-top-menu .smb-items__banner {
  padding: 10px;
  border: 2px solid #f9f9f9;
  border-radius: 5px;
}
@media screen and (max-width: 1023px) {
  .p-entry-content .my-block-top-menu .smb-items__banner,
  .smb-section__body .my-block-top-menu .smb-items__banner,
  .wp-block-group__inner-container .my-block-top-menu .smb-items__banner,
  .l-contents-bottom-widget-area .my-block-top-menu .smb-items__banner {
    padding: 5px;
  }
}
@media screen and (min-width: 1280px) {
  .p-entry-content .my-block-top-menu .smb-items__banner,
  .smb-section__body .my-block-top-menu .smb-items__banner,
  .wp-block-group__inner-container .my-block-top-menu .smb-items__banner,
  .l-contents-bottom-widget-area .my-block-top-menu .smb-items__banner {
    transition: all 0.2s ease-out;
  }
  .p-entry-content .my-block-top-menu .smb-items__banner:active, .p-entry-content .my-block-top-menu .smb-items__banner:focus, .p-entry-content .my-block-top-menu .smb-items__banner:hover,
  .smb-section__body .my-block-top-menu .smb-items__banner:active,
  .smb-section__body .my-block-top-menu .smb-items__banner:focus,
  .smb-section__body .my-block-top-menu .smb-items__banner:hover,
  .wp-block-group__inner-container .my-block-top-menu .smb-items__banner:active,
  .wp-block-group__inner-container .my-block-top-menu .smb-items__banner:focus,
  .wp-block-group__inner-container .my-block-top-menu .smb-items__banner:hover,
  .l-contents-bottom-widget-area .my-block-top-menu .smb-items__banner:active,
  .l-contents-bottom-widget-area .my-block-top-menu .smb-items__banner:focus,
  .l-contents-bottom-widget-area .my-block-top-menu .smb-items__banner:hover {
    filter: brightness(90%);
  }
}
.p-entry-content .my-block-top-menu .smb-items__banner:active .smb-items__banner__figure, .p-entry-content .my-block-top-menu .smb-items__banner:focus .smb-items__banner__figure, .p-entry-content .my-block-top-menu .smb-items__banner:hover .smb-items__banner__figure,
.smb-section__body .my-block-top-menu .smb-items__banner:active .smb-items__banner__figure,
.smb-section__body .my-block-top-menu .smb-items__banner:focus .smb-items__banner__figure,
.smb-section__body .my-block-top-menu .smb-items__banner:hover .smb-items__banner__figure,
.wp-block-group__inner-container .my-block-top-menu .smb-items__banner:active .smb-items__banner__figure,
.wp-block-group__inner-container .my-block-top-menu .smb-items__banner:focus .smb-items__banner__figure,
.wp-block-group__inner-container .my-block-top-menu .smb-items__banner:hover .smb-items__banner__figure,
.l-contents-bottom-widget-area .my-block-top-menu .smb-items__banner:active .smb-items__banner__figure,
.l-contents-bottom-widget-area .my-block-top-menu .smb-items__banner:focus .smb-items__banner__figure,
.l-contents-bottom-widget-area .my-block-top-menu .smb-items__banner:hover .smb-items__banner__figure {
  filter: none;
}
.p-entry-content .calc__wrapper,
.smb-section__body .calc__wrapper,
.wp-block-group__inner-container .calc__wrapper,
.l-contents-bottom-widget-area .calc__wrapper {
  display: flex;
  justify-content: center;
}
.p-entry-content .calc__select,
.smb-section__body .calc__select,
.wp-block-group__inner-container .calc__select,
.l-contents-bottom-widget-area .calc__select {
  width: 170px;
}
.p-entry-content .calc__select select,
.smb-section__body .calc__select select,
.wp-block-group__inner-container .calc__select select,
.l-contents-bottom-widget-area .calc__select select {
  width: calc(100% - 2em - 5px);
  text-align: right;
  height: 50px;
  padding: 0 8px;
  font-size: 16px !important;
  vertical-align: middle;
  border: 1px solid #dee0de;
  border-radius: 3px;
}
.p-entry-content .calc__input,
.smb-section__body .calc__input,
.wp-block-group__inner-container .calc__input,
.l-contents-bottom-widget-area .calc__input {
  width: 170px;
}
.p-entry-content .calc__input input,
.smb-section__body .calc__input input,
.wp-block-group__inner-container .calc__input input,
.l-contents-bottom-widget-area .calc__input input {
  width: calc(100% - 2em - 5px);
  padding: 0 10px;
  text-align: right;
  height: 50px;
  padding: 0 8px;
  font-size: 16px !important;
  vertical-align: middle;
  border: 1px solid #dee0de;
  border-radius: 3px;
}
.p-entry-content .calc__select p,
.p-entry-content .calc__select span, .p-entry-content .calc__input p,
.p-entry-content .calc__input span,
.smb-section__body .calc__select p,
.smb-section__body .calc__select span,
.smb-section__body .calc__input p,
.smb-section__body .calc__input span,
.wp-block-group__inner-container .calc__select p,
.wp-block-group__inner-container .calc__select span,
.wp-block-group__inner-container .calc__input p,
.wp-block-group__inner-container .calc__input span,
.l-contents-bottom-widget-area .calc__select p,
.l-contents-bottom-widget-area .calc__select span,
.l-contents-bottom-widget-area .calc__input p,
.l-contents-bottom-widget-area .calc__input span {
  font-size: 14px;
  font-weight: 700;
  color: #01b6ad;
}
.p-entry-content .calc__select p, .p-entry-content .calc__input p,
.smb-section__body .calc__select p,
.smb-section__body .calc__input p,
.wp-block-group__inner-container .calc__select p,
.wp-block-group__inner-container .calc__input p,
.l-contents-bottom-widget-area .calc__select p,
.l-contents-bottom-widget-area .calc__input p {
  margin: 0 0 5px;
}
.p-entry-content .calc__select span, .p-entry-content .calc__input span,
.smb-section__body .calc__select span,
.smb-section__body .calc__input span,
.wp-block-group__inner-container .calc__select span,
.wp-block-group__inner-container .calc__input span,
.l-contents-bottom-widget-area .calc__select span,
.l-contents-bottom-widget-area .calc__input span {
  display: inline-block;
  margin-left: 10px;
}
.p-entry-content .calc__submit,
.smb-section__body .calc__submit,
.wp-block-group__inner-container .calc__submit,
.l-contents-bottom-widget-area .calc__submit {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #01b6ad;
}
.p-entry-content .calc-total,
.smb-section__body .calc-total,
.wp-block-group__inner-container .calc-total,
.l-contents-bottom-widget-area .calc-total {
  position: relative;
  margin-bottom: 60px;
  font-weight: 700;
  text-align: center;
  background: #f8fffc;
}
.p-entry-content .calc-total:after,
.smb-section__body .calc-total:after,
.wp-block-group__inner-container .calc-total:after,
.l-contents-bottom-widget-area .calc-total:after {
  content: "";
  position: absolute;
  display: block;
  bottom: -40px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -22.5px;
  border-style: solid;
  border-width: 25px 22.5px 0 22.5px;
  border-color: #01b6ad transparent transparent transparent;
}
.p-entry-content .calc-total__head,
.smb-section__body .calc-total__head,
.wp-block-group__inner-container .calc-total__head,
.l-contents-bottom-widget-area .calc-total__head {
  padding: 10px;
  color: #fff;
  background: #01b6ad;
}
.p-entry-content .calc-total__body,
.smb-section__body .calc-total__body,
.wp-block-group__inner-container .calc-total__body,
.l-contents-bottom-widget-area .calc-total__body {
  padding: 10px;
  font-size: 14px;
}
.p-entry-content .calc-total__body #total,
.smb-section__body .calc-total__body #total,
.wp-block-group__inner-container .calc-total__body #total,
.l-contents-bottom-widget-area .calc-total__body #total {
  font-size: 30px;
}
@media screen and (max-width: 639px) {
  .p-entry-content .calc-total__body #total,
  .smb-section__body .calc-total__body #total,
  .wp-block-group__inner-container .calc-total__body #total,
  .l-contents-bottom-widget-area .calc-total__body #total {
    font-size: 20px;
  }
}
.p-entry-content .calc-result__table,
.smb-section__body .calc-result__table,
.wp-block-group__inner-container .calc-result__table,
.l-contents-bottom-widget-area .calc-result__table {
  width: 100%;
  max-width: 600px;
}
@media screen and (max-width: 639px) {
  .p-entry-content .calc-result__table,
  .smb-section__body .calc-result__table,
  .wp-block-group__inner-container .calc-result__table,
  .l-contents-bottom-widget-area .calc-result__table {
    display: table;
    overflow: hidden;
  }
}
.p-entry-content .calc-result__table tr td,
.p-entry-content .calc-result__table tr th,
.smb-section__body .calc-result__table tr td,
.smb-section__body .calc-result__table tr th,
.wp-block-group__inner-container .calc-result__table tr td,
.wp-block-group__inner-container .calc-result__table tr th,
.l-contents-bottom-widget-area .calc-result__table tr td,
.l-contents-bottom-widget-area .calc-result__table tr th {
  width: auto;
  background: none;
  border: none;
  border-bottom: 1px solid #01b6ad;
}
.p-entry-content .calc-result__table tr td,
.smb-section__body .calc-result__table tr td,
.wp-block-group__inner-container .calc-result__table tr td,
.l-contents-bottom-widget-area .calc-result__table tr td {
  text-align: right;
}
.p-entry-content .calc-result__table tr.bold td,
.p-entry-content .calc-result__table tr.bold th,
.smb-section__body .calc-result__table tr.bold td,
.smb-section__body .calc-result__table tr.bold th,
.wp-block-group__inner-container .calc-result__table tr.bold td,
.wp-block-group__inner-container .calc-result__table tr.bold th,
.l-contents-bottom-widget-area .calc-result__table tr.bold td,
.l-contents-bottom-widget-area .calc-result__table tr.bold th {
  border-bottom-width: 2px;
}
.p-entry-content .schedule-input,
.smb-section__body .schedule-input,
.wp-block-group__inner-container .schedule-input,
.l-contents-bottom-widget-area .schedule-input {
  max-width: 300px;
  margin: 0 auto;
}
@media screen and (max-width: 639px) {
  .p-entry-content .schedule-input,
  .smb-section__body .schedule-input,
  .wp-block-group__inner-container .schedule-input,
  .l-contents-bottom-widget-area .schedule-input {
    max-width: none;
    width: 100%;
  }
}
.p-entry-content .schedule-input p,
.smb-section__body .schedule-input p,
.wp-block-group__inner-container .schedule-input p,
.l-contents-bottom-widget-area .schedule-input p {
  margin: 0 0 10px 0;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: #01b6ad;
}
.p-entry-content .schedule-input input,
.smb-section__body .schedule-input input,
.wp-block-group__inner-container .schedule-input input,
.l-contents-bottom-widget-area .schedule-input input {
  width: 100%;
  height: 50px;
  padding: 0 8px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #dee0de;
  border-radius: 3px;
}
.p-entry-content .schedule-input__submit,
.smb-section__body .schedule-input__submit,
.wp-block-group__inner-container .schedule-input__submit,
.l-contents-bottom-widget-area .schedule-input__submit {
  width: 100%;
  font-weight: 700;
  color: #fff;
  background: #01b6ad !important;
}
.p-entry-content .schedule-step__head,
.smb-section__body .schedule-step__head,
.wp-block-group__inner-container .schedule-step__head,
.l-contents-bottom-widget-area .schedule-step__head {
  padding: 0;
  background: none;
  border: none;
  color: #fff;
  background: #01b6ad;
  border-radius: 5px;
}
.p-entry-content .schedule-step__head::before,
.smb-section__body .schedule-step__head::before,
.wp-block-group__inner-container .schedule-step__head::before,
.l-contents-bottom-widget-area .schedule-step__head::before {
  display: none;
}
.p-entry-content .schedule-step__item,
.smb-section__body .schedule-step__item,
.wp-block-group__inner-container .schedule-step__item,
.l-contents-bottom-widget-area .schedule-step__item {
  margin: 0;
  padding: 0 0 20px 40px;
  position: relative;
}
@media screen and (max-width: 639px) {
  .p-entry-content .schedule-step__item,
  .smb-section__body .schedule-step__item,
  .wp-block-group__inner-container .schedule-step__item,
  .l-contents-bottom-widget-area .schedule-step__item {
    padding: 0 0 20px 30px;
  }
}
.p-entry-content .schedule-step__item::before,
.smb-section__body .schedule-step__item::before,
.wp-block-group__inner-container .schedule-step__item::before,
.l-contents-bottom-widget-area .schedule-step__item::before {
  position: absolute;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  top: 4px;
  left: 0;
  background: #01b6ad;
  border-radius: 10px;
}
.p-entry-content .schedule-step__item::after,
.smb-section__body .schedule-step__item::after,
.wp-block-group__inner-container .schedule-step__item::after,
.l-contents-bottom-widget-area .schedule-step__item::after {
  position: absolute;
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  top: 4px;
  left: 9px;
  background: #01b6ad;
}
.p-entry-content .schedule-step__item--last::after,
.smb-section__body .schedule-step__item--last::after,
.wp-block-group__inner-container .schedule-step__item--last::after,
.l-contents-bottom-widget-area .schedule-step__item--last::after {
  display: none;
}
.p-entry-content .schedule-step__item > p .big,
.p-entry-content .schedule-step__item > ul .big,
.p-entry-content .schedule-step__item > ol .big,
.p-entry-content .schedule-step__item > dl .big,
.p-entry-content .schedule-step__item > div .big,
.smb-section__body .schedule-step__item > p .big,
.smb-section__body .schedule-step__item > ul .big,
.smb-section__body .schedule-step__item > ol .big,
.smb-section__body .schedule-step__item > dl .big,
.smb-section__body .schedule-step__item > div .big,
.wp-block-group__inner-container .schedule-step__item > p .big,
.wp-block-group__inner-container .schedule-step__item > ul .big,
.wp-block-group__inner-container .schedule-step__item > ol .big,
.wp-block-group__inner-container .schedule-step__item > dl .big,
.wp-block-group__inner-container .schedule-step__item > div .big,
.l-contents-bottom-widget-area .schedule-step__item > p .big,
.l-contents-bottom-widget-area .schedule-step__item > ul .big,
.l-contents-bottom-widget-area .schedule-step__item > ol .big,
.l-contents-bottom-widget-area .schedule-step__item > dl .big,
.l-contents-bottom-widget-area .schedule-step__item > div .big {
  font-size: 20px;
  color: #01b6ad;
}
@media screen and (max-width: 639px) {
  .p-entry-content .schedule-step__item > p .big,
  .p-entry-content .schedule-step__item > ul .big,
  .p-entry-content .schedule-step__item > ol .big,
  .p-entry-content .schedule-step__item > dl .big,
  .p-entry-content .schedule-step__item > div .big,
  .smb-section__body .schedule-step__item > p .big,
  .smb-section__body .schedule-step__item > ul .big,
  .smb-section__body .schedule-step__item > ol .big,
  .smb-section__body .schedule-step__item > dl .big,
  .smb-section__body .schedule-step__item > div .big,
  .wp-block-group__inner-container .schedule-step__item > p .big,
  .wp-block-group__inner-container .schedule-step__item > ul .big,
  .wp-block-group__inner-container .schedule-step__item > ol .big,
  .wp-block-group__inner-container .schedule-step__item > dl .big,
  .wp-block-group__inner-container .schedule-step__item > div .big,
  .l-contents-bottom-widget-area .schedule-step__item > p .big,
  .l-contents-bottom-widget-area .schedule-step__item > ul .big,
  .l-contents-bottom-widget-area .schedule-step__item > ol .big,
  .l-contents-bottom-widget-area .schedule-step__item > dl .big,
  .l-contents-bottom-widget-area .schedule-step__item > div .big {
    font-size: 18px;
  }
}
.p-entry-content .schedule-step__item > *:first-child,
.smb-section__body .schedule-step__item > *:first-child,
.wp-block-group__inner-container .schedule-step__item > *:first-child,
.l-contents-bottom-widget-area .schedule-step__item > *:first-child {
  margin-top: 0;
}
.p-entry-content .checksheet,
.smb-section__body .checksheet,
.wp-block-group__inner-container .checksheet,
.l-contents-bottom-widget-area .checksheet {
  position: relative;
  padding-top: 80px;
}
.p-entry-content .checksheet.fixed .checksheet-flow,
.smb-section__body .checksheet.fixed .checksheet-flow,
.wp-block-group__inner-container .checksheet.fixed .checksheet-flow,
.l-contents-bottom-widget-area .checksheet.fixed .checksheet-flow {
  position: fixed;
  top: 95px;
}
@media screen and (max-width: 1023px) {
  .p-entry-content .checksheet.fixed .checksheet-flow,
  .smb-section__body .checksheet.fixed .checksheet-flow,
  .wp-block-group__inner-container .checksheet.fixed .checksheet-flow,
  .l-contents-bottom-widget-area .checksheet.fixed .checksheet-flow {
    top: 60px;
    left: 0;
    max-width: none;
    padding-right: var(--_container-margin, 1.76923rem);
    padding-left: var(--_container-margin, 1.76923rem);
  }
}
@media screen and (max-width: 639px) {
  .p-entry-content .checksheet.fixed .checksheet-flow,
  .smb-section__body .checksheet.fixed .checksheet-flow,
  .wp-block-group__inner-container .checksheet.fixed .checksheet-flow,
  .l-contents-bottom-widget-area .checksheet.fixed .checksheet-flow {
    padding-right: calc(var(--_container-margin-sm, 0.88462rem) + env(safe-area-inset-right));
    padding-left: calc(var(--_container-margin-sm, 0.88462rem) + env(safe-area-inset-left));
  }
}
.p-entry-content .checksheet-flow,
.smb-section__body .checksheet-flow,
.wp-block-group__inner-container .checksheet-flow,
.l-contents-bottom-widget-area .checksheet-flow {
  position: absolute;
  display: flex;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
}
.p-entry-content .checksheet-flow__item,
.smb-section__body .checksheet-flow__item,
.wp-block-group__inner-container .checksheet-flow__item,
.l-contents-bottom-widget-area .checksheet-flow__item {
  position: relative;
  height: 100%;
  min-height: 80px;
  margin-right: 2px;
  padding: 10px 10px 0 25px;
  color: #fff;
}
@media screen and (max-width: 639px) {
  .p-entry-content .checksheet-flow__item,
  .smb-section__body .checksheet-flow__item,
  .wp-block-group__inner-container .checksheet-flow__item,
  .l-contents-bottom-widget-area .checksheet-flow__item {
    padding: 10px 5px 0 20px;
  }
}
.p-entry-content .checksheet-flow__item:nth-child(1),
.smb-section__body .checksheet-flow__item:nth-child(1),
.wp-block-group__inner-container .checksheet-flow__item:nth-child(1),
.l-contents-bottom-widget-area .checksheet-flow__item:nth-child(1) {
  width: calc(30% - 2px);
  padding: 10px 10px 0 10px;
  background: #e20013;
}
@media screen and (max-width: 639px) {
  .p-entry-content .checksheet-flow__item:nth-child(1),
  .smb-section__body .checksheet-flow__item:nth-child(1),
  .wp-block-group__inner-container .checksheet-flow__item:nth-child(1),
  .l-contents-bottom-widget-area .checksheet-flow__item:nth-child(1) {
    padding: 10px 5px 0 5px;
  }
}
.p-entry-content .checksheet-flow__item:nth-child(1)::before,
.smb-section__body .checksheet-flow__item:nth-child(1)::before,
.wp-block-group__inner-container .checksheet-flow__item:nth-child(1)::before,
.l-contents-bottom-widget-area .checksheet-flow__item:nth-child(1)::before {
  border-left-color: #e20013;
}
.p-entry-content .checksheet-flow__item:nth-child(1) .checksheet-flow__head,
.smb-section__body .checksheet-flow__item:nth-child(1) .checksheet-flow__head,
.wp-block-group__inner-container .checksheet-flow__item:nth-child(1) .checksheet-flow__head,
.l-contents-bottom-widget-area .checksheet-flow__item:nth-child(1) .checksheet-flow__head {
  color: #e20013;
}
.p-entry-content .checksheet-flow__item:nth-child(2),
.smb-section__body .checksheet-flow__item:nth-child(2),
.wp-block-group__inner-container .checksheet-flow__item:nth-child(2),
.l-contents-bottom-widget-area .checksheet-flow__item:nth-child(2) {
  width: calc(36% - 2px);
  background: #f58700;
}
.p-entry-content .checksheet-flow__item:nth-child(2)::before,
.smb-section__body .checksheet-flow__item:nth-child(2)::before,
.wp-block-group__inner-container .checksheet-flow__item:nth-child(2)::before,
.l-contents-bottom-widget-area .checksheet-flow__item:nth-child(2)::before {
  border-left-color: #f58700;
}
.p-entry-content .checksheet-flow__item:nth-child(2) .checksheet-flow__head,
.smb-section__body .checksheet-flow__item:nth-child(2) .checksheet-flow__head,
.wp-block-group__inner-container .checksheet-flow__item:nth-child(2) .checksheet-flow__head,
.l-contents-bottom-widget-area .checksheet-flow__item:nth-child(2) .checksheet-flow__head {
  color: #f58700;
}
@media screen and (max-width: 639px) {
  .p-entry-content .checksheet-flow__item:nth-child(2) .over,
  .smb-section__body .checksheet-flow__item:nth-child(2) .over,
  .wp-block-group__inner-container .checksheet-flow__item:nth-child(2) .over,
  .l-contents-bottom-widget-area .checksheet-flow__item:nth-child(2) .over {
    background-position: 60% 50%;
  }
}
.p-entry-content .checksheet-flow__item:nth-child(3),
.smb-section__body .checksheet-flow__item:nth-child(3),
.wp-block-group__inner-container .checksheet-flow__item:nth-child(3),
.l-contents-bottom-widget-area .checksheet-flow__item:nth-child(3) {
  width: 34%;
  margin-right: 0;
  background: #f5bc00;
}
.p-entry-content .checksheet-flow__item:nth-child(3)::before, .p-entry-content .checksheet-flow__item:nth-child(3)::after,
.p-entry-content .checksheet-flow__item:nth-child(3) .over::before,
.smb-section__body .checksheet-flow__item:nth-child(3)::before,
.smb-section__body .checksheet-flow__item:nth-child(3)::after,
.smb-section__body .checksheet-flow__item:nth-child(3) .over::before,
.wp-block-group__inner-container .checksheet-flow__item:nth-child(3)::before,
.wp-block-group__inner-container .checksheet-flow__item:nth-child(3)::after,
.wp-block-group__inner-container .checksheet-flow__item:nth-child(3) .over::before,
.l-contents-bottom-widget-area .checksheet-flow__item:nth-child(3)::before,
.l-contents-bottom-widget-area .checksheet-flow__item:nth-child(3)::after,
.l-contents-bottom-widget-area .checksheet-flow__item:nth-child(3) .over::before {
  display: none;
}
.p-entry-content .checksheet-flow__item:nth-child(3) .checksheet-flow__head,
.smb-section__body .checksheet-flow__item:nth-child(3) .checksheet-flow__head,
.wp-block-group__inner-container .checksheet-flow__item:nth-child(3) .checksheet-flow__head,
.l-contents-bottom-widget-area .checksheet-flow__item:nth-child(3) .checksheet-flow__head {
  color: #f5bc00;
}
@media screen and (max-width: 639px) {
  .p-entry-content .checksheet-flow__item:nth-child(3) .over,
  .smb-section__body .checksheet-flow__item:nth-child(3) .over,
  .wp-block-group__inner-container .checksheet-flow__item:nth-child(3) .over,
  .l-contents-bottom-widget-area .checksheet-flow__item:nth-child(3) .over {
    background-position: 55% 50%;
  }
}
.p-entry-content .checksheet-flow__item::before, .p-entry-content .checksheet-flow__item::after,
.p-entry-content .checksheet-flow__item .over::before,
.smb-section__body .checksheet-flow__item::before,
.smb-section__body .checksheet-flow__item::after,
.smb-section__body .checksheet-flow__item .over::before,
.wp-block-group__inner-container .checksheet-flow__item::before,
.wp-block-group__inner-container .checksheet-flow__item::after,
.wp-block-group__inner-container .checksheet-flow__item .over::before,
.l-contents-bottom-widget-area .checksheet-flow__item::before,
.l-contents-bottom-widget-area .checksheet-flow__item::after,
.l-contents-bottom-widget-area .checksheet-flow__item .over::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  content: "";
  height: 0;
  width: 0;
  margin: 0;
  border: 40px solid transparent;
  border-right-width: 0;
  border-left-width: 15px;
  border-left-color: #fff;
  z-index: 1;
  transform: translateX(2px);
}
.p-entry-content .checksheet-flow__item::before,
.smb-section__body .checksheet-flow__item::before,
.wp-block-group__inner-container .checksheet-flow__item::before,
.l-contents-bottom-widget-area .checksheet-flow__item::before {
  right: 0;
  z-index: 2;
  transform: translateX(0);
}
.p-entry-content .checksheet-flow__item .over,
.smb-section__body .checksheet-flow__item .over,
.wp-block-group__inner-container .checksheet-flow__item .over,
.l-contents-bottom-widget-area .checksheet-flow__item .over {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("../img/member/checksheet/check-complete.png") 50% 50% no-repeat rgba(0, 0, 0, 0.4);
  background-size: 80px 33px;
}
@media screen and (max-width: 639px) {
  .p-entry-content .checksheet-flow__item .over,
  .smb-section__body .checksheet-flow__item .over,
  .wp-block-group__inner-container .checksheet-flow__item .over,
  .l-contents-bottom-widget-area .checksheet-flow__item .over {
    background-size: 60px auto;
  }
}
.p-entry-content .checksheet-flow__item .over::before,
.smb-section__body .checksheet-flow__item .over::before,
.wp-block-group__inner-container .checksheet-flow__item .over::before,
.l-contents-bottom-widget-area .checksheet-flow__item .over::before {
  border-left-color: rgba(0, 0, 0, 0.4);
  z-index: 3;
  transform: translateX(0px);
}
.p-entry-content .checksheet-flow__item.complete .over,
.smb-section__body .checksheet-flow__item.complete .over,
.wp-block-group__inner-container .checksheet-flow__item.complete .over,
.l-contents-bottom-widget-area .checksheet-flow__item.complete .over {
  display: block;
}
.p-entry-content .checksheet-flow__head,
.smb-section__body .checksheet-flow__head,
.wp-block-group__inner-container .checksheet-flow__head,
.l-contents-bottom-widget-area .checksheet-flow__head {
  height: 20px;
  margin-bottom: 8px;
  padding: 0 20px;
  font-weight: 700;
  text-align: center;
  line-height: 20px;
  background: #fff;
  border-radius: 10px;
}
.p-entry-content .checksheet-flow__progress,
.smb-section__body .checksheet-flow__progress,
.wp-block-group__inner-container .checksheet-flow__progress,
.l-contents-bottom-widget-area .checksheet-flow__progress {
  float: left;
  padding-left: 5px;
  font-size: 14px;
  line-height: 1.2;
}
@media screen and (max-width: 639px) {
  .p-entry-content .checksheet-flow__progress,
  .smb-section__body .checksheet-flow__progress,
  .wp-block-group__inner-container .checksheet-flow__progress,
  .l-contents-bottom-widget-area .checksheet-flow__progress {
    padding-left: 0;
    font-size: 12px;
  }
}
.p-entry-content .checksheet-flow__num,
.smb-section__body .checksheet-flow__num,
.wp-block-group__inner-container .checksheet-flow__num,
.l-contents-bottom-widget-area .checksheet-flow__num {
  float: right;
  padding-right: 5px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 639px) {
  .p-entry-content .checksheet-flow__num,
  .smb-section__body .checksheet-flow__num,
  .wp-block-group__inner-container .checksheet-flow__num,
  .l-contents-bottom-widget-area .checksheet-flow__num {
    padding-right: 0;
  }
}
.p-entry-content .checksheet-flow__num .check-count,
.smb-section__body .checksheet-flow__num .check-count,
.wp-block-group__inner-container .checksheet-flow__num .check-count,
.l-contents-bottom-widget-area .checksheet-flow__num .check-count {
  font-size: 30px;
  line-height: 30px;
}
@media screen and (max-width: 639px) {
  .p-entry-content .checksheet-flow__num .check-count,
  .smb-section__body .checksheet-flow__num .check-count,
  .wp-block-group__inner-container .checksheet-flow__num .check-count,
  .l-contents-bottom-widget-area .checksheet-flow__num .check-count {
    font-size: 25px;
    line-height: 25px;
  }
}
.p-entry-content .checksheet-step,
.smb-section__body .checksheet-step,
.wp-block-group__inner-container .checksheet-step,
.l-contents-bottom-widget-area .checksheet-step {
  margin-top: 40px;
}
.p-entry-content .checksheet-step__body,
.smb-section__body .checksheet-step__body,
.wp-block-group__inner-container .checksheet-step__body,
.l-contents-bottom-widget-area .checksheet-step__body {
  padding: 20px;
  background: #f8fffc;
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 639px) {
  .p-entry-content .checksheet-step__body,
  .smb-section__body .checksheet-step__body,
  .wp-block-group__inner-container .checksheet-step__body,
  .l-contents-bottom-widget-area .checksheet-step__body {
    padding: 15px;
  }
}
.p-entry-content .checksheet-step__date,
.smb-section__body .checksheet-step__date,
.wp-block-group__inner-container .checksheet-step__date,
.l-contents-bottom-widget-area .checksheet-step__date {
  margin: 0 !important;
  border: none;
  position: relative;
  display: inline-block;
  padding: 0 15px;
  font-size: 16px;
  min-height: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  background: #01b6ad;
  border-radius: 15px;
  z-index: 2;
}
.p-entry-content .checksheet-step__date::before,
.smb-section__body .checksheet-step__date::before,
.wp-block-group__inner-container .checksheet-step__date::before,
.l-contents-bottom-widget-area .checksheet-step__date::before {
  display: none;
}
.p-entry-content .checksheet-step__end,
.smb-section__body .checksheet-step__end,
.wp-block-group__inner-container .checksheet-step__end,
.l-contents-bottom-widget-area .checksheet-step__end {
  width: 100%;
  margin-top: 0 !important;
  padding-top: 20px;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  color: #c2c2c2;
  border-top: 1px dashed #ecf7f3;
}
@media screen and (max-width: 639px) {
  .p-entry-content .checksheet-step__end,
  .smb-section__body .checksheet-step__end,
  .wp-block-group__inner-container .checksheet-step__end,
  .l-contents-bottom-widget-area .checksheet-step__end {
    font-size: 25px;
  }
}
.p-entry-content .checksheet-step__end.checked,
.smb-section__body .checksheet-step__end.checked,
.wp-block-group__inner-container .checksheet-step__end.checked,
.l-contents-bottom-widget-area .checksheet-step__end.checked {
  color: #e03a2a;
}
.p-entry-content .checksheet-step__end.checked::before,
.smb-section__body .checksheet-step__end.checked::before,
.wp-block-group__inner-container .checksheet-step__end.checked::before,
.l-contents-bottom-widget-area .checksheet-step__end.checked::before {
  display: inline-block;
  margin-right: 5px;
  content: "\f00c";
  font: normal normal normal 1em/1 "Font Awesome 5 Free";
  font-weight: 700;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.p-entry-content .checksheet-step .item,
.smb-section__body .checksheet-step .item,
.wp-block-group__inner-container .checksheet-step .item,
.l-contents-bottom-widget-area .checksheet-step .item {
  display: flex;
  position: relative;
  gap: 20px;
  padding: 30px 0;
}
@media screen and (max-width: 1023px) {
  .p-entry-content .checksheet-step .item,
  .smb-section__body .checksheet-step .item,
  .wp-block-group__inner-container .checksheet-step .item,
  .l-contents-bottom-widget-area .checksheet-step .item {
    padding: 20px 0;
  }
}
@media screen and (max-width: 639px) {
  .p-entry-content .checksheet-step .item,
  .smb-section__body .checksheet-step .item,
  .wp-block-group__inner-container .checksheet-step .item,
  .l-contents-bottom-widget-area .checksheet-step .item {
    gap: 10px;
    padding: 15px 0;
  }
}
.p-entry-content .checksheet-step .item + .item,
.smb-section__body .checksheet-step .item + .item,
.wp-block-group__inner-container .checksheet-step .item + .item,
.l-contents-bottom-widget-area .checksheet-step .item + .item {
  padding-top: 0;
}
.p-entry-content .checksheet-step .item::before,
.smb-section__body .checksheet-step .item::before,
.wp-block-group__inner-container .checksheet-step .item::before,
.l-contents-bottom-widget-area .checksheet-step .item::before {
  position: absolute;
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  top: 0;
  left: 19px;
  background: #01b6ad;
  z-index: 1;
}
.p-entry-content .checksheet-step .item:last-of-type::before,
.smb-section__body .checksheet-step .item:last-of-type::before,
.wp-block-group__inner-container .checksheet-step .item:last-of-type::before,
.l-contents-bottom-widget-area .checksheet-step .item:last-of-type::before {
  height: 35px;
}
.p-entry-content .checksheet-step .item__nocheck,
.smb-section__body .checksheet-step .item__nocheck,
.wp-block-group__inner-container .checksheet-step .item__nocheck,
.l-contents-bottom-widget-area .checksheet-step .item__nocheck {
  position: relative;
  float: left;
  display: block;
  width: 30px;
  height: 30px;
  top: 8px;
  left: 5px;
  text-align: center;
  line-height: 28px;
  color: #fff;
  background: #01b6ad;
  border-radius: 15px;
  z-index: 2;
}
.p-entry-content .checksheet-step .item__body,
.smb-section__body .checksheet-step .item__body,
.wp-block-group__inner-container .checksheet-step .item__body,
.l-contents-bottom-widget-area .checksheet-step .item__body {
  float: right;
  width: calc(100% - 57px);
  padding: 10px 0 0;
}
@media screen and (max-width: 639px) {
  .p-entry-content .checksheet-step .item__body,
  .smb-section__body .checksheet-step .item__body,
  .wp-block-group__inner-container .checksheet-step .item__body,
  .l-contents-bottom-widget-area .checksheet-step .item__body {
    width: calc(100% - 47px);
  }
}
.p-entry-content .checksheet-step .item__body > *:first-child,
.smb-section__body .checksheet-step .item__body > *:first-child,
.wp-block-group__inner-container .checksheet-step .item__body > *:first-child,
.l-contents-bottom-widget-area .checksheet-step .item__body > *:first-child {
  margin-top: 0 !important;
}
.p-entry-content .checksheet-step .item__body .is-style-member-related,
.smb-section__body .checksheet-step .item__body .is-style-member-related,
.wp-block-group__inner-container .checksheet-step .item__body .is-style-member-related,
.l-contents-bottom-widget-area .checksheet-step .item__body .is-style-member-related {
  background: #fff;
  border: 1px solid #cce4db;
}
.p-entry-content .checksheet-step .item__body .is-style-member-related h4,
.smb-section__body .checksheet-step .item__body .is-style-member-related h4,
.wp-block-group__inner-container .checksheet-step .item__body .is-style-member-related h4,
.l-contents-bottom-widget-area .checksheet-step .item__body .is-style-member-related h4 {
  font-size: 16px;
}
.p-entry-content .is-style-qa-populer,
.p-entry-content .qa-populer,
.smb-section__body .is-style-qa-populer,
.smb-section__body .qa-populer,
.wp-block-group__inner-container .is-style-qa-populer,
.wp-block-group__inner-container .qa-populer,
.l-contents-bottom-widget-area .is-style-qa-populer,
.l-contents-bottom-widget-area .qa-populer {
  padding: 0;
  list-style: none;
}
.p-entry-content .is-style-qa-populer li,
.p-entry-content .qa-populer li,
.smb-section__body .is-style-qa-populer li,
.smb-section__body .qa-populer li,
.wp-block-group__inner-container .is-style-qa-populer li,
.wp-block-group__inner-container .qa-populer li,
.l-contents-bottom-widget-area .is-style-qa-populer li,
.l-contents-bottom-widget-area .qa-populer li {
  position: relative;
  padding-left: 40px;
  min-height: 30px;
}
@media screen and (max-width: 639px) {
  .p-entry-content .is-style-qa-populer li,
  .p-entry-content .qa-populer li,
  .smb-section__body .is-style-qa-populer li,
  .smb-section__body .qa-populer li,
  .wp-block-group__inner-container .is-style-qa-populer li,
  .wp-block-group__inner-container .qa-populer li,
  .l-contents-bottom-widget-area .is-style-qa-populer li,
  .l-contents-bottom-widget-area .qa-populer li {
    padding-left: 34px;
  }
}
.p-entry-content .is-style-qa-populer li::before,
.p-entry-content .qa-populer li::before,
.smb-section__body .is-style-qa-populer li::before,
.smb-section__body .qa-populer li::before,
.wp-block-group__inner-container .is-style-qa-populer li::before,
.wp-block-group__inner-container .qa-populer li::before,
.l-contents-bottom-widget-area .is-style-qa-populer li::before,
.l-contents-bottom-widget-area .qa-populer li::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -1px;
  left: 0;
  width: 30px;
  height: 30px;
  background: url("../img/member/qa/faq-q1_2.png") 0 0 no-repeat;
  background-size: 30px 30px;
}
@media screen and (max-width: 639px) {
  .p-entry-content .is-style-qa-populer li::before,
  .p-entry-content .qa-populer li::before,
  .smb-section__body .is-style-qa-populer li::before,
  .smb-section__body .qa-populer li::before,
  .wp-block-group__inner-container .is-style-qa-populer li::before,
  .wp-block-group__inner-container .qa-populer li::before,
  .l-contents-bottom-widget-area .is-style-qa-populer li::before,
  .l-contents-bottom-widget-area .qa-populer li::before {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
  }
}
.p-entry-content .is-style-qa-populer li .qa_txt,
.p-entry-content .qa-populer li .qa_txt,
.smb-section__body .is-style-qa-populer li .qa_txt,
.smb-section__body .qa-populer li .qa_txt,
.wp-block-group__inner-container .is-style-qa-populer li .qa_txt,
.wp-block-group__inner-container .qa-populer li .qa_txt,
.l-contents-bottom-widget-area .is-style-qa-populer li .qa_txt,
.l-contents-bottom-widget-area .qa-populer li .qa_txt {
  display: none;
}
.p-entry-content .qa-catlist,
.smb-section__body .qa-catlist,
.wp-block-group__inner-container .qa-catlist,
.l-contents-bottom-widget-area .qa-catlist {
  padding: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: stretch;
}
@media screen and (max-width: 639px) {
  .p-entry-content .qa-catlist,
  .smb-section__body .qa-catlist,
  .wp-block-group__inner-container .qa-catlist,
  .l-contents-bottom-widget-area .qa-catlist {
    flex-wrap: wrap;
  }
}
.p-entry-content .qa-catlist > li,
.smb-section__body .qa-catlist > li,
.wp-block-group__inner-container .qa-catlist > li,
.l-contents-bottom-widget-area .qa-catlist > li {
  margin: 0;
  padding: 0;
  text-align: center;
  flex: 1;
  padding: 20px;
  border-top: 3px solid #01b6ad;
  background: #f8fffc;
}
@media screen and (max-width: 639px) {
  .p-entry-content .qa-catlist > li,
  .smb-section__body .qa-catlist > li,
  .wp-block-group__inner-container .qa-catlist > li,
  .l-contents-bottom-widget-area .qa-catlist > li {
    flex: none;
    width: calc(50% - 5px);
    padding: 15px 10px;
  }
}
.p-entry-content .qa-catlist > li > a,
.smb-section__body .qa-catlist > li > a,
.wp-block-group__inner-container .qa-catlist > li > a,
.l-contents-bottom-widget-area .qa-catlist > li > a {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 639px) {
  .p-entry-content .qa-catlist > li > a,
  .smb-section__body .qa-catlist > li > a,
  .wp-block-group__inner-container .qa-catlist > li > a,
  .l-contents-bottom-widget-area .qa-catlist > li > a {
    font-size: 16px;
  }
}
.p-entry-content .qa-catlist > li > a > img,
.smb-section__body .qa-catlist > li > a > img,
.wp-block-group__inner-container .qa-catlist > li > a > img,
.l-contents-bottom-widget-area .qa-catlist > li > a > img {
  display: inline-block;
  max-width: 200px;
  width: 70%;
}
.p-entry-content .qa-catlist > li > a div,
.smb-section__body .qa-catlist > li > a div,
.wp-block-group__inner-container .qa-catlist > li > a div,
.l-contents-bottom-widget-area .qa-catlist > li > a div {
  margin-top: 10px;
}
.p-entry-content .qa-catlist > li .qa-catlist__child,
.smb-section__body .qa-catlist > li .qa-catlist__child,
.wp-block-group__inner-container .qa-catlist > li .qa-catlist__child,
.l-contents-bottom-widget-area .qa-catlist > li .qa-catlist__child {
  margin-top: 5px;
  padding: 0;
  list-style: none;
}
.p-entry-content .qa-catlist > li .qa-catlist__child li,
.smb-section__body .qa-catlist > li .qa-catlist__child li,
.wp-block-group__inner-container .qa-catlist > li .qa-catlist__child li,
.l-contents-bottom-widget-area .qa-catlist > li .qa-catlist__child li {
  display: inline-block;
  margin: 5px 10px 0;
}
@media screen and (max-width: 639px) {
  .p-entry-content .qa-catlist > li .qa-catlist__child li,
  .smb-section__body .qa-catlist > li .qa-catlist__child li,
  .wp-block-group__inner-container .qa-catlist > li .qa-catlist__child li,
  .l-contents-bottom-widget-area .qa-catlist > li .qa-catlist__child li {
    margin: 5px 5px 0;
  }
}
.p-entry-content .qa-catlist > li .qa-catlist__child li a,
.smb-section__body .qa-catlist > li .qa-catlist__child li a,
.wp-block-group__inner-container .qa-catlist > li .qa-catlist__child li a,
.l-contents-bottom-widget-area .qa-catlist > li .qa-catlist__child li a {
  color: #333333;
}
.p-entry-content .qa-catlist a,
.smb-section__body .qa-catlist a,
.wp-block-group__inner-container .qa-catlist a,
.l-contents-bottom-widget-area .qa-catlist a {
  text-decoration: none;
}
.p-entry-content .qa-catlist a:hover,
.smb-section__body .qa-catlist a:hover,
.wp-block-group__inner-container .qa-catlist a:hover,
.l-contents-bottom-widget-area .qa-catlist a:hover {
  opacity: 0.7;
}
.p-entry-content .qa,
.smb-section__body .qa,
.wp-block-group__inner-container .qa,
.l-contents-bottom-widget-area .qa {
  margin-top: 50px;
  border-top: 1px solid #dee0de;
}
.p-entry-content .qa__item,
.smb-section__body .qa__item,
.wp-block-group__inner-container .qa__item,
.l-contents-bottom-widget-area .qa__item {
  margin: 0;
  padding: 25px 0;
  border-bottom: 1px solid #dee0de;
}
@media screen and (max-width: 639px) {
  .p-entry-content .qa__item,
  .smb-section__body .qa__item,
  .wp-block-group__inner-container .qa__item,
  .l-contents-bottom-widget-area .qa__item {
    padding: 20px 0;
  }
}
.p-entry-content .qa__head,
.smb-section__body .qa__head,
.wp-block-group__inner-container .qa__head,
.l-contents-bottom-widget-area .qa__head {
  margin: 0 !important;
  padding: 0;
  background: none;
  border: none;
  position: relative;
  padding-left: 40px;
}
@media screen and (max-width: 639px) {
  .p-entry-content .qa__head,
  .smb-section__body .qa__head,
  .wp-block-group__inner-container .qa__head,
  .l-contents-bottom-widget-area .qa__head {
    padding-left: 30px;
    font-size: 18px;
  }
}
.p-entry-content .qa__head::before,
.smb-section__body .qa__head::before,
.wp-block-group__inner-container .qa__head::before,
.l-contents-bottom-widget-area .qa__head::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: url("../img/member/qa/faq-q1_2.png") 0 0 no-repeat;
  background-size: 30px 30px;
}
@media screen and (max-width: 639px) {
  .p-entry-content .qa__head::before,
  .smb-section__body .qa__head::before,
  .wp-block-group__inner-container .qa__head::before,
  .l-contents-bottom-widget-area .qa__head::before {
    width: 24x;
    height: 24px;
    background-size: 24px 24px;
  }
}
.p-entry-content .qa__body,
.smb-section__body .qa__body,
.wp-block-group__inner-container .qa__body,
.l-contents-bottom-widget-area .qa__body {
  margin-top: 20px;
}
@media screen and (max-width: 639px) {
  .p-entry-content .qa__body,
  .smb-section__body .qa__body,
  .wp-block-group__inner-container .qa__body,
  .l-contents-bottom-widget-area .qa__body {
    margin-top: 15px;
  }
}
.p-entry-content .qa__body .answer__head,
.smb-section__body .qa__body .answer__head,
.wp-block-group__inner-container .qa__body .answer__head,
.l-contents-bottom-widget-area .qa__body .answer__head {
  padding: 0;
  background: none;
  border: none;
  position: relative;
  padding-left: 40px;
  font-size: 18px;
}
@media screen and (max-width: 639px) {
  .p-entry-content .qa__body .answer__head,
  .smb-section__body .qa__body .answer__head,
  .wp-block-group__inner-container .qa__body .answer__head,
  .l-contents-bottom-widget-area .qa__body .answer__head {
    padding-left: 30px;
    font-size: 16px;
  }
}
.p-entry-content .qa__body .answer__head::before,
.smb-section__body .qa__body .answer__head::before,
.wp-block-group__inner-container .qa__body .answer__head::before,
.l-contents-bottom-widget-area .qa__body .answer__head::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: url("../img/member/qa/faq-a1.png") 0 0 no-repeat;
  background-size: 30px 30px;
}
@media screen and (max-width: 639px) {
  .p-entry-content .qa__body .answer__head::before,
  .smb-section__body .qa__body .answer__head::before,
  .wp-block-group__inner-container .qa__body .answer__head::before,
  .l-contents-bottom-widget-area .qa__body .answer__head::before {
    width: 24x;
    height: 24px;
    background-size: 24px 24px;
  }
}
.p-entry-content .qa__body .answer__body,
.smb-section__body .qa__body .answer__body,
.wp-block-group__inner-container .qa__body .answer__body,
.l-contents-bottom-widget-area .qa__body .answer__body {
  margin-top: 20px;
  padding-left: 40px;
}
@media screen and (max-width: 639px) {
  .p-entry-content .qa__body .answer__body,
  .smb-section__body .qa__body .answer__body,
  .wp-block-group__inner-container .qa__body .answer__body,
  .l-contents-bottom-widget-area .qa__body .answer__body {
    margin-top: 10px;
    padding-left: 30px;
  }
}
.p-entry-content .qa__body .answer__body > *:first-child,
.smb-section__body .qa__body .answer__body > *:first-child,
.wp-block-group__inner-container .qa__body .answer__body > *:first-child,
.l-contents-bottom-widget-area .qa__body .answer__body > *:first-child {
  margin-top: 0 !important;
}
@media screen and (max-width: 639px) {
  .p-entry-content .qa__body .answer__body p,
  .p-entry-content .qa__body .answer__body ul,
  .p-entry-content .qa__body .answer__body ol,
  .smb-section__body .qa__body .answer__body p,
  .smb-section__body .qa__body .answer__body ul,
  .smb-section__body .qa__body .answer__body ol,
  .wp-block-group__inner-container .qa__body .answer__body p,
  .wp-block-group__inner-container .qa__body .answer__body ul,
  .wp-block-group__inner-container .qa__body .answer__body ol,
  .l-contents-bottom-widget-area .qa__body .answer__body p,
  .l-contents-bottom-widget-area .qa__body .answer__body ul,
  .l-contents-bottom-widget-area .qa__body .answer__body ol {
    margin-top: 10px;
  }
}
.p-entry-content .qa-message,
.smb-section__body .qa-message,
.wp-block-group__inner-container .qa-message,
.l-contents-bottom-widget-area .qa-message {
  margin-top: 80px;
  padding: 20px;
  background: #07516e;
}
@media screen and (max-width: 639px) {
  .p-entry-content .qa-message,
  .smb-section__body .qa-message,
  .wp-block-group__inner-container .qa-message,
  .l-contents-bottom-widget-area .qa-message {
    padding: 15px;
  }
}
.p-entry-content .qa-message h3,
.smb-section__body .qa-message h3,
.wp-block-group__inner-container .qa-message h3,
.l-contents-bottom-widget-area .qa-message h3 {
  margin: 0 0 20px 0;
  padding: 0;
  color: #fff;
  border: none;
  text-align: center;
}
.p-entry-content .qa-message h3::before,
.smb-section__body .qa-message h3::before,
.wp-block-group__inner-container .qa-message h3::before,
.l-contents-bottom-widget-area .qa-message h3::before {
  display: none;
}
.p-entry-content .qa-message__inner,
.smb-section__body .qa-message__inner,
.wp-block-group__inner-container .qa-message__inner,
.l-contents-bottom-widget-area .qa-message__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 500px;
  margin: 0 auto 20px;
}
.p-entry-content .qa-message__image,
.smb-section__body .qa-message__image,
.wp-block-group__inner-container .qa-message__image,
.l-contents-bottom-widget-area .qa-message__image {
  width: 100px;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .p-entry-content .qa-message__image,
  .smb-section__body .qa-message__image,
  .wp-block-group__inner-container .qa-message__image,
  .l-contents-bottom-widget-area .qa-message__image {
    width: 80px;
  }
}
.p-entry-content .qa-message__body,
.smb-section__body .qa-message__body,
.wp-block-group__inner-container .qa-message__body,
.l-contents-bottom-widget-area .qa-message__body {
  position: relative;
  padding: 20px;
  width: calc(100% - 120px);
  background: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 639px) {
  .p-entry-content .qa-message__body,
  .smb-section__body .qa-message__body,
  .wp-block-group__inner-container .qa-message__body,
  .l-contents-bottom-widget-area .qa-message__body {
    width: calc(100% - 100px);
  }
}
.p-entry-content .qa-message__body:before,
.smb-section__body .qa-message__body:before,
.wp-block-group__inner-container .qa-message__body:before,
.l-contents-bottom-widget-area .qa-message__body:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  margin-top: -8px;
  border: 8px solid transparent;
  border-right: 10px solid #fff;
  z-index: 2;
}
.p-entry-content .qa-message__body > *:first-child,
.smb-section__body .qa-message__body > *:first-child,
.wp-block-group__inner-container .qa-message__body > *:first-child,
.l-contents-bottom-widget-area .qa-message__body > *:first-child {
  margin-top: 0 !important;
}
.p-entry-content .qa-message .c-btn,
.p-entry-content .qa-message .c-btn::before,
.smb-section__body .qa-message .c-btn,
.smb-section__body .qa-message .c-btn::before,
.wp-block-group__inner-container .qa-message .c-btn,
.wp-block-group__inner-container .qa-message .c-btn::before,
.l-contents-bottom-widget-area .qa-message .c-btn,
.l-contents-bottom-widget-area .qa-message .c-btn::before {
  color: #fff;
  background: #01b6ad;
}
.p-entry-content .my-block-flow,
.smb-section__body .my-block-flow,
.wp-block-group__inner-container .my-block-flow,
.l-contents-bottom-widget-area .my-block-flow {
  background: #f8fffc;
}
.p-entry-content .my-block-flow h3,
.smb-section__body .my-block-flow h3,
.wp-block-group__inner-container .my-block-flow h3,
.l-contents-bottom-widget-area .my-block-flow h3 {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  position: relative;
  padding: 20px 20px 0;
  color: #01b6ad;
  border-top: 2px solid #cce4db;
}
.p-entry-content .my-block-flow h3:first-child,
.smb-section__body .my-block-flow h3:first-child,
.wp-block-group__inner-container .my-block-flow h3:first-child,
.l-contents-bottom-widget-area .my-block-flow h3:first-child {
  border: none;
}
.p-entry-content .my-block-flow h3:first-child:before, .p-entry-content .my-block-flow h3:first-child:after,
.smb-section__body .my-block-flow h3:first-child:before,
.smb-section__body .my-block-flow h3:first-child:after,
.wp-block-group__inner-container .my-block-flow h3:first-child:before,
.wp-block-group__inner-container .my-block-flow h3:first-child:after,
.l-contents-bottom-widget-area .my-block-flow h3:first-child:before,
.l-contents-bottom-widget-area .my-block-flow h3:first-child:after {
  display: none;
}
.p-entry-content .my-block-flow h3:before, .p-entry-content .my-block-flow h3:after,
.smb-section__body .my-block-flow h3:before,
.smb-section__body .my-block-flow h3:after,
.wp-block-group__inner-container .my-block-flow h3:before,
.wp-block-group__inner-container .my-block-flow h3:after,
.l-contents-bottom-widget-area .my-block-flow h3:before,
.l-contents-bottom-widget-area .my-block-flow h3:after {
  position: absolute;
  left: 50%;
  top: 0;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  border-width: 15px 18px 15px 18px;
  margin: 0 0 0 -20px;
  background: none;
}
.p-entry-content .my-block-flow h3:before,
.smb-section__body .my-block-flow h3:before,
.wp-block-group__inner-container .my-block-flow h3:before,
.l-contents-bottom-widget-area .my-block-flow h3:before {
  border-top-color: #cce4db;
}
.p-entry-content .my-block-flow h3:after,
.smb-section__body .my-block-flow h3:after,
.wp-block-group__inner-container .my-block-flow h3:after,
.l-contents-bottom-widget-area .my-block-flow h3:after {
  border-top-color: #f8fffc;
  margin-top: -3px;
}
.p-entry-content .my-block-flow p,
.smb-section__body .my-block-flow p,
.wp-block-group__inner-container .my-block-flow p,
.l-contents-bottom-widget-area .my-block-flow p {
  padding: 5px 20px 20px;
}
.p-entry-content .glossary__head,
.smb-section__body .glossary__head,
.wp-block-group__inner-container .glossary__head,
.l-contents-bottom-widget-area .glossary__head {
  padding-left: 0;
}
.p-entry-content .glossary__head svg,
.smb-section__body .glossary__head svg,
.wp-block-group__inner-container .glossary__head svg,
.l-contents-bottom-widget-area .glossary__head svg {
  margin: 0 10px;
  color: #01b6ad;
}
.p-entry-content .glossary__head::before,
.smb-section__body .glossary__head::before,
.wp-block-group__inner-container .glossary__head::before,
.l-contents-bottom-widget-area .glossary__head::before {
  display: none;
}
.p-entry-content .manual-sample,
.smb-section__body .manual-sample,
.wp-block-group__inner-container .manual-sample,
.l-contents-bottom-widget-area .manual-sample {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px !important;
}
.p-entry-content .manual-sample .wp-block-image,
.smb-section__body .manual-sample .wp-block-image,
.wp-block-group__inner-container .manual-sample .wp-block-image,
.l-contents-bottom-widget-area .manual-sample .wp-block-image {
  width: 12%;
}