@charset "UTF-8";
/*----------------------------------
    レスポンシブ用クランプ関数
    1440pxのvwで画面幅を縮め、画面幅768pxまでデザインを維持したい時
    768pxでは極端に小さくなるため、ここでは960pxの値を維持させる
-----------------------------------*/
/*----------------------------------
clamp-vw関数
VWでフォントサイズを制限する関数
$min-font: 最小フォントサイズ（px）
$max-font: 最大フォントサイズ（px）
$min-viewport: VW最小値（初期値: 320px）
$max-viewport: VW最大値（初期値: 1024px）
-----------------------------------*/
html {
  overflow-x: hidden;
}

body {
  width: 100%;
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #1a1a1a;
  background: #F1EEE7;
  overflow-x: hidden;
  letter-spacing: 0.05em;
}

/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

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

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
  list-style-type: none;
}

summary::-webkit-details-marker {
  display: none;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

.l-footer {
  text-align: center;
  background: #E87619;
  padding-block: 1.875rem;
}

.l-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 0.9375rem;
  -webkit-column-gap: clamp(0.625rem, 0.224rem + 1.548vw, 1.25rem);
     -moz-column-gap: clamp(0.625rem, 0.224rem + 1.548vw, 1.25rem);
          column-gap: clamp(0.625rem, 0.224rem + 1.548vw, 1.25rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-footer__nav-list li {
  font-size: 0.875rem;
  color: #FFF;
  text-decoration: underline;
}
.l-footer__nav-list li a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.l-footer__top {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  -webkit-margin-before: 1.1875rem;
          margin-block-start: 1.1875rem;
}
.l-footer__top a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.l-header {
  position: fixed;
  width: 100%;
  height: 60px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 20;
  -webkit-box-shadow: 0px 2px 2px 0px rgba(26, 26, 26, 0.08);
          box-shadow: 0px 2px 2px 0px rgba(26, 26, 26, 0.08);
  background: #FAF9F7;
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1252px;
  margin-inline: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding-inline: 1.625rem;
}

.l-header__logo {
  font-size: 1.5rem;
  color: #EA6819;
  font-weight: 700;
}
.l-header__logo a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.hamburger {
  position: relative;
  width: 37px;
  height: 25px;
  z-index: 100;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
.hamburger span {
  position: absolute;
  width: 100%;
  height: 4px;
  background: #EA6819;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 10px;
  opacity: 1;
}
.hamburger span:nth-child(3) {
  top: 20px;
}
.hamburger.open span:nth-child(1) {
  top: 12px;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  top: 12px;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.l-header__nav {
  display: none;
  position: absolute;
  width: 100vw;
  height: 100dvh;
  background: #fff;
  border-left: 10px solid #EA6819;
  border-right: 10px solid #EA6819;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  -webkit-padding-before: 11.5dvh;
          padding-block-start: 11.5dvh;
}
.l-header__nav .l-header__nav-list li {
  font-size: 1.25rem;
  font-weight: 700;
  -webkit-margin-before: 2.1875rem;
          margin-block-start: 2.1875rem;
  letter-spacing: normal;
}
.l-header__nav .l-header__nav-list li a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.l-header__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}
.l-header__sns a {
  display: inline-block;
  width: 1.5625rem;
}
.l-header__sns a:last-of-type {
  width: 1.875rem;
}
.l-header__sns a img {
  vertical-align: middle;
}

.l-inner {
  margin-inline: auto;
  max-width: 1060px;
  padding-inline: clamp(1.0625rem, 0.542rem + 2.012vw, 1.875rem);
}
.l-inner.--single-blog {
  max-width: calc(850px + clamp(1.0625rem, 0.542rem + 2.012vw, 1.875rem) * 2);
}

.l-page {
  padding-top: clamp(6.125rem, 5.164rem + 3.715vw, 7.625rem);
}
.l-page .page__title {
  font-size: clamp(2.25rem, 1.541rem + 3.027vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(70%, transparent), color-stop(70%, #EE9F2C), color-stop(90%, #EE9F2C), color-stop(90%, transparent), to(transparent));
  background: linear-gradient(transparent, transparent 70%, #EE9F2C 70%, #EE9F2C 90%, transparent 90%, transparent);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  -webkit-margin-after: clamp(1.625rem, 0.944rem + 2.632vw, 2.6875rem);
          margin-block-end: clamp(1.625rem, 0.944rem + 2.632vw, 2.6875rem);
}
.l-page .page__title span {
  display: inline-block;
  width: clamp(2.625rem, 1.904rem + 2.786vw, 3.75rem);
}
.l-page .page__title span img {
  vertical-align: bottom;
}
.l-page .back__top {
  padding-block: clamp(1.5625rem, 0.561rem + 3.87vw, 3.125rem) clamp(1rem, -1.563rem + 9.907vw, 5rem);
  text-align: center;
}
.l-page .back__top a {
  font-size: clamp(1.125rem, 1.045rem + 0.31vw, 1.25rem);
}
.l-page .back__top a span {
  display: block;
  -webkit-margin-before: -0.4375rem;
          margin-block-start: -0.4375rem;
}

.u-hidden-pc {
  display: block;
}

.u-hidden-sp {
  display: none;
}

/* 共通 */
/* ============================================ */
.sp-only {
  display: block;
}

/* single-blog.php */
/* ============================================ */
.single-blog__title {
  display: block;
}

.page-content__single-blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.75rem, -1.134rem + 11.146vw, 6.25rem);
}

.single-blog__header {
  padding-top: 2px;
  padding-bottom: 0.625rem;
}
.single-blog__thumbnail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 380/224;
}
.single-blog__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-blog__date {
  display: inline-block;
  margin-top: 1.875rem;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.0375rem;
}

.single-blog__h1 {
  margin-top: 0.625rem;
  color: #000;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.075rem;
}
.single-blog__h2 {
  margin-top: 2.34375rem;
  color: #000;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.0625rem;
}
.single-blog__h3 {
  margin-top: 2.109375rem;
  color: #000;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05625rem;
}
.single-blog__h4 {
  margin-top: 1.875rem;
  color: #000;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05rem;
}
.single-blog__p {
  margin-top: 1.875rem;
  color: #000;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.05rem;
}
.back__archive {
  padding-block: clamp(1.5625rem, 0.561rem + 3.87vw, 3.125rem) clamp(1rem, -1.563rem + 9.907vw, 5rem);
  text-align: center;
}
.back__archive a {
  margin-left: 1rem;
  font-size: clamp(1.125rem, 1.045rem + 0.31vw, 1.25rem);
  letter-spacing: 0;
}
.back__archive a span {
  display: block;
  -webkit-margin-before: -0.4375rem;
          margin-block-start: -0.4375rem;
}

/* sidebar */
/* ============================================ */
.sidebar-recs {
  position: relative;
}

.sidebar-recs.pc-only {
  display: none;
}

.sidebar-recs__title {
  display: inline-block;
  font-family: "Noto Sans JP";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.075rem;
}
.sidebar-recs__cards {
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}

.sidebar-recs__swiper-container {
  padding-top: 6.125rem;
  overflow: visible;
}

.sidebar-recs__swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}

.sidebar-recs__swiper-button-wrapper {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  right: 0.625rem;
  height: 3.75rem;
  width: 9.5rem;
  gap: 1.875rem;
}

.sidebar-recs__swiper-button-prev,
.sidebar-recs__swiper-button-next {
  position: absolute;
  width: 3.8125rem;
  height: 3.75rem;
  top: 0;
  margin-top: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.sidebar-recs__swiper-button-prev::after,
.sidebar-recs__swiper-button-next::after {
  display: none;
}

.sidebar-recs__swiper-button-prev {
  left: 0;
  background: url(../images/swiper-button-prev.webp) no-repeat center center/contain;
  cursor: pointer;
}

.sidebar-recs__swiper-button-next {
  right: 0;
  background: url(../images/swiper-button-next.webp) no-repeat center center/contain;
  cursor: pointer;
}

.sidebar-recs__card {
  width: 100%;
}

.sidebar-recs-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 15px;
  background: #fff;
  gap: 1.25rem;
  padding-block: 1.875rem;
  padding-inline: 1.25rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.sidebar-recs-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}

.sidebar-recs-card__thumbnail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 340/200;
}
.sidebar-recs-card__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sidebar-recs-card__date {
  display: inline-block;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.0375rem;
}

.sidebar-recs-card__title {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.0625rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.sidebar-recs-card__category-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.sidebar-recs-card__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2px 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid #ee9f2c;
  border-radius: 20px;
  background-color: #fff;
}

.sidebar-recs-card__category-item {
  display: inline-block;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: normal;
}

.sidebar-recs__no-post {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.05rem;
  padding-bottom: 1.875rem;
}

/* sidebar-category */
/* ============================================ */
.sidebar-category {
  margin-top: 1.875rem;
}
.sidebar-category__title {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.075rem;
}
.sidebar-category__items {
  margin-top: 1.375rem;
}
.sidebar-category__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 3.5625rem;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05rem;
  position: relative;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.sidebar-category__item::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #ee9f2c;
}

.sidebar-category__no-post {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.05rem;
  padding-bottom: 1.875rem;
}

/* sidebar-archive */
/* ============================================ */
.sidebar-archive {
  margin-top: 1.875rem;
}
.sidebar-archive__title {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.075rem;
}
.sidebar-archive__items {
  margin-top: 1.375rem;
}
.sidebar-archive__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 3.5625rem;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05rem;
  position: relative;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.sidebar-archive__item::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #ee9f2c;
}

.sidebar-archive__no-post {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.05rem;
  padding-bottom: 1.875rem;
}

/* archive-blog.php */
/* ============================================ */
.blog__category-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 3px;
  padding-bottom: 1px;
}
.blog__category-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2px 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #ee9f2c;
  border-radius: 20px;
  background-color: #f1eee7;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: normal;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.blog__category-item.--checked {
  background-color: #ee9f2c;
  color: #ffffff;
}

.blog__sort {
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1rem;
}
.blog__sort-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.9px;
}

.blog__sort-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.blog__sort-item {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.9px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.blog__sort-item.--checked {
  color: #ee9f2c;
}

.blog__cards {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1.25rem;
}
.blog__card {
  width: 100%;
}
.blog-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 15px;
  background: #fff;
  gap: 1.25rem;
  padding-block: 1.875rem;
  padding-inline: 1.25rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.blog-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}

.blog-card__thumbnail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 340/200;
}
.blog-card__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-card__date {
  display: inline-block;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.0375rem;
}

.blog-card__title {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.0625rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-card__category-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.blog-card__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2px 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid #ee9f2c;
  border-radius: 20px;
  background-color: #fff;
}

.blog-card__category-item {
  display: inline-block;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: normal;
}

.blog__no-post {
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.05rem;
  padding-block: 1.875rem;
}

/* pagination */
/* ============================================ */
.pagination {
  margin-top: 70px;
  text-align: center;
}
.pagination a {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.pagination a:hover {
  opacity: 0.6;
}

.page-numbers {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -3px;
  margin-right: 1.875rem;
}

.page-numbers:last-child {
  margin-right: 0;
}

.page-numbers.current {
  color: #ee9f2c;
}

/* ===========================================
 * lite-word
 * ======================================== */
.post_content {
  container-type: inline-size;
  background: #fff;
}

.archive_body.post_style,
.lw_cat_common_content_fv_bottom.post_style {
  container-type: inline-size;
  margin: 0 auto;
  padding: 0;
  max-width: 1080px;
  width: calc(100% - 48px);
  min-height: initial;
}
.archive_body.post_style img,
.lw_cat_common_content_fv_bottom.post_style img {
  max-width: 100%;
}

.archive_body.post_style .first_content,
.archive_body.post_style .last_content,
.lw_cat_common_content_fv_bottom.post_style .first_content,
.lw_cat_common_content_fv_bottom.post_style .last_content {
  padding: 24px 0;
}
.archive_body.post_style .first_content + *,
.archive_body.post_style .last_content + *,
.lw_cat_common_content_fv_bottom.post_style .first_content + *,
.lw_cat_common_content_fv_bottom.post_style .last_content + * {
  margin-top: 0 !important;
}

.archive_body.post_style + .lw_post_list,
.lw_cat_common_content_fv_bottom.post_style + .lw_post_list {
  margin-top: 0;
}

.lw_cat_common_content_fv_bottom.post_style img {
  width: 100%;
}

.has-background + .last_content {
  display: none;
}

.wp-block-wdl-lw-my-parts-embed + .last_content {
  display: none;
}

.post_style:has(.first_content + .wp-block-wdl-lw-my-parts-embed) .first_content {
  display: none;
}

.post_style.lw_my_parts_widget {
  container-type: inline-size;
}

.post_style.lw_my_parts_widget > .wp-block-columns,
.post_style.lw_my_parts_widget > [class*=wp-block-wdl] {
  margin-top: 0;
  margin-bottom: 0;
}

/*--------
post_style
---------*/
.post_style {
  position: relative;
  z-index: 4;
}
.post_style h2:not([class*=is-style-]) {
  padding-bottom: 0.4em;
  border-bottom: 2px solid #ee9f2c;
}
.post_style h3:not([class*=is-style-]) {
  padding-left: 0.6em;
  padding-top: 0.05em;
  border-left: 0.4em solid #ee9f2c;
}
.post_style h4:not([class*=is-style-]) {
  padding-bottom: 0.4em;
  border-bottom: 0.12em dashed #ee9f2c;
}

@container (max-width: 800px) {
  .post_style {
    padding: 0 32px;
  }
}
@container (max-width:600px) {
  .post_style {
    padding: 0 24px;
  }
}
@container (max-width:500px) {
  .post_style {
    padding: 0 20px;
  }
}
.post_style.shadow {
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.post_style.lw_my_parts_widget {
  min-height: initial;
}

@container (min-width: 801px) {
  body.page .clm_2_right .post_style.single {
    padding: 0 40px 0 0;
  }
}
@container (max-width:500px) {
  body.page .clm_2_right .post_style.single {
    padding: 0 20px;
  }
}
@container (min-width: 801px) {
  body.page .clm_2_left .post_style.single {
    padding: 0 0 0 40px;
  }
}
@container (max-width:500px) {
  body.page .clm_2_left .post_style.single {
    padding: 0 20px;
  }
}
@container (min-width: 801px) {
  body.page .clm_1 .post_style.single {
    padding: 0 40px;
  }
}
@container (max-width:500px) {
  body.page .clm_1 .post_style.single {
    padding: 0 20px;
  }
}
.lw_pc_only {
  display: block;
}
.lw_sp_only {
  display: block;
}
.post_style,
.woocommerce-Tabs-panel--description,
.woocommerce-product-details__short-description,
.wp-block-wdl-lw-my-parts-embed {
  margin: 0;
  line-height: 1.6em;
  /* 太文字 strong */
  /* 強調文字 em */
  /* ギャラリー */
  /* 文中ユーチューブ動画のサイズ */
  /* 引用 */
  /* コード */
  /* リスト */
  /* リンク文字 */
  /* テーブル */
  /* テーブル グーテンベルク */
  /* ラジオボタンとチェックボックスのスタイル */
  /* 日付選択のスタイル */
  /* 隠しフィールドのスタイル（表示されないが念のため） */
}

.post_style .first_content,
.post_style .last_content,
.woocommerce-Tabs-panel--description .first_content,
.woocommerce-Tabs-panel--description .last_content,
.woocommerce-product-details__short-description .first_content,
.woocommerce-product-details__short-description .last_content,
.wp-block-wdl-lw-my-parts-embed .first_content,
.wp-block-wdl-lw-my-parts-embed .last_content {
  padding: 24px 0;
}

@container (max-width:600px) {
  .post_style .first_content,
  .post_style .last_content,
  .woocommerce-Tabs-panel--description .first_content,
  .woocommerce-Tabs-panel--description .last_content,
  .woocommerce-product-details__short-description .first_content,
  .woocommerce-product-details__short-description .last_content,
  .wp-block-wdl-lw-my-parts-embed .first_content,
  .wp-block-wdl-lw-my-parts-embed .last_content {
    padding: 16px 0;
  }
}
.post_style .first_content + *,
.post_style .last_content + *,
.woocommerce-Tabs-panel--description .first_content + *,
.woocommerce-Tabs-panel--description .last_content + *,
.woocommerce-product-details__short-description .first_content + *,
.woocommerce-product-details__short-description .last_content + *,
.wp-block-wdl-lw-my-parts-embed .first_content + *,
.wp-block-wdl-lw-my-parts-embed .last_content + * {
  margin-top: 0 !important;
}

.post_style:has(.first_content + .wp-block-image) .first_content,
.woocommerce-Tabs-panel--description:has(.first_content + .wp-block-image) .first_content,
.woocommerce-product-details__short-description:has(.first_content + .wp-block-image) .first_content,
.wp-block-wdl-lw-my-parts-embed:has(.first_content + .wp-block-image) .first_content {
  display: none;
}
@container (max-width:600px) {
  .post_style .page_first_content,
  .woocommerce-Tabs-panel--description .page_first_content,
  .woocommerce-product-details__short-description .page_first_content,
  .wp-block-wdl-lw-my-parts-embed .page_first_content {
    padding: 12px 0;
  }
}
.post_style .page_first_content + *,
.woocommerce-Tabs-panel--description .page_first_content + *,
.woocommerce-product-details__short-description .page_first_content + *,
.wp-block-wdl-lw-my-parts-embed .page_first_content + * {
  margin-top: 0 !important;
}

.post_style span:has(> [class*=lh-]),
.post_style div:has(> [class*=lh-]),
.post_style p:has(> [class*=lh-]),
.post_style h2:has(> [class*=lh-]),
.post_style h3:has(> [class*=lh-]),
.post_style h4:has(> [class*=lh-]),
.post_style h5:has(> [class*=lh-]),
.post_style h6:has(> [class*=lh-]),
.woocommerce-Tabs-panel--description span:has(> [class*=lh-]),
.woocommerce-Tabs-panel--description div:has(> [class*=lh-]),
.woocommerce-Tabs-panel--description p:has(> [class*=lh-]),
.woocommerce-Tabs-panel--description h2:has(> [class*=lh-]),
.woocommerce-Tabs-panel--description h3:has(> [class*=lh-]),
.woocommerce-Tabs-panel--description h4:has(> [class*=lh-]),
.woocommerce-Tabs-panel--description h5:has(> [class*=lh-]),
.woocommerce-Tabs-panel--description h6:has(> [class*=lh-]),
.woocommerce-product-details__short-description span:has(> [class*=lh-]),
.woocommerce-product-details__short-description div:has(> [class*=lh-]),
.woocommerce-product-details__short-description p:has(> [class*=lh-]),
.woocommerce-product-details__short-description h2:has(> [class*=lh-]),
.woocommerce-product-details__short-description h3:has(> [class*=lh-]),
.woocommerce-product-details__short-description h4:has(> [class*=lh-]),
.woocommerce-product-details__short-description h5:has(> [class*=lh-]),
.woocommerce-product-details__short-description h6:has(> [class*=lh-]),
.wp-block-wdl-lw-my-parts-embed span:has(> [class*=lh-]),
.wp-block-wdl-lw-my-parts-embed div:has(> [class*=lh-]),
.wp-block-wdl-lw-my-parts-embed p:has(> [class*=lh-]),
.wp-block-wdl-lw-my-parts-embed h2:has(> [class*=lh-]),
.wp-block-wdl-lw-my-parts-embed h3:has(> [class*=lh-]),
.wp-block-wdl-lw-my-parts-embed h4:has(> [class*=lh-]),
.wp-block-wdl-lw-my-parts-embed h5:has(> [class*=lh-]),
.wp-block-wdl-lw-my-parts-embed h6:has(> [class*=lh-]) {
  line-height: 1rem !important;
}

.post_style p,
.woocommerce-Tabs-panel--description p,
.woocommerce-product-details__short-description p,
.wp-block-wdl-lw-my-parts-embed p {
  margin: 1.5em auto;
}

.post_style p:not([class*=lh-]),
.woocommerce-Tabs-panel--description p:not([class*=lh-]),
.woocommerce-product-details__short-description p:not([class*=lh-]),
.wp-block-wdl-lw-my-parts-embed p:not([class*=lh-]) {
  line-height: 1.8em;
}

.post_style li > a,
.post_style p > a,
.woocommerce-Tabs-panel--description li > a,
.woocommerce-Tabs-panel--description p > a,
.woocommerce-product-details__short-description li > a,
.woocommerce-product-details__short-description p > a,
.wp-block-wdl-lw-my-parts-embed li > a,
.wp-block-wdl-lw-my-parts-embed p > a {
  color: var(--color-link);
  text-decoration: underline;
}

.post_style li > a:hover,
.post_style p > a:hover,
.woocommerce-Tabs-panel--description li > a:hover,
.woocommerce-Tabs-panel--description p > a:hover,
.woocommerce-product-details__short-description li > a:hover,
.woocommerce-product-details__short-description p > a:hover,
.wp-block-wdl-lw-my-parts-embed li > a:hover,
.wp-block-wdl-lw-my-parts-embed p > a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.post_style a,
.woocommerce-Tabs-panel--description a,
.woocommerce-product-details__short-description a,
.wp-block-wdl-lw-my-parts-embed a {
  word-break: break-all;
}

.post_style > p:not([class]),
.woocommerce-Tabs-panel--description > p:not([class]),
.woocommerce-product-details__short-description > p:not([class]),
.wp-block-wdl-lw-my-parts-embed > p:not([class]) {
  margin: 1em auto;
  padding: 0;
  text-justify: inter-ideograph;
}

.post_style > p:not([class]):empty,
.woocommerce-Tabs-panel--description > p:not([class]):empty,
.woocommerce-product-details__short-description > p:not([class]):empty,
.wp-block-wdl-lw-my-parts-embed > p:not([class]):empty {
  margin: 0;
  padding: 0;
}

.post_style > h2 + p,
.post_style > h3 + p,
.post_style > h4 + p,
.post_style > h5 + p,
.post_style > h6 + p,
.woocommerce-Tabs-panel--description > h2 + p,
.woocommerce-Tabs-panel--description > h3 + p,
.woocommerce-Tabs-panel--description > h4 + p,
.woocommerce-Tabs-panel--description > h5 + p,
.woocommerce-Tabs-panel--description > h6 + p,
.woocommerce-product-details__short-description > h2 + p,
.woocommerce-product-details__short-description > h3 + p,
.woocommerce-product-details__short-description > h4 + p,
.woocommerce-product-details__short-description > h5 + p,
.woocommerce-product-details__short-description > h6 + p,
.wp-block-wdl-lw-my-parts-embed > h2 + p,
.wp-block-wdl-lw-my-parts-embed > h3 + p,
.wp-block-wdl-lw-my-parts-embed > h4 + p,
.wp-block-wdl-lw-my-parts-embed > h5 + p,
.wp-block-wdl-lw-my-parts-embed > h6 + p {
  margin-top: 0;
}

.post_style h2:not([class]),
.post_style h2.is-style-default,
.post_style h2.wp-block-heading,
.woocommerce-Tabs-panel--description h2:not([class]),
.woocommerce-Tabs-panel--description h2.is-style-default,
.woocommerce-Tabs-panel--description h2.wp-block-heading,
.woocommerce-product-details__short-description h2:not([class]),
.woocommerce-product-details__short-description h2.is-style-default,
.woocommerce-product-details__short-description h2.wp-block-heading,
.wp-block-wdl-lw-my-parts-embed h2:not([class]),
.wp-block-wdl-lw-my-parts-embed h2.is-style-default,
.wp-block-wdl-lw-my-parts-embed h2.wp-block-heading {
  font-size: 1.5em;
  font-weight: 600;
  margin: 2em auto 1em auto;
  line-height: 1.4em;
}

@container (max-width: 800px) {
  .post_style h2:not([class]),
  .post_style h2.is-style-default,
  .post_style h2.wp-block-heading,
  .woocommerce-Tabs-panel--description h2:not([class]),
  .woocommerce-Tabs-panel--description h2.is-style-default,
  .woocommerce-Tabs-panel--description h2.wp-block-heading,
  .woocommerce-product-details__short-description h2:not([class]),
  .woocommerce-product-details__short-description h2.is-style-default,
  .woocommerce-product-details__short-description h2.wp-block-heading,
  .wp-block-wdl-lw-my-parts-embed h2:not([class]),
  .wp-block-wdl-lw-my-parts-embed h2.is-style-default,
  .wp-block-wdl-lw-my-parts-embed h2.wp-block-heading {
    font-size: 1.45em;
  }
}
@container (max-width:600px) {
  .post_style h2:not([class]),
  .post_style h2.is-style-default,
  .post_style h2.wp-block-heading,
  .woocommerce-Tabs-panel--description h2:not([class]),
  .woocommerce-Tabs-panel--description h2.is-style-default,
  .woocommerce-Tabs-panel--description h2.wp-block-heading,
  .woocommerce-product-details__short-description h2:not([class]),
  .woocommerce-product-details__short-description h2.is-style-default,
  .woocommerce-product-details__short-description h2.wp-block-heading,
  .wp-block-wdl-lw-my-parts-embed h2:not([class]),
  .wp-block-wdl-lw-my-parts-embed h2.is-style-default,
  .wp-block-wdl-lw-my-parts-embed h2.wp-block-heading {
    font-size: 1.4em;
  }
}
@container (max-width:500px) {
  .post_style h2:not([class]),
  .post_style h2.is-style-default,
  .post_style h2.wp-block-heading,
  .woocommerce-Tabs-panel--description h2:not([class]),
  .woocommerce-Tabs-panel--description h2.is-style-default,
  .woocommerce-Tabs-panel--description h2.wp-block-heading,
  .woocommerce-product-details__short-description h2:not([class]),
  .woocommerce-product-details__short-description h2.is-style-default,
  .woocommerce-product-details__short-description h2.wp-block-heading,
  .wp-block-wdl-lw-my-parts-embed h2:not([class]),
  .wp-block-wdl-lw-my-parts-embed h2.is-style-default,
  .wp-block-wdl-lw-my-parts-embed h2.wp-block-heading {
    font-size: 1.3em;
  }
}
.post_style h3:not([class]),
.post_style h3.is-style-default,
.post_style h3.wp-block-heading,
.woocommerce-Tabs-panel--description h3:not([class]),
.woocommerce-Tabs-panel--description h3.is-style-default,
.woocommerce-Tabs-panel--description h3.wp-block-heading,
.woocommerce-product-details__short-description h3:not([class]),
.woocommerce-product-details__short-description h3.is-style-default,
.woocommerce-product-details__short-description h3.wp-block-heading,
.wp-block-wdl-lw-my-parts-embed h3:not([class]),
.wp-block-wdl-lw-my-parts-embed h3.is-style-default,
.wp-block-wdl-lw-my-parts-embed h3.wp-block-heading {
  margin: 2em auto 1em auto;
  font-weight: 600;
  font-size: 1.3em;
  line-height: 1.4em;
}

@container (max-width: 800px) {
  .post_style h3:not([class]),
  .post_style h3.is-style-default,
  .post_style h3.wp-block-heading,
  .woocommerce-Tabs-panel--description h3:not([class]),
  .woocommerce-Tabs-panel--description h3.is-style-default,
  .woocommerce-Tabs-panel--description h3.wp-block-heading,
  .woocommerce-product-details__short-description h3:not([class]),
  .woocommerce-product-details__short-description h3.is-style-default,
  .woocommerce-product-details__short-description h3.wp-block-heading,
  .wp-block-wdl-lw-my-parts-embed h3:not([class]),
  .wp-block-wdl-lw-my-parts-embed h3.is-style-default,
  .wp-block-wdl-lw-my-parts-embed h3.wp-block-heading {
    font-size: 1.2em;
  }
}
@container (max-width:600px) {
  .post_style h3:not([class]),
  .post_style h3.is-style-default,
  .post_style h3.wp-block-heading,
  .woocommerce-Tabs-panel--description h3:not([class]),
  .woocommerce-Tabs-panel--description h3.is-style-default,
  .woocommerce-Tabs-panel--description h3.wp-block-heading,
  .woocommerce-product-details__short-description h3:not([class]),
  .woocommerce-product-details__short-description h3.is-style-default,
  .woocommerce-product-details__short-description h3.wp-block-heading,
  .wp-block-wdl-lw-my-parts-embed h3:not([class]),
  .wp-block-wdl-lw-my-parts-embed h3.is-style-default,
  .wp-block-wdl-lw-my-parts-embed h3.wp-block-heading {
    font-size: 1.2em;
  }
}
@container (max-width:500px) {
  .post_style h3:not([class]),
  .post_style h3.is-style-default,
  .post_style h3.wp-block-heading,
  .woocommerce-Tabs-panel--description h3:not([class]),
  .woocommerce-Tabs-panel--description h3.is-style-default,
  .woocommerce-Tabs-panel--description h3.wp-block-heading,
  .woocommerce-product-details__short-description h3:not([class]),
  .woocommerce-product-details__short-description h3.is-style-default,
  .woocommerce-product-details__short-description h3.wp-block-heading,
  .wp-block-wdl-lw-my-parts-embed h3:not([class]),
  .wp-block-wdl-lw-my-parts-embed h3.is-style-default,
  .wp-block-wdl-lw-my-parts-embed h3.wp-block-heading {
    font-size: 1.1em;
  }
}
.post_style h4:not([class]),
.post_style h4.is-style-default,
.post_style h4.wp-block-heading,
.woocommerce-Tabs-panel--description h4:not([class]),
.woocommerce-Tabs-panel--description h4.is-style-default,
.woocommerce-Tabs-panel--description h4.wp-block-heading,
.woocommerce-product-details__short-description h4:not([class]),
.woocommerce-product-details__short-description h4.is-style-default,
.woocommerce-product-details__short-description h4.wp-block-heading,
.wp-block-wdl-lw-my-parts-embed h4:not([class]),
.wp-block-wdl-lw-my-parts-embed h4.is-style-default,
.wp-block-wdl-lw-my-parts-embed h4.wp-block-heading {
  margin: 2em auto 0.5em auto;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.4em;
}

@container (max-width: 800px) {
  .post_style h4:not([class]),
  .post_style h4.is-style-default,
  .post_style h4.wp-block-heading,
  .woocommerce-Tabs-panel--description h4:not([class]),
  .woocommerce-Tabs-panel--description h4.is-style-default,
  .woocommerce-Tabs-panel--description h4.wp-block-heading,
  .woocommerce-product-details__short-description h4:not([class]),
  .woocommerce-product-details__short-description h4.is-style-default,
  .woocommerce-product-details__short-description h4.wp-block-heading,
  .wp-block-wdl-lw-my-parts-embed h4:not([class]),
  .wp-block-wdl-lw-my-parts-embed h4.is-style-default,
  .wp-block-wdl-lw-my-parts-embed h4.wp-block-heading {
    font-size: 1.1em;
  }
}
@container (max-width:600px) {
  .post_style h4:not([class]),
  .post_style h4.is-style-default,
  .post_style h4.wp-block-heading,
  .woocommerce-Tabs-panel--description h4:not([class]),
  .woocommerce-Tabs-panel--description h4.is-style-default,
  .woocommerce-Tabs-panel--description h4.wp-block-heading,
  .woocommerce-product-details__short-description h4:not([class]),
  .woocommerce-product-details__short-description h4.is-style-default,
  .woocommerce-product-details__short-description h4.wp-block-heading,
  .wp-block-wdl-lw-my-parts-embed h4:not([class]),
  .wp-block-wdl-lw-my-parts-embed h4.is-style-default,
  .wp-block-wdl-lw-my-parts-embed h4.wp-block-heading {
    font-size: 1.1em;
  }
}
@container (max-width:500px) {
  .post_style h4:not([class]),
  .post_style h4.is-style-default,
  .post_style h4.wp-block-heading,
  .woocommerce-Tabs-panel--description h4:not([class]),
  .woocommerce-Tabs-panel--description h4.is-style-default,
  .woocommerce-Tabs-panel--description h4.wp-block-heading,
  .woocommerce-product-details__short-description h4:not([class]),
  .woocommerce-product-details__short-description h4.is-style-default,
  .woocommerce-product-details__short-description h4.wp-block-heading,
  .wp-block-wdl-lw-my-parts-embed h4:not([class]),
  .wp-block-wdl-lw-my-parts-embed h4.is-style-default,
  .wp-block-wdl-lw-my-parts-embed h4.wp-block-heading {
    font-size: 1em;
  }
}
.post_style h2.heading_style_reset,
.post_style h3.heading_style_reset,
.post_style h4.heading_style_reset,
.post_style h5.heading_style_reset,
.post_style h6.heading_style_reset,
.woocommerce-Tabs-panel--description h2.heading_style_reset,
.woocommerce-Tabs-panel--description h3.heading_style_reset,
.woocommerce-Tabs-panel--description h4.heading_style_reset,
.woocommerce-Tabs-panel--description h5.heading_style_reset,
.woocommerce-Tabs-panel--description h6.heading_style_reset,
.woocommerce-product-details__short-description h2.heading_style_reset,
.woocommerce-product-details__short-description h3.heading_style_reset,
.woocommerce-product-details__short-description h4.heading_style_reset,
.woocommerce-product-details__short-description h5.heading_style_reset,
.woocommerce-product-details__short-description h6.heading_style_reset,
.wp-block-wdl-lw-my-parts-embed h2.heading_style_reset,
.wp-block-wdl-lw-my-parts-embed h3.heading_style_reset,
.wp-block-wdl-lw-my-parts-embed h4.heading_style_reset,
.wp-block-wdl-lw-my-parts-embed h5.heading_style_reset,
.wp-block-wdl-lw-my-parts-embed h6.heading_style_reset {
  margin: 0;
  padding: 0;
  border: none;
  color: inherit;
  font-size: inherit;
}

.post_style strong,
.post_style b,
.woocommerce-Tabs-panel--description strong,
.woocommerce-Tabs-panel--description b,
.woocommerce-product-details__short-description strong,
.woocommerce-product-details__short-description b,
.wp-block-wdl-lw-my-parts-embed strong,
.wp-block-wdl-lw-my-parts-embed b {
  font-weight: 700;
}

.post_style em,
.woocommerce-Tabs-panel--description em,
.woocommerce-product-details__short-description em,
.wp-block-wdl-lw-my-parts-embed em {
  font-weight: 500;
  font-size: 1.1em;
  background: #f8f68a;
}

.post_style > iframe,
.woocommerce-Tabs-panel--description > iframe,
.woocommerce-product-details__short-description > iframe,
.wp-block-wdl-lw-my-parts-embed > iframe {
  max-width: 100%;
  width: 100%;
}

.post_style .wp-block-columns:has(.wp-block-column + .wp-block-column) p:first-child,
.woocommerce-Tabs-panel--description .wp-block-columns:has(.wp-block-column + .wp-block-column) p:first-child,
.woocommerce-product-details__short-description .wp-block-columns:has(.wp-block-column + .wp-block-column) p:first-child,
.wp-block-wdl-lw-my-parts-embed .wp-block-columns:has(.wp-block-column + .wp-block-column) p:first-child {
  margin-top: 0;
}
.post_style .wp-block-columns:has(.wp-block-column + .wp-block-column) p:last-child,
.woocommerce-Tabs-panel--description .wp-block-columns:has(.wp-block-column + .wp-block-column) p:last-child,
.woocommerce-product-details__short-description .wp-block-columns:has(.wp-block-column + .wp-block-column) p:last-child,
.wp-block-wdl-lw-my-parts-embed .wp-block-columns:has(.wp-block-column + .wp-block-column) p:last-child {
  margin-bottom: 0;
}
.post_style .wp-block-columns + .wp-block-columns,
.woocommerce-Tabs-panel--description .wp-block-columns + .wp-block-columns,
.woocommerce-product-details__short-description .wp-block-columns + .wp-block-columns,
.wp-block-wdl-lw-my-parts-embed .wp-block-columns + .wp-block-columns {
  margin-top: 32px;
}

@container (max-width: 800px) {
  .post_style .wp-block-columns + .wp-block-columns,
  .woocommerce-Tabs-panel--description .wp-block-columns + .wp-block-columns,
  .woocommerce-product-details__short-description .wp-block-columns + .wp-block-columns,
  .wp-block-wdl-lw-my-parts-embed .wp-block-columns + .wp-block-columns {
    margin-top: 24px;
  }
}
.post_style .wp-block-columns.has-background,
.woocommerce-Tabs-panel--description .wp-block-columns.has-background,
.woocommerce-product-details__short-description .wp-block-columns.has-background,
.wp-block-wdl-lw-my-parts-embed .wp-block-columns.has-background {
  margin: 0;
}

.post_style > .wp-block-columns,
.post_style [class^=custom-title-accordion-] > .wp-block-columns,
.woocommerce-Tabs-panel--description > .wp-block-columns,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-columns,
.woocommerce-product-details__short-description > .wp-block-columns,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-columns,
.wp-block-wdl-lw-my-parts-embed > .wp-block-columns,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-columns {
  margin: 1.8em auto;
  padding: 0;
  gap: 24px;
}

@container (max-width: 800px) {
  .post_style > .wp-block-columns,
  .post_style [class^=custom-title-accordion-] > .wp-block-columns,
  .woocommerce-Tabs-panel--description > .wp-block-columns,
  .woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-columns,
  .woocommerce-product-details__short-description > .wp-block-columns,
  .woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-columns,
  .wp-block-wdl-lw-my-parts-embed > .wp-block-columns,
  .wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-columns {
    gap: 32px;
  }
}
@container (max-width: 500px) {
  .post_style > .wp-block-columns,
  .post_style [class^=custom-title-accordion-] > .wp-block-columns,
  .woocommerce-Tabs-panel--description > .wp-block-columns,
  .woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-columns,
  .woocommerce-product-details__short-description > .wp-block-columns,
  .woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-columns,
  .wp-block-wdl-lw-my-parts-embed > .wp-block-columns,
  .wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-columns {
    margin: 1em 0;
  }
}
.post_style > .wp-block-columns > p:not([class]),
.post_style [class^=custom-title-accordion-] > .wp-block-columns > p:not([class]),
.woocommerce-Tabs-panel--description > .wp-block-columns > p:not([class]),
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-columns > p:not([class]),
.woocommerce-product-details__short-description > .wp-block-columns > p:not([class]),
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-columns > p:not([class]),
.wp-block-wdl-lw-my-parts-embed > .wp-block-columns > p:not([class]),
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-columns > p:not([class]) {
  display: none;
}

.post_style > .wp-block-columns.has-background,
.post_style [class^=custom-title-accordion-] > .wp-block-columns.has-background,
.woocommerce-Tabs-panel--description > .wp-block-columns.has-background,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-columns.has-background,
.woocommerce-product-details__short-description > .wp-block-columns.has-background,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-columns.has-background,
.wp-block-wdl-lw-my-parts-embed > .wp-block-columns.has-background,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-columns.has-background {
  padding: 32px;
}

@container (max-width: 500px) {
  .post_style > .wp-block-columns.has-background,
  .post_style [class^=custom-title-accordion-] > .wp-block-columns.has-background,
  .woocommerce-Tabs-panel--description > .wp-block-columns.has-background,
  .woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-columns.has-background,
  .woocommerce-product-details__short-description > .wp-block-columns.has-background,
  .woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-columns.has-background,
  .wp-block-wdl-lw-my-parts-embed > .wp-block-columns.has-background,
  .wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-columns.has-background {
    padding: 24px 20px;
  }
}
.post_style > .wp-block-columns.has-background ul.wp-block-list:not([class*=is-style-li_]),
.post_style > .wp-block-columns.has-background ol.wp-block-list:not([class*=is-style-li_]),
.post_style [class^=custom-title-accordion-] > .wp-block-columns.has-background ul.wp-block-list:not([class*=is-style-li_]),
.post_style [class^=custom-title-accordion-] > .wp-block-columns.has-background ol.wp-block-list:not([class*=is-style-li_]),
.woocommerce-Tabs-panel--description > .wp-block-columns.has-background ul.wp-block-list:not([class*=is-style-li_]),
.woocommerce-Tabs-panel--description > .wp-block-columns.has-background ol.wp-block-list:not([class*=is-style-li_]),
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-columns.has-background ul.wp-block-list:not([class*=is-style-li_]),
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-columns.has-background ol.wp-block-list:not([class*=is-style-li_]),
.woocommerce-product-details__short-description > .wp-block-columns.has-background ul.wp-block-list:not([class*=is-style-li_]),
.woocommerce-product-details__short-description > .wp-block-columns.has-background ol.wp-block-list:not([class*=is-style-li_]),
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-columns.has-background ul.wp-block-list:not([class*=is-style-li_]),
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-columns.has-background ol.wp-block-list:not([class*=is-style-li_]),
.wp-block-wdl-lw-my-parts-embed > .wp-block-columns.has-background ul.wp-block-list:not([class*=is-style-li_]),
.wp-block-wdl-lw-my-parts-embed > .wp-block-columns.has-background ol.wp-block-list:not([class*=is-style-li_]),
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-columns.has-background ul.wp-block-list:not([class*=is-style-li_]),
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-columns.has-background ol.wp-block-list:not([class*=is-style-li_]) {
  margin: 0;
  padding-left: 0;
}

.post_style > .wp-block-columns figure + p,
.post_style [class^=custom-title-accordion-] > .wp-block-columns figure + p,
.woocommerce-Tabs-panel--description > .wp-block-columns figure + p,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-columns figure + p,
.woocommerce-product-details__short-description > .wp-block-columns figure + p,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-columns figure + p,
.wp-block-wdl-lw-my-parts-embed > .wp-block-columns figure + p,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-columns figure + p {
  margin-top: 0.8em;
}

.post_style > .wp-block-columns p,
.post_style [class^=custom-title-accordion-] > .wp-block-columns p,
.woocommerce-Tabs-panel--description > .wp-block-columns p,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-columns p,
.woocommerce-product-details__short-description > .wp-block-columns p,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-columns p,
.wp-block-wdl-lw-my-parts-embed > .wp-block-columns p,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-columns p {
  margin: 0;
  letter-spacing: 0;
}
.post_style > .wp-block-columns p + p,
.post_style > .wp-block-columns p + figure,
.post_style [class^=custom-title-accordion-] > .wp-block-columns p + p,
.post_style [class^=custom-title-accordion-] > .wp-block-columns p + figure,
.woocommerce-Tabs-panel--description > .wp-block-columns p + p,
.woocommerce-Tabs-panel--description > .wp-block-columns p + figure,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-columns p + p,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-columns p + figure,
.woocommerce-product-details__short-description > .wp-block-columns p + p,
.woocommerce-product-details__short-description > .wp-block-columns p + figure,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-columns p + p,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-columns p + figure,
.wp-block-wdl-lw-my-parts-embed > .wp-block-columns p + p,
.wp-block-wdl-lw-my-parts-embed > .wp-block-columns p + figure,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-columns p + p,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-columns p + figure {
  margin-top: 0.8em;
}

.post_style > .wp-block-columns h2,
.post_style > .wp-block-columns h3,
.post_style > .wp-block-columns h4,
.post_style [class^=custom-title-accordion-] > .wp-block-columns h2,
.post_style [class^=custom-title-accordion-] > .wp-block-columns h3,
.post_style [class^=custom-title-accordion-] > .wp-block-columns h4,
.woocommerce-Tabs-panel--description > .wp-block-columns h2,
.woocommerce-Tabs-panel--description > .wp-block-columns h3,
.woocommerce-Tabs-panel--description > .wp-block-columns h4,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-columns h2,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-columns h3,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-columns h4,
.woocommerce-product-details__short-description > .wp-block-columns h2,
.woocommerce-product-details__short-description > .wp-block-columns h3,
.woocommerce-product-details__short-description > .wp-block-columns h4,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-columns h2,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-columns h3,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-columns h4,
.wp-block-wdl-lw-my-parts-embed > .wp-block-columns h2,
.wp-block-wdl-lw-my-parts-embed > .wp-block-columns h3,
.wp-block-wdl-lw-my-parts-embed > .wp-block-columns h4,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-columns h2,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-columns h3,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-columns h4 {
  margin: 0.6em 0 1em 0;
  line-height: 1.4em;
}

@container (max-width: 800px) {
  .post_style > .wp-block-columns h2,
  .post_style > .wp-block-columns h3,
  .post_style > .wp-block-columns h4,
  .post_style [class^=custom-title-accordion-] > .wp-block-columns h2,
  .post_style [class^=custom-title-accordion-] > .wp-block-columns h3,
  .post_style [class^=custom-title-accordion-] > .wp-block-columns h4,
  .woocommerce-Tabs-panel--description > .wp-block-columns h2,
  .woocommerce-Tabs-panel--description > .wp-block-columns h3,
  .woocommerce-Tabs-panel--description > .wp-block-columns h4,
  .woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-columns h2,
  .woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-columns h3,
  .woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-columns h4,
  .woocommerce-product-details__short-description > .wp-block-columns h2,
  .woocommerce-product-details__short-description > .wp-block-columns h3,
  .woocommerce-product-details__short-description > .wp-block-columns h4,
  .woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-columns h2,
  .woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-columns h3,
  .woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-columns h4,
  .wp-block-wdl-lw-my-parts-embed > .wp-block-columns h2,
  .wp-block-wdl-lw-my-parts-embed > .wp-block-columns h3,
  .wp-block-wdl-lw-my-parts-embed > .wp-block-columns h4,
  .wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-columns h2,
  .wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-columns h3,
  .wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-columns h4 {
    font-size: 1.2em;
  }
}
@container (max-width:600px) {
  .post_style > .wp-block-columns h2,
  .post_style [class^=custom-title-accordion-] > .wp-block-columns h2,
  .woocommerce-Tabs-panel--description > .wp-block-columns h2,
  .woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-columns h2,
  .woocommerce-product-details__short-description > .wp-block-columns h2,
  .woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-columns h2,
  .wp-block-wdl-lw-my-parts-embed > .wp-block-columns h2,
  .wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-columns h2 {
    font-size: 1.4em;
  }
}
@container (max-width:500px) {
  .post_style > .wp-block-columns h2,
  .post_style [class^=custom-title-accordion-] > .wp-block-columns h2,
  .woocommerce-Tabs-panel--description > .wp-block-columns h2,
  .woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-columns h2,
  .woocommerce-product-details__short-description > .wp-block-columns h2,
  .woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-columns h2,
  .wp-block-wdl-lw-my-parts-embed > .wp-block-columns h2,
  .wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-columns h2 {
    font-size: 1.35em;
  }
}
@container (max-width:600px) {
  .post_style > .wp-block-columns h3,
  .post_style [class^=custom-title-accordion-] > .wp-block-columns h3,
  .woocommerce-Tabs-panel--description > .wp-block-columns h3,
  .woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-columns h3,
  .woocommerce-product-details__short-description > .wp-block-columns h3,
  .woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-columns h3,
  .wp-block-wdl-lw-my-parts-embed > .wp-block-columns h3,
  .wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-columns h3 {
    font-size: 1.2em;
  }
}
@container (max-width:500px) {
  .post_style > .wp-block-columns h3,
  .post_style [class^=custom-title-accordion-] > .wp-block-columns h3,
  .woocommerce-Tabs-panel--description > .wp-block-columns h3,
  .woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-columns h3,
  .woocommerce-product-details__short-description > .wp-block-columns h3,
  .woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-columns h3,
  .wp-block-wdl-lw-my-parts-embed > .wp-block-columns h3,
  .wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-columns h3 {
    font-size: 1.1em;
  }
}
@container (max-width:600px) {
  .post_style > .wp-block-columns h4,
  .post_style [class^=custom-title-accordion-] > .wp-block-columns h4,
  .woocommerce-Tabs-panel--description > .wp-block-columns h4,
  .woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-columns h4,
  .woocommerce-product-details__short-description > .wp-block-columns h4,
  .woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-columns h4,
  .wp-block-wdl-lw-my-parts-embed > .wp-block-columns h4,
  .wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-columns h4 {
    font-size: 1.1em;
  }
}
@container (max-width:500px) {
  .post_style > .wp-block-columns h4,
  .post_style [class^=custom-title-accordion-] > .wp-block-columns h4,
  .woocommerce-Tabs-panel--description > .wp-block-columns h4,
  .woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-columns h4,
  .woocommerce-product-details__short-description > .wp-block-columns h4,
  .woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-columns h4,
  .wp-block-wdl-lw-my-parts-embed > .wp-block-columns h4,
  .wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-columns h4 {
    font-size: 1em;
  }
}
.post_style .wp-block-image,
.woocommerce-Tabs-panel--description .wp-block-image,
.woocommerce-product-details__short-description .wp-block-image,
.wp-block-wdl-lw-my-parts-embed .wp-block-image {
  max-width: 100%;
}

.post_style .wp-block-image,
.post_style .wp-block-columns .wp-block-image,
.woocommerce-Tabs-panel--description .wp-block-image,
.woocommerce-Tabs-panel--description .wp-block-columns .wp-block-image,
.woocommerce-product-details__short-description .wp-block-image,
.woocommerce-product-details__short-description .wp-block-columns .wp-block-image,
.wp-block-wdl-lw-my-parts-embed .wp-block-image,
.wp-block-wdl-lw-my-parts-embed .wp-block-columns .wp-block-image {
  margin: 0 auto;
}

.post_style .wp-block-image figcaption,
.post_style .wp-block-columns .wp-block-image figcaption,
.woocommerce-Tabs-panel--description .wp-block-image figcaption,
.woocommerce-Tabs-panel--description .wp-block-columns .wp-block-image figcaption,
.woocommerce-product-details__short-description .wp-block-image figcaption,
.woocommerce-product-details__short-description .wp-block-columns .wp-block-image figcaption,
.wp-block-wdl-lw-my-parts-embed .wp-block-image figcaption,
.wp-block-wdl-lw-my-parts-embed .wp-block-columns .wp-block-image figcaption {
  text-align: center;
}

.post_style .wp-block-columns .wp-block-image,
.woocommerce-Tabs-panel--description .wp-block-columns .wp-block-image,
.woocommerce-product-details__short-description .wp-block-columns .wp-block-image,
.wp-block-wdl-lw-my-parts-embed .wp-block-columns .wp-block-image {
  padding: 0;
}

.post_style .wp-block-embed__wrapper::before,
.post_style .wp-block-columns .wp-block-embed__wrapper::before,
.woocommerce-Tabs-panel--description .wp-block-embed__wrapper::before,
.woocommerce-Tabs-panel--description .wp-block-columns .wp-block-embed__wrapper::before,
.woocommerce-product-details__short-description .wp-block-embed__wrapper::before,
.woocommerce-product-details__short-description .wp-block-columns .wp-block-embed__wrapper::before,
.wp-block-wdl-lw-my-parts-embed .wp-block-embed__wrapper::before,
.wp-block-wdl-lw-my-parts-embed .wp-block-columns .wp-block-embed__wrapper::before {
  content: "";
  padding-top: 57%;
  display: block;
}

.post_style .wp-block-embed__wrapper iframe,
.post_style .wp-block-columns .wp-block-embed__wrapper iframe,
.woocommerce-Tabs-panel--description .wp-block-embed__wrapper iframe,
.woocommerce-Tabs-panel--description .wp-block-columns .wp-block-embed__wrapper iframe,
.woocommerce-product-details__short-description .wp-block-embed__wrapper iframe,
.woocommerce-product-details__short-description .wp-block-columns .wp-block-embed__wrapper iframe,
.wp-block-wdl-lw-my-parts-embed .wp-block-embed__wrapper iframe,
.wp-block-wdl-lw-my-parts-embed .wp-block-columns .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.post_style .wp-block-cover,
.woocommerce-Tabs-panel--description .wp-block-cover,
.woocommerce-product-details__short-description .wp-block-cover,
.wp-block-wdl-lw-my-parts-embed .wp-block-cover {
  margin: 0;
}

.post_style .wp-block-cover + .last_content,
.woocommerce-Tabs-panel--description .wp-block-cover + .last_content,
.woocommerce-product-details__short-description .wp-block-cover + .last_content,
.wp-block-wdl-lw-my-parts-embed .wp-block-cover + .last_content {
  display: none;
}

.post_style:has(.first_content + .wp-block-cover) .first_content,
.woocommerce-Tabs-panel--description:has(.first_content + .wp-block-cover) .first_content,
.woocommerce-product-details__short-description:has(.first_content + .wp-block-cover) .first_content,
.wp-block-wdl-lw-my-parts-embed:has(.first_content + .wp-block-cover) .first_content {
  display: none;
}

.post_style .wp-block-gallery,
.woocommerce-Tabs-panel--description .wp-block-gallery,
.woocommerce-product-details__short-description .wp-block-gallery,
.wp-block-wdl-lw-my-parts-embed .wp-block-gallery {
  margin: 1em 0;
}

.post_style .wp-block-gallery figure,
.woocommerce-Tabs-panel--description .wp-block-gallery figure,
.woocommerce-product-details__short-description .wp-block-gallery figure,
.wp-block-wdl-lw-my-parts-embed .wp-block-gallery figure {
  -webkit-box-shadow: 0 0 50px #eee;
          box-shadow: 0 0 50px #eee;
}
.post_style .wp-block-latest-posts__list,
.woocommerce-Tabs-panel--description .wp-block-latest-posts__list,
.woocommerce-product-details__short-description .wp-block-latest-posts__list,
.wp-block-wdl-lw-my-parts-embed .wp-block-latest-posts__list {
  display: grid;
  gap: 1em;
}

.post_style .wp-block-latest-posts__list > li,
.woocommerce-Tabs-panel--description .wp-block-latest-posts__list > li,
.woocommerce-product-details__short-description .wp-block-latest-posts__list > li,
.wp-block-wdl-lw-my-parts-embed .wp-block-latest-posts__list > li {
  position: relative;
  z-index: 10;
  padding: 1.3em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-box-shadow: 0 0 4px #eee;
          box-shadow: 0 0 4px #eee;
}

.post_style .wp-block-latest-posts__list > li::after,
.woocommerce-Tabs-panel--description .wp-block-latest-posts__list > li::after,
.woocommerce-product-details__short-description .wp-block-latest-posts__list > li::after,
.wp-block-wdl-lw-my-parts-embed .wp-block-latest-posts__list > li::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  border: 1px solid #ee9f2c;
  opacity: 0.1;
  border-radius: 2px;
}

.post_style .wp-block-latest-posts__list > li .wp-block-latest-posts__featured-image,
.woocommerce-Tabs-panel--description .wp-block-latest-posts__list > li .wp-block-latest-posts__featured-image,
.woocommerce-product-details__short-description .wp-block-latest-posts__list > li .wp-block-latest-posts__featured-image,
.wp-block-wdl-lw-my-parts-embed .wp-block-latest-posts__list > li .wp-block-latest-posts__featured-image {
  margin-bottom: 1em;
}

.post_style .wp-block-latest-posts__list > li a,
.woocommerce-Tabs-panel--description .wp-block-latest-posts__list > li a,
.woocommerce-product-details__short-description .wp-block-latest-posts__list > li a,
.wp-block-wdl-lw-my-parts-embed .wp-block-latest-posts__list > li a {
  color: #ee9f2c;
  font-size: 1em;
  font-weight: 600;
}

.post_style .wp-block-latest-posts__list > li a:hover,
.woocommerce-Tabs-panel--description .wp-block-latest-posts__list > li a:hover,
.woocommerce-product-details__short-description .wp-block-latest-posts__list > li a:hover,
.wp-block-wdl-lw-my-parts-embed .wp-block-latest-posts__list > li a:hover {
  color: var(--color-blue);
  text-decoration: underline;
}

.post_style .wp-block-latest-posts__list > li .wp-block-latest-posts__post-excerpt,
.woocommerce-Tabs-panel--description .wp-block-latest-posts__list > li .wp-block-latest-posts__post-excerpt,
.woocommerce-product-details__short-description .wp-block-latest-posts__list > li .wp-block-latest-posts__post-excerpt,
.wp-block-wdl-lw-my-parts-embed .wp-block-latest-posts__list > li .wp-block-latest-posts__post-excerpt {
  margin-top: 0.5em;
  margin-bottom: 0.3em;
  font-size: 0.8em;
  color: #333;
}

.post_style .wp-block-latest-posts__list > li .wp-block-latest-posts__post-excerpt a,
.woocommerce-Tabs-panel--description .wp-block-latest-posts__list > li .wp-block-latest-posts__post-excerpt a,
.woocommerce-product-details__short-description .wp-block-latest-posts__list > li .wp-block-latest-posts__post-excerpt a,
.wp-block-wdl-lw-my-parts-embed .wp-block-latest-posts__list > li .wp-block-latest-posts__post-excerpt a {
  color: var(--color-blue);
  font-weight: 400;
}

.post_style .wp-block-embed__wrapper,
.woocommerce-Tabs-panel--description .wp-block-embed__wrapper,
.woocommerce-product-details__short-description .wp-block-embed__wrapper,
.wp-block-wdl-lw-my-parts-embed .wp-block-embed__wrapper {
  margin: 16px auto;
  margin-bottom: 24px;
  padding: 0 16px;
  max-width: 832px;
  width: 100%;
  aspect-ratio: 16/9;
}

.post_style .wp-block-embed__wrapper iframe,
.woocommerce-Tabs-panel--description .wp-block-embed__wrapper iframe,
.woocommerce-product-details__short-description .wp-block-embed__wrapper iframe,
.wp-block-wdl-lw-my-parts-embed .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
}

.post_style > .youtube_video_iframe,
.post_style [class^=custom-title-accordion-] > .youtube_video_iframe,
.woocommerce-Tabs-panel--description > .youtube_video_iframe,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .youtube_video_iframe,
.woocommerce-product-details__short-description > .youtube_video_iframe,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > .youtube_video_iframe,
.wp-block-wdl-lw-my-parts-embed > .youtube_video_iframe,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .youtube_video_iframe {
  margin: 16px auto;
  padding: 0 16px;
  max-width: 832px;
  width: 100%;
  aspect-ratio: 16/9;
}

.post_style > .youtube_video_iframe iframe,
.post_style [class^=custom-title-accordion-] > .youtube_video_iframe iframe,
.woocommerce-Tabs-panel--description > .youtube_video_iframe iframe,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .youtube_video_iframe iframe,
.woocommerce-product-details__short-description > .youtube_video_iframe iframe,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > .youtube_video_iframe iframe,
.wp-block-wdl-lw-my-parts-embed > .youtube_video_iframe iframe,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .youtube_video_iframe iframe {
  width: 100%;
  height: 100%;
}

.post_style > .wp-block-quote,
.post_style [class^=custom-title-accordion-] > .wp-block-quote,
.post_style blockquote,
.woocommerce-Tabs-panel--description > .wp-block-quote,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-quote,
.woocommerce-Tabs-panel--description blockquote,
.woocommerce-product-details__short-description > .wp-block-quote,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-quote,
.woocommerce-product-details__short-description blockquote,
.wp-block-wdl-lw-my-parts-embed > .wp-block-quote,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-quote,
.wp-block-wdl-lw-my-parts-embed blockquote {
  position: relative;
  padding: 1em;
  padding-left: 3em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-style: italic;
  background: #efefef;
  color: #555;
}

.post_style > .wp-block-quote::before,
.post_style [class^=custom-title-accordion-] > .wp-block-quote::before,
.post_style blockquote::before,
.woocommerce-Tabs-panel--description > .wp-block-quote::before,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-quote::before,
.woocommerce-Tabs-panel--description blockquote::before,
.woocommerce-product-details__short-description > .wp-block-quote::before,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-quote::before,
.woocommerce-product-details__short-description blockquote::before,
.wp-block-wdl-lw-my-parts-embed > .wp-block-quote::before,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-quote::before,
.wp-block-wdl-lw-my-parts-embed blockquote::before {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 0.05em;
  content: "“";
  font-family: sans-serif;
  color: #cfcfcf;
  font-size: 4em;
  line-height: 1;
}

.post_style > .wp-block-quote P,
.post_style [class^=custom-title-accordion-] > .wp-block-quote P,
.post_style blockquote P,
.woocommerce-Tabs-panel--description > .wp-block-quote P,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-quote P,
.woocommerce-Tabs-panel--description blockquote P,
.woocommerce-product-details__short-description > .wp-block-quote P,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-quote P,
.woocommerce-product-details__short-description blockquote P,
.wp-block-wdl-lw-my-parts-embed > .wp-block-quote P,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-quote P,
.wp-block-wdl-lw-my-parts-embed blockquote P {
  padding: 0;
  margin: 1em 0;
  line-height: 1.7;
}

.post_style > .wp-block-quote cite,
.post_style [class^=custom-title-accordion-] > .wp-block-quote cite,
.post_style blockquote cite,
.woocommerce-Tabs-panel--description > .wp-block-quote cite,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-quote cite,
.woocommerce-Tabs-panel--description blockquote cite,
.woocommerce-product-details__short-description > .wp-block-quote cite,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-quote cite,
.woocommerce-product-details__short-description blockquote cite,
.wp-block-wdl-lw-my-parts-embed > .wp-block-quote cite,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-quote cite,
.wp-block-wdl-lw-my-parts-embed blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}

.post_style .wp-block-buttons .wp-block-button__link,
.woocommerce-Tabs-panel--description .wp-block-buttons .wp-block-button__link,
.woocommerce-product-details__short-description .wp-block-buttons .wp-block-button__link,
.wp-block-wdl-lw-my-parts-embed .wp-block-buttons .wp-block-button__link {
  padding: 0.7em 1.4em 0.6em 1.4em;
  font-size: 0.95em;
}

.post_style > .wp-block-code code,
.post_style [class^=custom-title-accordion-] > .wp-block-code code,
.woocommerce-Tabs-panel--description > .wp-block-code code,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-code code,
.woocommerce-product-details__short-description > .wp-block-code code,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-code code,
.wp-block-wdl-lw-my-parts-embed > .wp-block-code code,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-code code {
  padding: 1em 1.5em;
  display: block;
  background: #222;
  color: #fff;
}

.post_style > ul:not([class]),
.post_style > ul.wp-block-list:not([class*=is-style-li_]),
.post_style .wp-block-columns ul.wp-block-list:not([class*=is-style-li_]),
.post_style [class^=custom-title-accordion-] > ul:not([class*=is-style-li_]),
.post_style [class^=custom-title-accordion-] > ul.wp-block-list:not([class*=is-style-li_]),
.woocommerce-Tabs-panel--description > ul:not([class]),
.woocommerce-Tabs-panel--description > ul.wp-block-list:not([class*=is-style-li_]),
.woocommerce-Tabs-panel--description .wp-block-columns ul.wp-block-list:not([class*=is-style-li_]),
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > ul:not([class*=is-style-li_]),
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > ul.wp-block-list:not([class*=is-style-li_]),
.woocommerce-product-details__short-description > ul:not([class]),
.woocommerce-product-details__short-description > ul.wp-block-list:not([class*=is-style-li_]),
.woocommerce-product-details__short-description .wp-block-columns ul.wp-block-list:not([class*=is-style-li_]),
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > ul:not([class*=is-style-li_]),
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > ul.wp-block-list:not([class*=is-style-li_]),
.wp-block-wdl-lw-my-parts-embed > ul:not([class]),
.wp-block-wdl-lw-my-parts-embed > ul.wp-block-list:not([class*=is-style-li_]),
.wp-block-wdl-lw-my-parts-embed .wp-block-columns ul.wp-block-list:not([class*=is-style-li_]),
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > ul:not([class*=is-style-li_]),
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > ul.wp-block-list:not([class*=is-style-li_]) {
  margin: 1.6em auto;
  line-height: 1.6em;
}

.post_style > ul:not([class]) > li,
.post_style > ul.wp-block-list:not([class*=is-style-li_]) > li,
.post_style .wp-block-columns ul.wp-block-list:not([class*=is-style-li_]) > li,
.post_style [class^=custom-title-accordion-] > ul:not([class*=is-style-li_]) > li,
.post_style [class^=custom-title-accordion-] > ul.wp-block-list:not([class*=is-style-li_]) > li,
.woocommerce-Tabs-panel--description > ul:not([class]) > li,
.woocommerce-Tabs-panel--description > ul.wp-block-list:not([class*=is-style-li_]) > li,
.woocommerce-Tabs-panel--description .wp-block-columns ul.wp-block-list:not([class*=is-style-li_]) > li,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > ul:not([class*=is-style-li_]) > li,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > ul.wp-block-list:not([class*=is-style-li_]) > li,
.woocommerce-product-details__short-description > ul:not([class]) > li,
.woocommerce-product-details__short-description > ul.wp-block-list:not([class*=is-style-li_]) > li,
.woocommerce-product-details__short-description .wp-block-columns ul.wp-block-list:not([class*=is-style-li_]) > li,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > ul:not([class*=is-style-li_]) > li,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > ul.wp-block-list:not([class*=is-style-li_]) > li,
.wp-block-wdl-lw-my-parts-embed > ul:not([class]) > li,
.wp-block-wdl-lw-my-parts-embed > ul.wp-block-list:not([class*=is-style-li_]) > li,
.wp-block-wdl-lw-my-parts-embed .wp-block-columns ul.wp-block-list:not([class*=is-style-li_]) > li,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > ul:not([class*=is-style-li_]) > li,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > ul.wp-block-list:not([class*=is-style-li_]) > li {
  margin: 0.5em 0;
  margin-left: 1.4em;
  list-style-type: square;
}

.post_style > ul:not([class]) > li ul li,
.post_style > ul:not([class]) > li ol li,
.post_style > ul.wp-block-list:not([class*=is-style-li_]) > li ul li,
.post_style > ul.wp-block-list:not([class*=is-style-li_]) > li ol li,
.post_style .wp-block-columns ul.wp-block-list:not([class*=is-style-li_]) > li ul li,
.post_style .wp-block-columns ul.wp-block-list:not([class*=is-style-li_]) > li ol li,
.post_style [class^=custom-title-accordion-] > ul:not([class*=is-style-li_]) > li ul li,
.post_style [class^=custom-title-accordion-] > ul:not([class*=is-style-li_]) > li ol li,
.post_style [class^=custom-title-accordion-] > ul.wp-block-list:not([class*=is-style-li_]) > li ul li,
.post_style [class^=custom-title-accordion-] > ul.wp-block-list:not([class*=is-style-li_]) > li ol li,
.woocommerce-Tabs-panel--description > ul:not([class]) > li ul li,
.woocommerce-Tabs-panel--description > ul:not([class]) > li ol li,
.woocommerce-Tabs-panel--description > ul.wp-block-list:not([class*=is-style-li_]) > li ul li,
.woocommerce-Tabs-panel--description > ul.wp-block-list:not([class*=is-style-li_]) > li ol li,
.woocommerce-Tabs-panel--description .wp-block-columns ul.wp-block-list:not([class*=is-style-li_]) > li ul li,
.woocommerce-Tabs-panel--description .wp-block-columns ul.wp-block-list:not([class*=is-style-li_]) > li ol li,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > ul:not([class*=is-style-li_]) > li ul li,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > ul:not([class*=is-style-li_]) > li ol li,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > ul.wp-block-list:not([class*=is-style-li_]) > li ul li,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > ul.wp-block-list:not([class*=is-style-li_]) > li ol li,
.woocommerce-product-details__short-description > ul:not([class]) > li ul li,
.woocommerce-product-details__short-description > ul:not([class]) > li ol li,
.woocommerce-product-details__short-description > ul.wp-block-list:not([class*=is-style-li_]) > li ul li,
.woocommerce-product-details__short-description > ul.wp-block-list:not([class*=is-style-li_]) > li ol li,
.woocommerce-product-details__short-description .wp-block-columns ul.wp-block-list:not([class*=is-style-li_]) > li ul li,
.woocommerce-product-details__short-description .wp-block-columns ul.wp-block-list:not([class*=is-style-li_]) > li ol li,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > ul:not([class*=is-style-li_]) > li ul li,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > ul:not([class*=is-style-li_]) > li ol li,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > ul.wp-block-list:not([class*=is-style-li_]) > li ul li,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > ul.wp-block-list:not([class*=is-style-li_]) > li ol li,
.wp-block-wdl-lw-my-parts-embed > ul:not([class]) > li ul li,
.wp-block-wdl-lw-my-parts-embed > ul:not([class]) > li ol li,
.wp-block-wdl-lw-my-parts-embed > ul.wp-block-list:not([class*=is-style-li_]) > li ul li,
.wp-block-wdl-lw-my-parts-embed > ul.wp-block-list:not([class*=is-style-li_]) > li ol li,
.wp-block-wdl-lw-my-parts-embed .wp-block-columns ul.wp-block-list:not([class*=is-style-li_]) > li ul li,
.wp-block-wdl-lw-my-parts-embed .wp-block-columns ul.wp-block-list:not([class*=is-style-li_]) > li ol li,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > ul:not([class*=is-style-li_]) > li ul li,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > ul:not([class*=is-style-li_]) > li ol li,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > ul.wp-block-list:not([class*=is-style-li_]) > li ul li,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > ul.wp-block-list:not([class*=is-style-li_]) > li ol li {
  margin: 0.5em 0;
  margin-left: 1.4em;
  list-style-type: circle;
}

.post_style > ul:not([class]) > li ol li,
.post_style > ul.wp-block-list:not([class*=is-style-li_]) > li ol li,
.post_style .wp-block-columns ul.wp-block-list:not([class*=is-style-li_]) > li ol li,
.post_style [class^=custom-title-accordion-] > ul:not([class*=is-style-li_]) > li ol li,
.post_style [class^=custom-title-accordion-] > ul.wp-block-list:not([class*=is-style-li_]) > li ol li,
.woocommerce-Tabs-panel--description > ul:not([class]) > li ol li,
.woocommerce-Tabs-panel--description > ul.wp-block-list:not([class*=is-style-li_]) > li ol li,
.woocommerce-Tabs-panel--description .wp-block-columns ul.wp-block-list:not([class*=is-style-li_]) > li ol li,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > ul:not([class*=is-style-li_]) > li ol li,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > ul.wp-block-list:not([class*=is-style-li_]) > li ol li,
.woocommerce-product-details__short-description > ul:not([class]) > li ol li,
.woocommerce-product-details__short-description > ul.wp-block-list:not([class*=is-style-li_]) > li ol li,
.woocommerce-product-details__short-description .wp-block-columns ul.wp-block-list:not([class*=is-style-li_]) > li ol li,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > ul:not([class*=is-style-li_]) > li ol li,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > ul.wp-block-list:not([class*=is-style-li_]) > li ol li,
.wp-block-wdl-lw-my-parts-embed > ul:not([class]) > li ol li,
.wp-block-wdl-lw-my-parts-embed > ul.wp-block-list:not([class*=is-style-li_]) > li ol li,
.wp-block-wdl-lw-my-parts-embed .wp-block-columns ul.wp-block-list:not([class*=is-style-li_]) > li ol li,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > ul:not([class*=is-style-li_]) > li ol li,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > ul.wp-block-list:not([class*=is-style-li_]) > li ol li {
  list-style-type: decimal;
}

.post_style > ol:not([class]),
.post_style > ol.wp-block-list:not([class*=is-style-li_]),
.post_style .wp-block-columns ol.wp-block-list:not([class*=is-style-li_]),
.post_style [class^=custom-title-accordion-] > ol:not([class*=is-style-li_]),
.post_style [class^=custom-title-accordion-] > ol.wp-block-list:not([class*=is-style-li_]),
.woocommerce-Tabs-panel--description > ol:not([class]),
.woocommerce-Tabs-panel--description > ol.wp-block-list:not([class*=is-style-li_]),
.woocommerce-Tabs-panel--description .wp-block-columns ol.wp-block-list:not([class*=is-style-li_]),
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > ol:not([class*=is-style-li_]),
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > ol.wp-block-list:not([class*=is-style-li_]),
.woocommerce-product-details__short-description > ol:not([class]),
.woocommerce-product-details__short-description > ol.wp-block-list:not([class*=is-style-li_]),
.woocommerce-product-details__short-description .wp-block-columns ol.wp-block-list:not([class*=is-style-li_]),
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > ol:not([class*=is-style-li_]),
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > ol.wp-block-list:not([class*=is-style-li_]),
.wp-block-wdl-lw-my-parts-embed > ol:not([class]),
.wp-block-wdl-lw-my-parts-embed > ol.wp-block-list:not([class*=is-style-li_]),
.wp-block-wdl-lw-my-parts-embed .wp-block-columns ol.wp-block-list:not([class*=is-style-li_]),
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > ol:not([class*=is-style-li_]),
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > ol.wp-block-list:not([class*=is-style-li_]) {
  margin: 1.6em auto;
  line-height: 1.6em;
}

.post_style > ol:not([class]) > li,
.post_style > ol.wp-block-list:not([class*=is-style-li_]) > li,
.post_style .wp-block-columns ol.wp-block-list:not([class*=is-style-li_]) > li,
.post_style [class^=custom-title-accordion-] > ol:not([class*=is-style-li_]) > li,
.post_style [class^=custom-title-accordion-] > ol.wp-block-list:not([class*=is-style-li_]) > li,
.woocommerce-Tabs-panel--description > ol:not([class]) > li,
.woocommerce-Tabs-panel--description > ol.wp-block-list:not([class*=is-style-li_]) > li,
.woocommerce-Tabs-panel--description .wp-block-columns ol.wp-block-list:not([class*=is-style-li_]) > li,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > ol:not([class*=is-style-li_]) > li,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > ol.wp-block-list:not([class*=is-style-li_]) > li,
.woocommerce-product-details__short-description > ol:not([class]) > li,
.woocommerce-product-details__short-description > ol.wp-block-list:not([class*=is-style-li_]) > li,
.woocommerce-product-details__short-description .wp-block-columns ol.wp-block-list:not([class*=is-style-li_]) > li,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > ol:not([class*=is-style-li_]) > li,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > ol.wp-block-list:not([class*=is-style-li_]) > li,
.wp-block-wdl-lw-my-parts-embed > ol:not([class]) > li,
.wp-block-wdl-lw-my-parts-embed > ol.wp-block-list:not([class*=is-style-li_]) > li,
.wp-block-wdl-lw-my-parts-embed .wp-block-columns ol.wp-block-list:not([class*=is-style-li_]) > li,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > ol:not([class*=is-style-li_]) > li,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > ol.wp-block-list:not([class*=is-style-li_]) > li {
  margin: 0.5em 0;
  margin-left: 1.4em;
  list-style-type: decimal;
}

.post_style > ol:not([class]) > li ul li,
.post_style > ol:not([class]) > li ol li,
.post_style > ol.wp-block-list:not([class*=is-style-li_]) > li ul li,
.post_style > ol.wp-block-list:not([class*=is-style-li_]) > li ol li,
.post_style .wp-block-columns ol.wp-block-list:not([class*=is-style-li_]) > li ul li,
.post_style .wp-block-columns ol.wp-block-list:not([class*=is-style-li_]) > li ol li,
.post_style [class^=custom-title-accordion-] > ol:not([class*=is-style-li_]) > li ul li,
.post_style [class^=custom-title-accordion-] > ol:not([class*=is-style-li_]) > li ol li,
.post_style [class^=custom-title-accordion-] > ol.wp-block-list:not([class*=is-style-li_]) > li ul li,
.post_style [class^=custom-title-accordion-] > ol.wp-block-list:not([class*=is-style-li_]) > li ol li,
.woocommerce-Tabs-panel--description > ol:not([class]) > li ul li,
.woocommerce-Tabs-panel--description > ol:not([class]) > li ol li,
.woocommerce-Tabs-panel--description > ol.wp-block-list:not([class*=is-style-li_]) > li ul li,
.woocommerce-Tabs-panel--description > ol.wp-block-list:not([class*=is-style-li_]) > li ol li,
.woocommerce-Tabs-panel--description .wp-block-columns ol.wp-block-list:not([class*=is-style-li_]) > li ul li,
.woocommerce-Tabs-panel--description .wp-block-columns ol.wp-block-list:not([class*=is-style-li_]) > li ol li,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > ol:not([class*=is-style-li_]) > li ul li,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > ol:not([class*=is-style-li_]) > li ol li,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > ol.wp-block-list:not([class*=is-style-li_]) > li ul li,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > ol.wp-block-list:not([class*=is-style-li_]) > li ol li,
.woocommerce-product-details__short-description > ol:not([class]) > li ul li,
.woocommerce-product-details__short-description > ol:not([class]) > li ol li,
.woocommerce-product-details__short-description > ol.wp-block-list:not([class*=is-style-li_]) > li ul li,
.woocommerce-product-details__short-description > ol.wp-block-list:not([class*=is-style-li_]) > li ol li,
.woocommerce-product-details__short-description .wp-block-columns ol.wp-block-list:not([class*=is-style-li_]) > li ul li,
.woocommerce-product-details__short-description .wp-block-columns ol.wp-block-list:not([class*=is-style-li_]) > li ol li,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > ol:not([class*=is-style-li_]) > li ul li,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > ol:not([class*=is-style-li_]) > li ol li,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > ol.wp-block-list:not([class*=is-style-li_]) > li ul li,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > ol.wp-block-list:not([class*=is-style-li_]) > li ol li,
.wp-block-wdl-lw-my-parts-embed > ol:not([class]) > li ul li,
.wp-block-wdl-lw-my-parts-embed > ol:not([class]) > li ol li,
.wp-block-wdl-lw-my-parts-embed > ol.wp-block-list:not([class*=is-style-li_]) > li ul li,
.wp-block-wdl-lw-my-parts-embed > ol.wp-block-list:not([class*=is-style-li_]) > li ol li,
.wp-block-wdl-lw-my-parts-embed .wp-block-columns ol.wp-block-list:not([class*=is-style-li_]) > li ul li,
.wp-block-wdl-lw-my-parts-embed .wp-block-columns ol.wp-block-list:not([class*=is-style-li_]) > li ol li,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > ol:not([class*=is-style-li_]) > li ul li,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > ol:not([class*=is-style-li_]) > li ol li,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > ol.wp-block-list:not([class*=is-style-li_]) > li ul li,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > ol.wp-block-list:not([class*=is-style-li_]) > li ol li {
  margin: 0.5em 0;
  margin-left: 1.4em;
  list-style-type: circle;
}

.post_style > ol:not([class]) > li ol li,
.post_style > ol.wp-block-list:not([class*=is-style-li_]) > li ol li,
.post_style .wp-block-columns ol.wp-block-list:not([class*=is-style-li_]) > li ol li,
.post_style [class^=custom-title-accordion-] > ol:not([class*=is-style-li_]) > li ol li,
.post_style [class^=custom-title-accordion-] > ol.wp-block-list:not([class*=is-style-li_]) > li ol li,
.woocommerce-Tabs-panel--description > ol:not([class]) > li ol li,
.woocommerce-Tabs-panel--description > ol.wp-block-list:not([class*=is-style-li_]) > li ol li,
.woocommerce-Tabs-panel--description .wp-block-columns ol.wp-block-list:not([class*=is-style-li_]) > li ol li,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > ol:not([class*=is-style-li_]) > li ol li,
.woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > ol.wp-block-list:not([class*=is-style-li_]) > li ol li,
.woocommerce-product-details__short-description > ol:not([class]) > li ol li,
.woocommerce-product-details__short-description > ol.wp-block-list:not([class*=is-style-li_]) > li ol li,
.woocommerce-product-details__short-description .wp-block-columns ol.wp-block-list:not([class*=is-style-li_]) > li ol li,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > ol:not([class*=is-style-li_]) > li ol li,
.woocommerce-product-details__short-description [class^=custom-title-accordion-] > ol.wp-block-list:not([class*=is-style-li_]) > li ol li,
.wp-block-wdl-lw-my-parts-embed > ol:not([class]) > li ol li,
.wp-block-wdl-lw-my-parts-embed > ol.wp-block-list:not([class*=is-style-li_]) > li ol li,
.wp-block-wdl-lw-my-parts-embed .wp-block-columns ol.wp-block-list:not([class*=is-style-li_]) > li ol li,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > ol:not([class*=is-style-li_]) > li ol li,
.wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > ol.wp-block-list:not([class*=is-style-li_]) > li ol li {
  list-style-type: decimal;
}

.post_style .wp-block-columns.has-background,
.woocommerce-Tabs-panel--description .wp-block-columns.has-background,
.woocommerce-product-details__short-description .wp-block-columns.has-background,
.wp-block-wdl-lw-my-parts-embed .wp-block-columns.has-background {
  margin: 0;
}

.post_style .wp-block-columns.has-background + .last_content,
.woocommerce-Tabs-panel--description .wp-block-columns.has-background + .last_content,
.woocommerce-product-details__short-description .wp-block-columns.has-background + .last_content,
.wp-block-wdl-lw-my-parts-embed .wp-block-columns.has-background + .last_content {
  display: none;
}

.post_style .last_content + .wp-block-columns.has-background,
.woocommerce-Tabs-panel--description .last_content + .wp-block-columns.has-background,
.woocommerce-product-details__short-description .last_content + .wp-block-columns.has-background,
.wp-block-wdl-lw-my-parts-embed .last_content + .wp-block-columns.has-background {
  display: none;
}

.post_style .wp-block-columns ul:not([class*=is-style-li_]),
.post_style .wp-block-columns ol:not([class*=is-style-li_]),
.woocommerce-Tabs-panel--description .wp-block-columns ul:not([class*=is-style-li_]),
.woocommerce-Tabs-panel--description .wp-block-columns ol:not([class*=is-style-li_]),
.woocommerce-product-details__short-description .wp-block-columns ul:not([class*=is-style-li_]),
.woocommerce-product-details__short-description .wp-block-columns ol:not([class*=is-style-li_]),
.wp-block-wdl-lw-my-parts-embed .wp-block-columns ul:not([class*=is-style-li_]),
.wp-block-wdl-lw-my-parts-embed .wp-block-columns ol:not([class*=is-style-li_]) {
  padding-left: 0.3em;
}

.post_style p.has-background,
.post_style .wp-block-list.has-background,
.woocommerce-Tabs-panel--description p.has-background,
.woocommerce-Tabs-panel--description .wp-block-list.has-background,
.woocommerce-product-details__short-description p.has-background,
.woocommerce-product-details__short-description .wp-block-list.has-background,
.wp-block-wdl-lw-my-parts-embed p.has-background,
.wp-block-wdl-lw-my-parts-embed .wp-block-list.has-background {
  padding: 24px 28px;
}

@container (max-width: 500px) {
  .post_style p.has-background,
  .post_style .wp-block-list.has-background,
  .woocommerce-Tabs-panel--description p.has-background,
  .woocommerce-Tabs-panel--description .wp-block-list.has-background,
  .woocommerce-product-details__short-description p.has-background,
  .woocommerce-product-details__short-description .wp-block-list.has-background,
  .wp-block-wdl-lw-my-parts-embed p.has-background,
  .wp-block-wdl-lw-my-parts-embed .wp-block-list.has-background {
    padding: 24px;
    padding-bottom: 20px;
  }
}
.post_style > a,
.woocommerce-Tabs-panel--description > a,
.woocommerce-product-details__short-description > a,
.wp-block-wdl-lw-my-parts-embed > a {
  color: #1a65a3;
}

.post_style > p a,
.woocommerce-Tabs-panel--description > p a,
.woocommerce-product-details__short-description > p a,
.wp-block-wdl-lw-my-parts-embed > p a {
  text-decoration: underline;
}

.post_style > p a:hover,
.woocommerce-Tabs-panel--description > p a:hover,
.woocommerce-product-details__short-description > p a:hover,
.wp-block-wdl-lw-my-parts-embed > p a:hover {
  color: #fa5555;
}

.post_style > figure a,
.woocommerce-Tabs-panel--description > figure a,
.woocommerce-product-details__short-description > figure a,
.wp-block-wdl-lw-my-parts-embed > figure a {
  border: none;
}

.post_style > .wp-block-image,
.woocommerce-Tabs-panel--description > .wp-block-image,
.woocommerce-product-details__short-description > .wp-block-image,
.wp-block-wdl-lw-my-parts-embed > .wp-block-image {
  margin: 1.5em 0;
}

.post_style > .wp-block-button a,
.woocommerce-Tabs-panel--description > .wp-block-button a,
.woocommerce-product-details__short-description > .wp-block-button a,
.wp-block-wdl-lw-my-parts-embed > .wp-block-button a {
  padding: 0.5em 1em;
  font-size: 14px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

.post_style > .wp-block-button a:hover,
.woocommerce-Tabs-panel--description > .wp-block-button a:hover,
.woocommerce-product-details__short-description > .wp-block-button a:hover,
.wp-block-wdl-lw-my-parts-embed > .wp-block-button a:hover {
  opacity: 0.8;
}

.post_style > .wp-block-file a.wp-block-file__button,
.woocommerce-Tabs-panel--description > .wp-block-file a.wp-block-file__button,
.woocommerce-product-details__short-description > .wp-block-file a.wp-block-file__button,
.wp-block-wdl-lw-my-parts-embed > .wp-block-file a.wp-block-file__button {
  color: #fff;
  text-decoration: none;
}

.post_style > .wp-block-file a.wp-block-file__button,
.woocommerce-Tabs-panel--description > .wp-block-file a.wp-block-file__button,
.woocommerce-product-details__short-description > .wp-block-file a.wp-block-file__button,
.wp-block-wdl-lw-my-parts-embed > .wp-block-file a.wp-block-file__button {
  padding: 0.5em 1.5em;
  font-size: 14px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
  background: #ee9f2c;
}

.post_style > .wp-block-file a.wp-block-file__button:hover,
.woocommerce-Tabs-panel--description > .wp-block-file a.wp-block-file__button:hover,
.woocommerce-product-details__short-description > .wp-block-file a.wp-block-file__button:hover,
.wp-block-wdl-lw-my-parts-embed > .wp-block-file a.wp-block-file__button:hover {
  opacity: 0.8;
}

.post_style > p:not([class]) + .wp-block-table,
.woocommerce-Tabs-panel--description > p:not([class]) + .wp-block-table,
.woocommerce-product-details__short-description > p:not([class]) + .wp-block-table,
.wp-block-wdl-lw-my-parts-embed > p:not([class]) + .wp-block-table {
  margin-top: 1.5em;
}

.post_style > table,
.woocommerce-Tabs-panel--description > table,
.woocommerce-product-details__short-description > table,
.wp-block-wdl-lw-my-parts-embed > table {
  border-collapse: collapse;
  width: 100%;
}

.post_style > table th,
.post_style > table td,
.woocommerce-Tabs-panel--description > table th,
.woocommerce-Tabs-panel--description > table td,
.woocommerce-product-details__short-description > table th,
.woocommerce-product-details__short-description > table td,
.wp-block-wdl-lw-my-parts-embed > table th,
.wp-block-wdl-lw-my-parts-embed > table td {
  border: 1px solid #ccc;
  padding: 0.5em;
  text-align: left;
}

.post_style > table th,
.woocommerce-Tabs-panel--description > table th,
.woocommerce-product-details__short-description > table th,
.wp-block-wdl-lw-my-parts-embed > table th {
  background: #f9f9f9;
}

.post_style .wp-block-table,
.woocommerce-Tabs-panel--description .wp-block-table,
.woocommerce-product-details__short-description .wp-block-table,
.wp-block-wdl-lw-my-parts-embed .wp-block-table {
  max-width: 100%;
  overflow: scroll;
  border-bottom: none;
  letter-spacing: 0;
  line-height: 1.4em;
}

.post_style .wp-block-table.is-style-stripes table thead,
.woocommerce-Tabs-panel--description .wp-block-table.is-style-stripes table thead,
.woocommerce-product-details__short-description .wp-block-table.is-style-stripes table thead,
.wp-block-wdl-lw-my-parts-embed .wp-block-table.is-style-stripes table thead {
  position: relative;
  border-left: 1px solid #ee9f2c;
  background: #ee9f2c;
}

.post_style .wp-block-table.is-style-stripes table thead::before,
.woocommerce-Tabs-panel--description .wp-block-table.is-style-stripes table thead::before,
.woocommerce-product-details__short-description .wp-block-table.is-style-stripes table thead::before,
.wp-block-wdl-lw-my-parts-embed .wp-block-table.is-style-stripes table thead::before {
  position: absolute;
  top: 0;
  left: -1px;
  width: calc(100% + 1px);
  height: 100%;
  content: "";
  display: block;
  background: #ee9f2c;
  opacity: 0.1;
}

.post_style .wp-block-table.is-style-stripes table thead th,
.woocommerce-Tabs-panel--description .wp-block-table.is-style-stripes table thead th,
.woocommerce-product-details__short-description .wp-block-table.is-style-stripes table thead th,
.wp-block-wdl-lw-my-parts-embed .wp-block-table.is-style-stripes table thead th {
  padding: 0.6em 0 0.3em 0;
  border: none;
  font-weight: 600;
}

.post_style .wp-block-table.is-style-stripes table thead th:first-of-type,
.woocommerce-Tabs-panel--description .wp-block-table.is-style-stripes table thead th:first-of-type,
.woocommerce-product-details__short-description .wp-block-table.is-style-stripes table thead th:first-of-type,
.wp-block-wdl-lw-my-parts-embed .wp-block-table.is-style-stripes table thead th:first-of-type {
  border: none;
}

.post_style .wp-block-table table,
.woocommerce-Tabs-panel--description .wp-block-table table,
.woocommerce-product-details__short-description .wp-block-table table,
.wp-block-wdl-lw-my-parts-embed .wp-block-table table {
  border-collapse: collapse;
  /* セルの線を重ねる */
  line-height: 1.8em;
}

.post_style .wp-block-table thead,
.woocommerce-Tabs-panel--description .wp-block-table thead,
.woocommerce-product-details__short-description .wp-block-table thead,
.wp-block-wdl-lw-my-parts-embed .wp-block-table thead {
  background: #ee9f2c;
  border-color: #ee9f2c;
  border-bottom: none;
  color: #fff;
}

.post_style .wp-block-table thead th,
.post_style .wp-block-table thead td,
.woocommerce-Tabs-panel--description .wp-block-table thead th,
.woocommerce-Tabs-panel--description .wp-block-table thead td,
.woocommerce-product-details__short-description .wp-block-table thead th,
.woocommerce-product-details__short-description .wp-block-table thead td,
.wp-block-wdl-lw-my-parts-embed .wp-block-table thead th,
.wp-block-wdl-lw-my-parts-embed .wp-block-table thead td {
  border: none;
}

.post_style .wp-block-table thead tr th,
.woocommerce-Tabs-panel--description .wp-block-table thead tr th,
.woocommerce-product-details__short-description .wp-block-table thead tr th,
.wp-block-wdl-lw-my-parts-embed .wp-block-table thead tr th {
  padding: 0.6em;
  font-weight: 500;
  border-right: 1px solid #999;
}

.post_style .wp-block-table thead tr th:first-of-type,
.woocommerce-Tabs-panel--description .wp-block-table thead tr th:first-of-type,
.woocommerce-product-details__short-description .wp-block-table thead tr th:first-of-type,
.wp-block-wdl-lw-my-parts-embed .wp-block-table thead tr th:first-of-type {
  border-left: 1px solid #ee9f2c;
}

.post_style .wp-block-table thead tr th:last-of-type,
.woocommerce-Tabs-panel--description .wp-block-table thead tr th:last-of-type,
.woocommerce-product-details__short-description .wp-block-table thead tr th:last-of-type,
.wp-block-wdl-lw-my-parts-embed .wp-block-table thead tr th:last-of-type {
  border-color: #ee9f2c;
}

.post_style .wp-block-table tbody tr th,
.post_style .wp-block-table tbody tr td,
.woocommerce-Tabs-panel--description .wp-block-table tbody tr th,
.woocommerce-Tabs-panel--description .wp-block-table tbody tr td,
.woocommerce-product-details__short-description .wp-block-table tbody tr th,
.woocommerce-product-details__short-description .wp-block-table tbody tr td,
.wp-block-wdl-lw-my-parts-embed .wp-block-table tbody tr th,
.wp-block-wdl-lw-my-parts-embed .wp-block-table tbody tr td {
  border: solid 1px #ccc;
  /* 枠線指定 */
}

.post_style .wp-block-table thead + tbody tr:first-of-type th,
.post_style .wp-block-table thead + tbody tr:first-of-type td,
.woocommerce-Tabs-panel--description .wp-block-table thead + tbody tr:first-of-type th,
.woocommerce-Tabs-panel--description .wp-block-table thead + tbody tr:first-of-type td,
.woocommerce-product-details__short-description .wp-block-table thead + tbody tr:first-of-type th,
.woocommerce-product-details__short-description .wp-block-table thead + tbody tr:first-of-type td,
.wp-block-wdl-lw-my-parts-embed .wp-block-table thead + tbody tr:first-of-type th,
.wp-block-wdl-lw-my-parts-embed .wp-block-table thead + tbody tr:first-of-type td {
  border-top: none;
}

.post_style .wp-block-table td,
.woocommerce-Tabs-panel--description .wp-block-table td,
.woocommerce-product-details__short-description .wp-block-table td,
.wp-block-wdl-lw-my-parts-embed .wp-block-table td {
  padding: 12px;
}

.post_style .wp-block-table td ul,
.woocommerce-Tabs-panel--description .wp-block-table td ul,
.woocommerce-product-details__short-description .wp-block-table td ul,
.wp-block-wdl-lw-my-parts-embed .wp-block-table td ul {
  margin: 0;
  padding: 0;
  border: none;
}

.post_style .wp-block-table td ul li,
.woocommerce-Tabs-panel--description .wp-block-table td ul li,
.woocommerce-product-details__short-description .wp-block-table td ul li,
.wp-block-wdl-lw-my-parts-embed .wp-block-table td ul li {
  margin: 0;
  padding: 0;
}

.post_style .wp-block-table td ul li::before,
.woocommerce-Tabs-panel--description .wp-block-table td ul li::before,
.woocommerce-product-details__short-description .wp-block-table td ul li::before,
.wp-block-wdl-lw-my-parts-embed .wp-block-table td ul li::before {
  display: none;
}

.post_style > iframe,
.woocommerce-Tabs-panel--description > iframe,
.woocommerce-product-details__short-description > iframe,
.wp-block-wdl-lw-my-parts-embed > iframe {
  max-width: 100% !important;
}

.post_style > .wp-block-preformatted,
.woocommerce-Tabs-panel--description > .wp-block-preformatted,
.woocommerce-product-details__short-description > .wp-block-preformatted,
.wp-block-wdl-lw-my-parts-embed > .wp-block-preformatted {
  white-space: inherit;
}

.post_style input[type=radio],
.post_style input[type=checkbox],
.woocommerce-Tabs-panel--description input[type=radio],
.woocommerce-Tabs-panel--description input[type=checkbox],
.woocommerce-product-details__short-description input[type=radio],
.woocommerce-product-details__short-description input[type=checkbox],
.wp-block-wdl-lw-my-parts-embed input[type=radio],
.wp-block-wdl-lw-my-parts-embed input[type=checkbox] {
  margin-right: 8px;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  /* ラジオボタンとチェックボックスのサイズ調整 */
  cursor: pointer;
}

.post_style input[type=date],
.post_style input[type=time],
.woocommerce-Tabs-panel--description input[type=date],
.woocommerce-Tabs-panel--description input[type=time],
.woocommerce-product-details__short-description input[type=date],
.woocommerce-product-details__short-description input[type=time],
.wp-block-wdl-lw-my-parts-embed input[type=date],
.wp-block-wdl-lw-my-parts-embed input[type=time] {
  padding: 0.6em 0.8em;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  font-size: var(--font-size-post-df_pc);
}

@container (max-width: 800px) {
  .post_style input[type=date],
  .post_style input[type=time],
  .woocommerce-Tabs-panel--description input[type=date],
  .woocommerce-Tabs-panel--description input[type=time],
  .woocommerce-product-details__short-description input[type=date],
  .woocommerce-product-details__short-description input[type=time],
  .wp-block-wdl-lw-my-parts-embed input[type=date],
  .wp-block-wdl-lw-my-parts-embed input[type=time] {
    font-size: var(--font-size-post-df_tb);
  }
}
@container (max-width:600px) {
  .post_style input[type=date],
  .post_style input[type=time],
  .woocommerce-Tabs-panel--description input[type=date],
  .woocommerce-Tabs-panel--description input[type=time],
  .woocommerce-product-details__short-description input[type=date],
  .woocommerce-product-details__short-description input[type=time],
  .wp-block-wdl-lw-my-parts-embed input[type=date],
  .wp-block-wdl-lw-my-parts-embed input[type=time] {
    font-size: var(--font-size-post-df_sp);
  }
}
.post_style input[type=hidden],
.woocommerce-Tabs-panel--description input[type=hidden],
.woocommerce-product-details__short-description input[type=hidden],
.wp-block-wdl-lw-my-parts-embed input[type=hidden] {
  display: none;
}

.post_style input[type=text],
.post_style input[type=email],
.post_style input[type=tel],
.post_style input[type=url],
.post_style input[type=password],
.post_style textarea,
.woocommerce-Tabs-panel--description input[type=text],
.woocommerce-Tabs-panel--description input[type=email],
.woocommerce-Tabs-panel--description input[type=tel],
.woocommerce-Tabs-panel--description input[type=url],
.woocommerce-Tabs-panel--description input[type=password],
.woocommerce-Tabs-panel--description textarea,
.woocommerce-product-details__short-description input[type=text],
.woocommerce-product-details__short-description input[type=email],
.woocommerce-product-details__short-description input[type=tel],
.woocommerce-product-details__short-description input[type=url],
.woocommerce-product-details__short-description input[type=password],
.woocommerce-product-details__short-description textarea,
.wp-block-wdl-lw-my-parts-embed input[type=text],
.wp-block-wdl-lw-my-parts-embed input[type=email],
.wp-block-wdl-lw-my-parts-embed input[type=tel],
.wp-block-wdl-lw-my-parts-embed input[type=url],
.wp-block-wdl-lw-my-parts-embed input[type=password],
.wp-block-wdl-lw-my-parts-embed textarea {
  width: 100%;
  padding: 0.6em 0.8em;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: var(--font-size-post-df_pc);
}

@container (max-width: 800px) {
  .post_style input[type=text],
  .post_style input[type=email],
  .post_style input[type=tel],
  .post_style input[type=url],
  .post_style input[type=password],
  .post_style textarea,
  .woocommerce-Tabs-panel--description input[type=text],
  .woocommerce-Tabs-panel--description input[type=email],
  .woocommerce-Tabs-panel--description input[type=tel],
  .woocommerce-Tabs-panel--description input[type=url],
  .woocommerce-Tabs-panel--description input[type=password],
  .woocommerce-Tabs-panel--description textarea,
  .woocommerce-product-details__short-description input[type=text],
  .woocommerce-product-details__short-description input[type=email],
  .woocommerce-product-details__short-description input[type=tel],
  .woocommerce-product-details__short-description input[type=url],
  .woocommerce-product-details__short-description input[type=password],
  .woocommerce-product-details__short-description textarea,
  .wp-block-wdl-lw-my-parts-embed input[type=text],
  .wp-block-wdl-lw-my-parts-embed input[type=email],
  .wp-block-wdl-lw-my-parts-embed input[type=tel],
  .wp-block-wdl-lw-my-parts-embed input[type=url],
  .wp-block-wdl-lw-my-parts-embed input[type=password],
  .wp-block-wdl-lw-my-parts-embed textarea {
    font-size: var(--font-size-post-df_tb);
  }
}
@container (max-width:600px) {
  .post_style input[type=text],
  .post_style input[type=email],
  .post_style input[type=tel],
  .post_style input[type=url],
  .post_style input[type=password],
  .post_style textarea,
  .woocommerce-Tabs-panel--description input[type=text],
  .woocommerce-Tabs-panel--description input[type=email],
  .woocommerce-Tabs-panel--description input[type=tel],
  .woocommerce-Tabs-panel--description input[type=url],
  .woocommerce-Tabs-panel--description input[type=password],
  .woocommerce-Tabs-panel--description textarea,
  .woocommerce-product-details__short-description input[type=text],
  .woocommerce-product-details__short-description input[type=email],
  .woocommerce-product-details__short-description input[type=tel],
  .woocommerce-product-details__short-description input[type=url],
  .woocommerce-product-details__short-description input[type=password],
  .woocommerce-product-details__short-description textarea,
  .wp-block-wdl-lw-my-parts-embed input[type=text],
  .wp-block-wdl-lw-my-parts-embed input[type=email],
  .wp-block-wdl-lw-my-parts-embed input[type=tel],
  .wp-block-wdl-lw-my-parts-embed input[type=url],
  .wp-block-wdl-lw-my-parts-embed input[type=password],
  .wp-block-wdl-lw-my-parts-embed textarea {
    font-size: var(--font-size-post-df_sp);
  }
}
.post_style input[type=text]:focus,
.post_style input[type=email]:focus,
.post_style input[type=tel]:focus,
.post_style input[type=url]:focus,
.post_style input[type=password]:focus,
.post_style textarea:focus,
.woocommerce-Tabs-panel--description input[type=text]:focus,
.woocommerce-Tabs-panel--description input[type=email]:focus,
.woocommerce-Tabs-panel--description input[type=tel]:focus,
.woocommerce-Tabs-panel--description input[type=url]:focus,
.woocommerce-Tabs-panel--description input[type=password]:focus,
.woocommerce-Tabs-panel--description textarea:focus,
.woocommerce-product-details__short-description input[type=text]:focus,
.woocommerce-product-details__short-description input[type=email]:focus,
.woocommerce-product-details__short-description input[type=tel]:focus,
.woocommerce-product-details__short-description input[type=url]:focus,
.woocommerce-product-details__short-description input[type=password]:focus,
.woocommerce-product-details__short-description textarea:focus,
.wp-block-wdl-lw-my-parts-embed input[type=text]:focus,
.wp-block-wdl-lw-my-parts-embed input[type=email]:focus,
.wp-block-wdl-lw-my-parts-embed input[type=tel]:focus,
.wp-block-wdl-lw-my-parts-embed input[type=url]:focus,
.wp-block-wdl-lw-my-parts-embed input[type=password]:focus,
.wp-block-wdl-lw-my-parts-embed textarea:focus {
  border-color: #ee9f2c;
  outline-color: #ee9f2c;
}

.post_style input[type=text]::-webkit-input-placeholder, .post_style input[type=email]::-webkit-input-placeholder, .post_style input[type=tel]::-webkit-input-placeholder, .post_style input[type=url]::-webkit-input-placeholder, .post_style input[type=password]::-webkit-input-placeholder, .post_style textarea::-webkit-input-placeholder, .woocommerce-Tabs-panel--description input[type=text]::-webkit-input-placeholder, .woocommerce-Tabs-panel--description input[type=email]::-webkit-input-placeholder, .woocommerce-Tabs-panel--description input[type=tel]::-webkit-input-placeholder, .woocommerce-Tabs-panel--description input[type=url]::-webkit-input-placeholder, .woocommerce-Tabs-panel--description input[type=password]::-webkit-input-placeholder, .woocommerce-Tabs-panel--description textarea::-webkit-input-placeholder, .woocommerce-product-details__short-description input[type=text]::-webkit-input-placeholder, .woocommerce-product-details__short-description input[type=email]::-webkit-input-placeholder, .woocommerce-product-details__short-description input[type=tel]::-webkit-input-placeholder, .woocommerce-product-details__short-description input[type=url]::-webkit-input-placeholder, .woocommerce-product-details__short-description input[type=password]::-webkit-input-placeholder, .woocommerce-product-details__short-description textarea::-webkit-input-placeholder, .wp-block-wdl-lw-my-parts-embed input[type=text]::-webkit-input-placeholder, .wp-block-wdl-lw-my-parts-embed input[type=email]::-webkit-input-placeholder, .wp-block-wdl-lw-my-parts-embed input[type=tel]::-webkit-input-placeholder, .wp-block-wdl-lw-my-parts-embed input[type=url]::-webkit-input-placeholder, .wp-block-wdl-lw-my-parts-embed input[type=password]::-webkit-input-placeholder, .wp-block-wdl-lw-my-parts-embed textarea::-webkit-input-placeholder {
  color: #aaa;
}

.post_style input[type=text]::-moz-placeholder, .post_style input[type=email]::-moz-placeholder, .post_style input[type=tel]::-moz-placeholder, .post_style input[type=url]::-moz-placeholder, .post_style input[type=password]::-moz-placeholder, .post_style textarea::-moz-placeholder, .woocommerce-Tabs-panel--description input[type=text]::-moz-placeholder, .woocommerce-Tabs-panel--description input[type=email]::-moz-placeholder, .woocommerce-Tabs-panel--description input[type=tel]::-moz-placeholder, .woocommerce-Tabs-panel--description input[type=url]::-moz-placeholder, .woocommerce-Tabs-panel--description input[type=password]::-moz-placeholder, .woocommerce-Tabs-panel--description textarea::-moz-placeholder, .woocommerce-product-details__short-description input[type=text]::-moz-placeholder, .woocommerce-product-details__short-description input[type=email]::-moz-placeholder, .woocommerce-product-details__short-description input[type=tel]::-moz-placeholder, .woocommerce-product-details__short-description input[type=url]::-moz-placeholder, .woocommerce-product-details__short-description input[type=password]::-moz-placeholder, .woocommerce-product-details__short-description textarea::-moz-placeholder, .wp-block-wdl-lw-my-parts-embed input[type=text]::-moz-placeholder, .wp-block-wdl-lw-my-parts-embed input[type=email]::-moz-placeholder, .wp-block-wdl-lw-my-parts-embed input[type=tel]::-moz-placeholder, .wp-block-wdl-lw-my-parts-embed input[type=url]::-moz-placeholder, .wp-block-wdl-lw-my-parts-embed input[type=password]::-moz-placeholder, .wp-block-wdl-lw-my-parts-embed textarea::-moz-placeholder {
  color: #aaa;
}

.post_style input[type=text]:-ms-input-placeholder, .post_style input[type=email]:-ms-input-placeholder, .post_style input[type=tel]:-ms-input-placeholder, .post_style input[type=url]:-ms-input-placeholder, .post_style input[type=password]:-ms-input-placeholder, .post_style textarea:-ms-input-placeholder, .woocommerce-Tabs-panel--description input[type=text]:-ms-input-placeholder, .woocommerce-Tabs-panel--description input[type=email]:-ms-input-placeholder, .woocommerce-Tabs-panel--description input[type=tel]:-ms-input-placeholder, .woocommerce-Tabs-panel--description input[type=url]:-ms-input-placeholder, .woocommerce-Tabs-panel--description input[type=password]:-ms-input-placeholder, .woocommerce-Tabs-panel--description textarea:-ms-input-placeholder, .woocommerce-product-details__short-description input[type=text]:-ms-input-placeholder, .woocommerce-product-details__short-description input[type=email]:-ms-input-placeholder, .woocommerce-product-details__short-description input[type=tel]:-ms-input-placeholder, .woocommerce-product-details__short-description input[type=url]:-ms-input-placeholder, .woocommerce-product-details__short-description input[type=password]:-ms-input-placeholder, .woocommerce-product-details__short-description textarea:-ms-input-placeholder, .wp-block-wdl-lw-my-parts-embed input[type=text]:-ms-input-placeholder, .wp-block-wdl-lw-my-parts-embed input[type=email]:-ms-input-placeholder, .wp-block-wdl-lw-my-parts-embed input[type=tel]:-ms-input-placeholder, .wp-block-wdl-lw-my-parts-embed input[type=url]:-ms-input-placeholder, .wp-block-wdl-lw-my-parts-embed input[type=password]:-ms-input-placeholder, .wp-block-wdl-lw-my-parts-embed textarea:-ms-input-placeholder {
  color: #aaa;
}

.post_style input[type=text]::-ms-input-placeholder, .post_style input[type=email]::-ms-input-placeholder, .post_style input[type=tel]::-ms-input-placeholder, .post_style input[type=url]::-ms-input-placeholder, .post_style input[type=password]::-ms-input-placeholder, .post_style textarea::-ms-input-placeholder, .woocommerce-Tabs-panel--description input[type=text]::-ms-input-placeholder, .woocommerce-Tabs-panel--description input[type=email]::-ms-input-placeholder, .woocommerce-Tabs-panel--description input[type=tel]::-ms-input-placeholder, .woocommerce-Tabs-panel--description input[type=url]::-ms-input-placeholder, .woocommerce-Tabs-panel--description input[type=password]::-ms-input-placeholder, .woocommerce-Tabs-panel--description textarea::-ms-input-placeholder, .woocommerce-product-details__short-description input[type=text]::-ms-input-placeholder, .woocommerce-product-details__short-description input[type=email]::-ms-input-placeholder, .woocommerce-product-details__short-description input[type=tel]::-ms-input-placeholder, .woocommerce-product-details__short-description input[type=url]::-ms-input-placeholder, .woocommerce-product-details__short-description input[type=password]::-ms-input-placeholder, .woocommerce-product-details__short-description textarea::-ms-input-placeholder, .wp-block-wdl-lw-my-parts-embed input[type=text]::-ms-input-placeholder, .wp-block-wdl-lw-my-parts-embed input[type=email]::-ms-input-placeholder, .wp-block-wdl-lw-my-parts-embed input[type=tel]::-ms-input-placeholder, .wp-block-wdl-lw-my-parts-embed input[type=url]::-ms-input-placeholder, .wp-block-wdl-lw-my-parts-embed input[type=password]::-ms-input-placeholder, .wp-block-wdl-lw-my-parts-embed textarea::-ms-input-placeholder {
  color: #aaa;
}

.post_style input[type=text]::placeholder,
.post_style input[type=email]::placeholder,
.post_style input[type=tel]::placeholder,
.post_style input[type=url]::placeholder,
.post_style input[type=password]::placeholder,
.post_style textarea::placeholder,
.woocommerce-Tabs-panel--description input[type=text]::placeholder,
.woocommerce-Tabs-panel--description input[type=email]::placeholder,
.woocommerce-Tabs-panel--description input[type=tel]::placeholder,
.woocommerce-Tabs-panel--description input[type=url]::placeholder,
.woocommerce-Tabs-panel--description input[type=password]::placeholder,
.woocommerce-Tabs-panel--description textarea::placeholder,
.woocommerce-product-details__short-description input[type=text]::placeholder,
.woocommerce-product-details__short-description input[type=email]::placeholder,
.woocommerce-product-details__short-description input[type=tel]::placeholder,
.woocommerce-product-details__short-description input[type=url]::placeholder,
.woocommerce-product-details__short-description input[type=password]::placeholder,
.woocommerce-product-details__short-description textarea::placeholder,
.wp-block-wdl-lw-my-parts-embed input[type=text]::placeholder,
.wp-block-wdl-lw-my-parts-embed input[type=email]::placeholder,
.wp-block-wdl-lw-my-parts-embed input[type=tel]::placeholder,
.wp-block-wdl-lw-my-parts-embed input[type=url]::placeholder,
.wp-block-wdl-lw-my-parts-embed input[type=password]::placeholder,
.wp-block-wdl-lw-my-parts-embed textarea::placeholder {
  color: #aaa;
}

.post_style select,
.woocommerce-Tabs-panel--description select,
.woocommerce-product-details__short-description select,
.wp-block-wdl-lw-my-parts-embed select {
  width: 100%;
  padding: 0.6em 0.5em;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: var(--font-size-post-df_pc);
}

@container (max-width: 800px) {
  .post_style select,
  .woocommerce-Tabs-panel--description select,
  .woocommerce-product-details__short-description select,
  .wp-block-wdl-lw-my-parts-embed select {
    font-size: var(--font-size-post-df_tb);
  }
}
@container (max-width:600px) {
  .post_style select,
  .woocommerce-Tabs-panel--description select,
  .woocommerce-product-details__short-description select,
  .wp-block-wdl-lw-my-parts-embed select {
    font-size: var(--font-size-post-df_sp);
  }
}
.post_style select:focus,
.woocommerce-Tabs-panel--description select:focus,
.woocommerce-product-details__short-description select:focus,
.wp-block-wdl-lw-my-parts-embed select:focus {
  border-color: #ee9f2c;
  outline-color: #ee9f2c;
}

.post_style input[type=submit],
.woocommerce-Tabs-panel--description input[type=submit],
.woocommerce-product-details__short-description input[type=submit],
.wp-block-wdl-lw-my-parts-embed input[type=submit] {
  background-color: var(--color-accent);
  padding: 1.2em 1.2em;
  width: 100%;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  color: white;
  text-align: center;
  font-size: calc(var(--font-size-post-df_pc) + 2px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@container (max-width: 800px) {
  .post_style input[type=submit],
  .woocommerce-Tabs-panel--description input[type=submit],
  .woocommerce-product-details__short-description input[type=submit],
  .wp-block-wdl-lw-my-parts-embed input[type=submit] {
    font-size: calc(var(--font-size-post-df_tb) + 2px);
  }
}
@container (max-width:600px) {
  .post_style input[type=submit],
  .woocommerce-Tabs-panel--description input[type=submit],
  .woocommerce-product-details__short-description input[type=submit],
  .wp-block-wdl-lw-my-parts-embed input[type=submit] {
    font-size: calc(var(--font-size-post-df_sp) + 2px);
  }
}
.post_style input[type=submit]:hover,
.woocommerce-Tabs-panel--description input[type=submit]:hover,
.woocommerce-product-details__short-description input[type=submit]:hover,
.wp-block-wdl-lw-my-parts-embed input[type=submit]:hover {
  opacity: 0.8;
}

.wpcf7-form .wpcf7-radio {
  margin-left: -1em;
  display: block;
}

.wpcf7-form .wpcf7-radio .wpcf7-list-item {
  margin: 0.5em 0 0.5em 1em;
}

.wpcf7-form .wpcf7-submit {
  margin-top: 1.5em;
}

.lw_post_nav {
  border-top: 1px solid #eee;
  padding: 0 26px;
}

@container (max-width: 800px) {
  .lw_post_nav {
    padding: 0 24px;
  }
}
@container (max-width:500px) {
  .lw_post_nav {
    padding: 0 16px;
  }
}
.lw_post_nav .lw_post_nav_list {
  background: #eee;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
}
.lw_post_nav .lw_post_nav_list.prev_only {
  background: none;
}

.lw_post_nav .lw_post_nav_list .post_nav_prev a,
.lw_post_nav .lw_post_nav_list .post_nav_next a {
  position: relative;
  padding: 24px;
  height: 100%;
  min-height: 104px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-black);
  text-decoration: none;
  line-height: 1.6em;
  background: #fff;
}

@container (max-width: 600px) {
  .lw_post_nav .lw_post_nav_list .post_nav_prev a,
  .lw_post_nav .lw_post_nav_list .post_nav_next a {
    padding: 16px 24px;
    font-size: 0.9em;
  }
}
.lw_post_nav .lw_post_nav_list .post_nav_prev a svg,
.lw_post_nav .lw_post_nav_list .post_nav_next a svg {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1em;
  height: 1em;
}

.lw_post_nav .lw_post_nav_list .post_nav_prev a:hover,
.lw_post_nav .lw_post_nav_list .post_nav_next a:hover {
  color: #ee9f2c;
}

.lw_post_nav .lw_post_nav_list .post_nav_prev a:hover svg,
.lw_post_nav .lw_post_nav_list .post_nav_next a:hover svg {
  fill: #ee9f2c;
}

.lw_post_nav .lw_post_nav_list .post_nav_prev a {
  padding-left: 40px;
}
.lw_post_nav .lw_post_nav_list .post_nav_prev a svg {
  left: 4px;
}
.lw_post_nav .lw_post_nav_list .post_nav_next a {
  padding-right: 40px;
  text-align: right;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.lw_post_nav .lw_post_nav_list .post_nav_next a svg {
  right: 4px;
}
.faq__item {
  -webkit-margin-before: clamp(0.9375rem, 0.737rem + 0.774vw, 1.25rem);
          margin-block-start: clamp(0.9375rem, 0.737rem + 0.774vw, 1.25rem);
  border-radius: 10px;
  background: #FFF;
}
.faq__item[open] .js-summary {
  border-radius: 10px 10px 0px 0px;
}
.faq__item[open] .js-summary::after {
  background: url(../images/faq-minus.webp) no-repeat center center/contain;
}
.faq__item .question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(0.9375rem, 0.217rem + 2.786vw, 2.0625rem);
     -moz-column-gap: clamp(0.9375rem, 0.217rem + 2.786vw, 2.0625rem);
          column-gap: clamp(0.9375rem, 0.217rem + 2.786vw, 2.0625rem);
  background: #E87619;
  padding: clamp(1.25rem, 0.649rem + 2.322vw, 2.1875rem) clamp(0.625rem, -2.179rem + 10.836vw, 5rem);
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}
.faq__item .question .q-label {
  font-size: 1.875rem;
  font-weight: 700;
  color: #FFF;
}
.faq__item .question .q-text {
  width: clamp(19.0625rem, 0.838rem + 70.433vw, 47.5rem);
  font-size: clamp(1rem, 0.84rem + 0.619vw, 1.25rem);
  font-weight: 700;
  line-height: 1.56;
  color: #fff;
}
.faq__item .question::after {
  content: "";
  position: absolute;
  width: clamp(0.875rem, 0.434rem + 1.703vw, 1.5625rem);
  height: auto;
  aspect-ratio: 1/1;
  background: url(../images/faq-plus.webp) no-repeat center center/contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: clamp(0.625rem, -1.979rem + 10.062vw, 4.6875rem);
}
.faq__item .answer .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: clamp(0.9375rem, 0.136rem + 3.096vw, 2.1875rem);
     -moz-column-gap: clamp(0.9375rem, 0.136rem + 3.096vw, 2.1875rem);
          column-gap: clamp(0.9375rem, 0.136rem + 3.096vw, 2.1875rem);
  padding: clamp(1.25rem, 1.05rem + 0.774vw, 1.5625rem) clamp(0.625rem, -2.179rem + 10.836vw, 5rem);
  min-height: 150px;
}
.faq__item .answer .content .a-label {
  font-size: 1.875rem;
  font-weight: 700;
  color: #E87619;
}
.faq__item .answer .content .a-text {
  font-size: clamp(0.9375rem, 0.897rem + 0.155vw, 1rem);
  line-height: 1.5;
  width: clamp(20rem, 1.375rem + 71.981vw, 49.0625rem);
}

.intro__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: clamp(3.125rem, 2.124rem + 3.87vw, 4.6875rem);
     -moz-column-gap: clamp(3.125rem, 2.124rem + 3.87vw, 4.6875rem);
          column-gap: clamp(3.125rem, 2.124rem + 3.87vw, 4.6875rem);
  padding: 1.25rem;
  border-radius: 10px;
  background: #E87619;
}
.intro__profile .profile__img {
  width: clamp(10rem, 5.995rem + 15.48vw, 16.25rem);
}
.intro__profile .profile__wrap {
  width: calc(100% - clamp(13.125rem, 8.118rem + 19.35vw, 20.9375rem));
  max-width: 230px;
}
.intro__profile .profile__wrap .post {
  position: relative;
  color: #FFF;
  font-size: clamp(0.875rem, 0.795rem + 0.31vw, 1rem);
  letter-spacing: normal;
}
.intro__profile .profile__wrap .post::before {
  content: "";
  position: absolute;
  width: 0.9375rem;
  height: 0.125rem;
  background: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -1.25rem;
}
.intro__profile .profile__wrap .name {
  color: #FFF;
  font-size: clamp(1.6875rem, 0.846rem + 3.251vw, 3rem);
  letter-spacing: normal;
}

.intro__title {
  font-size: clamp(1.5rem, 1.26rem + 0.929vw, 1.875rem);
  font-weight: 700;
  color: #EA6819;
  text-align: center;
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
}

.intro__message {
  padding: clamp(1.875rem, 1.074rem + 3.096vw, 3.125rem) clamp(0.625rem, -1.979rem + 10.062vw, 4.6875rem);
  border-radius: 10px;
  border: 2px solid #EA6819;
  background: #FFF;
  -webkit-margin-before: clamp(1.25rem, 0.048rem + 4.644vw, 3.125rem);
          margin-block-start: clamp(1.25rem, 0.048rem + 4.644vw, 3.125rem);
}
.intro__message p {
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
}

.intro__actual {
  max-width: 850px;
  margin-inline: auto;
  -webkit-margin-before: clamp(1.875rem, -0.929rem + 10.836vw, 6.25rem);
          margin-block-start: clamp(1.875rem, -0.929rem + 10.836vw, 6.25rem);
}

.actual__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
}
.actual__title::before {
  content: "";
  width: 0.9375rem;
  height: 0.1875rem;
  background: #EA6819;
}
.actual__title::after {
  content: "";
  width: 0.9375rem;
  height: 0.1875rem;
  background: #EA6819;
}

.actual__img {
  margin-block: clamp(1.875rem, -0.248rem + 8.204vw, 5.1875rem) 1.25rem;
}

.actual__text {
  padding: clamp(1.25rem, 1.05rem + 0.774vw, 1.5625rem) clamp(0.625rem, -0.977rem + 6.192vw, 3.125rem);
  border-radius: clamp(0.625rem, 0.425rem + 0.774vw, 0.9375rem);
  border: 2px solid #EA6819;
  background: #FFF;
}

.intro__info {
  -webkit-margin-before: clamp(1.875rem, 1.234rem + 2.477vw, 2.875rem);
          margin-block-start: clamp(1.875rem, 1.234rem + 2.477vw, 2.875rem);
}

.info__title {
  font-size: clamp(1.25rem, 1.09rem + 0.619vw, 1.5rem);
  font-weight: 700;
  color: #EA6819;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
}
.info__title::before {
  content: "";
  width: clamp(1.25rem, 0.849rem + 1.548vw, 1.875rem);
  height: 0.1875rem;
  background: #EA6819;
}

.character {
  text-align: center;
}
.character img {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  width: clamp(10.3125rem, 7.389rem + 11.3vw, 14.875rem);
}

.sns {
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}

.sns__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.875rem;
     -moz-column-gap: 1.875rem;
          column-gap: 1.875rem;
  -webkit-margin-before: clamp(1.5625rem, 1.362rem + 0.774vw, 1.875rem);
          margin-block-start: clamp(1.5625rem, 1.362rem + 0.774vw, 1.875rem);
}
.sns__wrap a {
  display: inline-block;
  width: clamp(2.1875rem, 1.587rem + 2.322vw, 3.125rem);
}
.sns__wrap a:last-of-type {
  width: clamp(2.6875rem, 2.007rem + 2.632vw, 3.75rem);
}

.subtitle {
  color: #EA6819;
  font-size: clamp(1.5rem, 1.059rem + 1.703vw, 2.1875rem);
  font-weight: 700;
  margin-block: clamp(1.25rem, 0.849rem + 1.548vw, 1.875rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
}
.subtitle::before {
  content: "";
  width: 0.9375rem;
  height: 0.1875rem;
  background: #EA6819;
}
.subtitle::after {
  content: "";
  width: 0.9375rem;
  height: 0.1875rem;
  background: #EA6819;
}

.p-service__paid {
  -webkit-margin-before: clamp(3.125rem, 1.523rem + 6.192vw, 5.625rem);
          margin-block-start: clamp(3.125rem, 1.523rem + 6.192vw, 5.625rem);
}

.p-service__item {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  border-radius: 10px;
  background: #FFF;
  row-gap: 1.25rem;
  -webkit-column-gap: 1.75rem;
     -moz-column-gap: 1.75rem;
          column-gap: 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5rem 0.625rem;
}

.p-service__img {
  width: clamp(6.25rem, -0.159rem + 24.768vw, 16.25rem);
}
.p-service__img img {
  width: 100%;
}

.p-service__body {
  display: contents;
}

.p-service__title {
  font-size: clamp(1.25rem, 0.97rem + 1.084vw, 1.6875rem);
  width: clamp(12.5rem, -1.719rem + 54.954vw, 34.6875rem);
  color: #F16D1D;
  font-weight: 700;
  line-height: 1.25;
}

.p-service__recommend {
  width: 100%;
  padding-block: clamp(0.625rem, 0.465rem + 0.619vw, 0.875rem);
  border-radius: 10px;
  border: 2px solid #EA6819;
}
.p-service__recommend p {
  font-size: 1.125rem;
  font-weight: 700;
  color: #EA6819;
  text-align: center;
  -webkit-margin-after: 0.5rem;
          margin-block-end: 0.5rem;
}
.p-service__recommend .recommend__list {
  font-size: clamp(0.875rem, 0.795rem + 0.31vw, 1rem);
  letter-spacing: normal;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  line-height: 1.4286;
}

.p-service__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  border-radius: 46px;
  border: 1px solid #EA6819;
  font-size: clamp(0.9375rem, 0.897rem + 0.155vw, 1rem);
  color: #EA6819;
  letter-spacing: normal;
  padding-inline: clamp(0.9375rem, 0.497rem + 1.703vw, 1.625rem) clamp(0.5rem, 0.26rem + 0.929vw, 0.875rem);
}
.p-service__link svg {
  width: clamp(0.5625rem, 0.442rem + 0.464vw, 0.75rem);
  vertical-align: baseline;
}

.top-fv {
  -webkit-margin-before: 3.75rem;
          margin-block-start: 3.75rem;
  max-width: 1440px;
  margin-inline: auto;
  background: #FAF9F7;
  position: relative;
  -webkit-padding-after: clamp(1.875rem, 1.074rem + 3.096vw, 3.125rem);
          padding-block-end: clamp(1.875rem, 1.074rem + 3.096vw, 3.125rem);
}
.top-fv::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background: #FAF9F7;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.top-fv__title {
  -webkit-margin-before: -1rem;
          margin-block-start: -1rem;
}
.top-fv__img {
  -webkit-margin-before: -4.25rem;
          margin-block-start: -4.25rem;
}

.section__title {
  font-size: clamp(2.25rem, 1.541rem + 3.027vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(70%, transparent), color-stop(70%, #EE9F2C), color-stop(90%, #EE9F2C), color-stop(90%, transparent), to(transparent));
  background: linear-gradient(transparent, transparent 70%, #EE9F2C 70%, #EE9F2C 90%, transparent 90%, transparent);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  -webkit-margin-after: clamp(1.625rem, 0.944rem + 2.632vw, 2.6875rem);
          margin-block-end: clamp(1.625rem, 0.944rem + 2.632vw, 2.6875rem);
}
.section__title span {
  display: inline-block;
  width: clamp(2.625rem, 1.904rem + 2.786vw, 3.75rem);
}
.section__title span img {
  vertical-align: bottom;
}

.top-about {
  background: #fff;
  -webkit-padding-after: clamp(1.875rem, 0.994rem + 3.406vw, 3.25rem);
          padding-block-end: clamp(1.875rem, 0.994rem + 3.406vw, 3.25rem);
}
.top-about .l-inner {
  position: relative;
}
.top-about__wrap {
  border-radius: 5px;
  background: #F1EEE7;
  padding-block: clamp(3.5rem, 2.739rem + 2.941vw, 4.6875rem) clamp(1.6875rem, 0.766rem + 3.56vw, 3.125rem);
  padding-inline: 0.625rem;
}
.top-about__subtitle {
  font-size: clamp(1.25rem, 0.93rem + 1.238vw, 1.75rem);
  font-weight: 700;
  color: #EA6819;
  line-height: 1.35;
  text-align: center;
}
.top-about__text p {
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
}
.top-about__text b {
  color: #EA6819;
}
.top-about__img {
  display: block;
  width: calc(100% - 30px);
  margin-inline: auto;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

.top-service {
  padding-block: clamp(3.5rem, 2.739rem + 2.941vw, 4.6875rem) clamp(1.6875rem, 0.766rem + 3.56vw, 3.125rem);
}
.top-service .content__title {
  color: #EA6819;
  font-size: clamp(1.5rem, 1.26rem + 0.929vw, 1.875rem);
  font-weight: 700;
  -webkit-margin-before: clamp(1.875rem, 1.074rem + 3.096vw, 3.125rem);
          margin-block-start: clamp(1.875rem, 1.074rem + 3.096vw, 3.125rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
}
.top-service .content__title::before {
  content: "";
  width: 0.9375rem;
  height: 0.1875rem;
  background: #EA6819;
}
.top-service .content__title::after {
  content: "";
  width: 0.9375rem;
  height: 0.1875rem;
  background: #EA6819;
}
.top-service .top-service__content .swiper-button-prev,
.top-service .top-service__content .swiper-button-next {
  background: #EE9F2C;
}
.top-service .top-service__content .p-service__img::after {
  background: #EE9F2C;
}
.top-service .top-service__paid .swiper-button-prev,
.top-service .top-service__paid .swiper-button-next {
  background: #EA6819;
}
.top-service .top-service__paid .p-service__img::after {
  background: #EA6819;
}
.top-service .swiper-container {
  position: relative;
}
.top-service .p-service__item {
  padding-block: clamp(0.8125rem, 0.332rem + 1.858vw, 1.5625rem);
}
.top-service .p-service__img {
  text-align: center;
  position: relative;
  z-index: 0;
}
.top-service .p-service__img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
.top-service .p-service__img img {
  width: clamp(6.25rem, 1.644rem + 17.802vw, 13.4375rem);
}
.top-service .p-service__title {
  color: #1a1a1a;
}
.top-service .swiper-button-prev,
.top-service .swiper-button-next {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  width: clamp(1.0625rem, 0.542rem + 2.012vw, 1.875rem);
  height: clamp(9.375rem, 7.372rem + 7.74vw, 12.5rem);
  padding-inline: 0.1875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.top-service .swiper-button-prev::after,
.top-service .swiper-button-next::after {
  content: none;
}
.top-service .top-free-button-prev,
.top-service .top-paid-button-prev {
  right: 100%;
  left: auto;
  border-radius: 10px 0 0 10px;
}
.top-service .top-free-button-next,
.top-service .top-paid-button-next {
  left: 100%;
  right: auto;
  border-radius: 0 10px 10px 0;
}

.read__link {
  text-align: right;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}
.read__link a {
  display: inline-block;
  font-size: clamp(1.125rem, 0.885rem + 0.929vw, 1.5rem);
  -webkit-padding-end: 1.125rem;
          padding-inline-end: 1.125rem;
}
.read__link a span {
  display: block;
  -webkit-margin-end: -1.125rem;
          margin-inline-end: -1.125rem;
  width: clamp(7.5rem, 6.138rem + 5.263vw, 9.625rem);
}

.top-voice {
  padding-block: clamp(5.3125rem, 3.71rem + 6.192vw, 7.8125rem) 3.125rem;
  background: #FAF9F7;
}
.top-voice .top-voice__item {
  -webkit-margin-before: clamp(1.875rem, 1.074rem + 3.096vw, 3.125rem);
          margin-block-start: clamp(1.875rem, 1.074rem + 3.096vw, 3.125rem);
}
.top-voice .item__text {
  border-radius: 10px;
  border: 3px solid #EA6819;
  background: #FFF;
  padding: clamp(1.25rem, 1.17rem + 0.31vw, 1.375rem) 1.25rem;
}
.top-voice .item__img {
  text-align: center;
  -webkit-margin-before: 1.4375rem;
          margin-block-start: 1.4375rem;
}
.top-voice .item__img .img {
  position: relative;
  z-index: 0;
  width: clamp(9.375rem, 7.372rem + 7.74vw, 12.5rem);
  margin-inline: auto;
}
.top-voice .item__img .title {
  font-size: clamp(1rem, 0.92rem + 0.31vw, 1.125rem);
  font-weight: 700;
  width: 200px;
  margin-inline: auto;
}

.top-blog {
  padding-block: clamp(3.5rem, 2.739rem + 2.941vw, 4.6875rem) clamp(1.6875rem, 0.766rem + 3.56vw, 3.125rem);
}
.top-blog__wrap {
  position: relative;
}
.top-blog__swiper-container {
  overflow: visible;
  margin-inline: 10%;
}
.top-blog .sidebar-recs__swiper-button-wrapper {
  top: 50%;
  left: 50%;
  right: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
}
.top-blog .sidebar-recs__swiper-button-wrapper .sidebar-recs__swiper-button-prev,
.top-blog .sidebar-recs__swiper-button-wrapper .sidebar-recs__swiper-button-next {
  width: 2.5rem;
}

.top-faq {
  padding-block: clamp(3.5rem, 2.739rem + 2.941vw, 4.6875rem) clamp(1.6875rem, 0.766rem + 3.56vw, 3.125rem);
}
.top-faq .question {
  cursor: auto;
  border-radius: clamp(0.625rem, 0.425rem + 0.774vw, 0.9375rem) clamp(0.625rem, 0.425rem + 0.774vw, 0.9375rem) 0px 0px;
  min-height: 100px;
  padding: 1.25rem clamp(0.625rem, 0.144rem + 1.858vw, 1.375rem);
}
.top-faq .question::after {
  content: none;
}
.top-faq .answer {
  min-height: 200px;
}
.top-faq .answer .content {
  padding: 1.25rem clamp(0.625rem, 0.144rem + 1.858vw, 1.375rem);
}
.top-profile {
  padding-block: clamp(5.3125rem, 3.71rem + 6.192vw, 7.8125rem) clamp(3.75rem, 2.148rem + 6.192vw, 6.25rem);
  background: #FAF9F7;
  position: relative;
  z-index: 0;
}
.top-profile .top-profile__profile {
  background: #E87619;
  max-width: 700px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: clamp(3.75rem, 2.148rem + 6.192vw, 6.25rem);
     -moz-column-gap: clamp(3.75rem, 2.148rem + 6.192vw, 6.25rem);
          column-gap: clamp(3.75rem, 2.148rem + 6.192vw, 6.25rem);
  padding-block: 1.875rem;
}
.top-profile .profile__img {
  width: clamp(10rem, 4.392rem + 21.672vw, 18.75rem);
}
.top-profile .post {
  font-size: clamp(0.875rem, 0.795rem + 0.31vw, 1rem);
  font-weight: 700;
  color: #FFF;
  position: relative;
}
.top-profile .post::before {
  content: "";
  position: absolute;
  width: clamp(0.9375rem, 0.737rem + 0.774vw, 1.25rem);
  height: 2px;
  background: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -25px;
}
.top-profile .name {
  font-size: clamp(1.6875rem, 1.167rem + 2.012vw, 2.5rem);
  color: #FFF;
}
.top-profile .profile__sns {
  -webkit-margin-before: clamp(1.25rem, 0.849rem + 1.548vw, 1.875rem);
          margin-block-start: clamp(1.25rem, 0.849rem + 1.548vw, 1.875rem);
}
.top-profile .top-sns__title {
  font-size: clamp(0.875rem, 0.795rem + 0.31vw, 1rem);
  font-weight: 700;
  color: #FFF;
  position: relative;
}
.top-profile .top-sns__title::before {
  content: "";
  position: absolute;
  width: clamp(0.9375rem, 0.737rem + 0.774vw, 1.25rem);
  height: 2px;
  background: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -25px;
}
.top-profile .top-sns__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.5625rem;
     -moz-column-gap: 1.5625rem;
          column-gap: 1.5625rem;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}
.top-profile .top-sns__wrap a {
  display: inline-block;
  width: 1.5625rem;
}
.top-profile .top-sns__wrap a:last-of-type {
  width: 1.875rem;
}
.top-profile .top-sns__wrap a img {
  vertical-align: middle;
}
.top-profile .content__title {
  color: #EA6819;
  font-size: clamp(1.5rem, 1.26rem + 0.929vw, 1.875rem);
  font-weight: 700;
  -webkit-margin-before: clamp(1.875rem, 1.074rem + 3.096vw, 3.125rem);
          margin-block-start: clamp(1.875rem, 1.074rem + 3.096vw, 3.125rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
}
.top-profile .content__title::before {
  content: "";
  width: 0.9375rem;
  height: 0.1875rem;
  background: #EA6819;
}
.top-profile .content__title::after {
  content: "";
  width: 0.9375rem;
  height: 0.1875rem;
  background: #EA6819;
}
.top-profile .profile__actual {
  -webkit-margin-before: clamp(1.25rem, 0.849rem + 1.548vw, 1.875rem);
          margin-block-start: clamp(1.25rem, 0.849rem + 1.548vw, 1.875rem);
  padding: clamp(1.25rem, 1.05rem + 0.774vw, 1.5625rem) clamp(0.625rem, 0.024rem + 2.322vw, 1.5625rem);
  border-radius: clamp(0.625rem, 0.425rem + 0.774vw, 0.9375rem);
  border: clamp(0.125rem, 0.085rem + 0.155vw, 0.1875rem) solid #E87619;
  background: #FFF;
}
.top-profile .profile__actual-img {
  -webkit-margin-before: clamp(1.25rem, 0.849rem + 1.548vw, 1.875rem);
          margin-block-start: clamp(1.25rem, 0.849rem + 1.548vw, 1.875rem);
}

.voice__item {
  border-bottom: 3px solid #EA6819;
  background: #FFF;
  padding: clamp(1.125rem, 0.444rem + 2.632vw, 2.1875rem) clamp(0.625rem, -0.777rem + 5.418vw, 2.8125rem) 2.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: clamp(0.875rem, 0.234rem + 2.477vw, 1.875rem);
     -moz-column-gap: clamp(0.875rem, 0.234rem + 2.477vw, 1.875rem);
          column-gap: clamp(0.875rem, 0.234rem + 2.477vw, 1.875rem);
}
.voice__item:first-child {
  border-top: 3px solid #EA6819;
}

.voice__img {
  width: clamp(5.625rem, 4.023rem + 6.192vw, 8.125rem);
  position: relative;
  z-index: 0;
  -webkit-padding-before: clamp(0.25rem, -0.191rem + 1.703vw, 0.9375rem);
          padding-block-start: clamp(0.25rem, -0.191rem + 1.703vw, 0.9375rem);
  padding-inline: clamp(0.0625rem, -0.098rem + 0.619vw, 0.3125rem);
}

.voice__wrap {
  width: calc(100% - clamp(6.5rem, 4.257rem + 8.669vw, 10rem));
}

.voice__head {
  font-size: 1.25rem;
  font-weight: 700;
  color: #EA6819;
  -webkit-margin-after: clamp(0.625rem, 0.425rem + 0.774vw, 0.9375rem);
          margin-block-end: clamp(0.625rem, 0.425rem + 0.774vw, 0.9375rem);
}

.voice__text {
  font-size: clamp(1rem, 0.92rem + 0.31vw, 1.125rem);
  line-height: 1.6875;
}

@media screen and (min-width: 768px) {
  .l-footer {
    padding-block: 1.125rem;
  }
  .l-header {
    background: rgba(250, 249, 247, 0.8);
  }
  .u-hidden-pc {
    display: none;
  }
  .u-hidden-sp {
    display: block;
  }
  .sp-only {
    display: none;
  }
  .sidebar-recs.sp-only {
    display: none;
  }
  .sidebar-recs.pc-only {
    display: block;
  }
  .sidebar-recs__title {
    position: absolute;
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: 0.125rem;
    top: 0;
    left: 0;
  }
  .sidebar-recs__swiper-wrapper {
    gap: 0;
  }
  .sidebar-recs__card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 400px;
            flex: 0 0 400px;
  }
  .sidebar-recs-card__thumbnail {
    aspect-ratio: 360/200;
  }
  .sidebar-recs__no-post {
    padding-bottom: 0;
  }
  .sidebar-category {
    margin-top: 6.25rem;
  }
  .sidebar-category__title {
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: 0.09375rem;
  }
  .sidebar-category__items {
    margin-top: 1.125rem;
  }
  .sidebar-category__item {
    height: 5.625rem;
    font-size: 1.5rem;
    line-height: 1.2;
    letter-spacing: 0.0625rem;
  }
  .sidebar-category__no-post {
    padding-bottom: 0;
  }
  .sidebar-archive {
    margin-top: 6.25rem;
  }
  .sidebar-archive__title {
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: 0.09375rem;
  }
  .sidebar-archive__items {
    margin-top: 1.125rem;
  }
  .sidebar-archive__item {
    height: 5.625rem;
    font-size: 1.5rem;
    line-height: 1.2;
    letter-spacing: 0.0625rem;
  }
  .sidebar-archive__no-post {
    padding-bottom: 0;
  }
  .blog__category-items {
    margin-top: -0.625rem;
  }
  .blog__sort {
    margin-top: 3.625rem;
  }
  .blog__cards {
    margin-top: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.875rem;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
    max-width: 670px;
    margin-inline: auto;
  }
  .blog__card {
    max-width: 320px;
  }
  .blog-card__thumbnail {
    aspect-ratio: 280/200;
  }
  .pagination {
    margin-top: 100px;
  }
  .intro__profile .profile__wrap {
    text-align: center;
  }
  .intro__profile .profile__wrap .post::before {
    content: none;
  }
  .intro__profile .profile__wrap .name {
    font-weight: 700;
  }
  .intro__message {
    border: 5px solid #EA6819;
  }
  .actual__text {
    border: 3px solid #EA6819;
  }
  .intro__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .info__title {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .sns {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
  .sns__wrap {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-padding-start: 2.5rem;
            padding-inline-start: 2.5rem;
  }
  .top-about__text {
    text-align: center;
  }
  .top-service .p-service__title {
    -webkit-margin-after: 3.125rem;
            margin-block-end: 3.125rem;
  }
  .read__link a {
    -webkit-padding-end: 1.5625rem;
            padding-inline-end: 1.5625rem;
  }
  .read__link a span {
    -webkit-margin-end: -1.5625rem;
            margin-inline-end: -1.5625rem;
    -webkit-margin-before: -0.625rem;
            margin-block-start: -0.625rem;
  }
  .top-blog__swiper-container {
    margin-inline: 0;
  }
  .top-blog .sidebar-recs__swiper-button-wrapper {
    top: -5.625rem;
    width: 9.5rem;
    left: auto;
    right: 0.625rem;
    -webkit-transform: none;
            transform: none;
  }
  .top-blog .sidebar-recs__swiper-button-wrapper .sidebar-recs__swiper-button-prev,
  .top-blog .sidebar-recs__swiper-button-wrapper .sidebar-recs__swiper-button-next {
    width: 3.75rem;
  }
  .top-profile .top-profile__profile {
    border-radius: 5px;
    padding-block: 1.5625rem;
  }
  .top-profile .name {
    font-weight: 700;
  }
  .voice__text {
    line-height: 1.5;
  }
}

@media (any-hover: hover) {
  .l-footer__nav-list li a:hover {
    opacity: 0.7;
  }
  .l-footer__top a:hover {
    opacity: 0.7;
  }
  .l-header__logo a:hover {
    opacity: 0.7;
  }
  .l-header__nav .l-header__nav-list li a:hover {
    opacity: 0.7;
  }
  .sidebar-recs__swiper-button-prev:hover,
  .sidebar-recs__swiper-button-next:hover {
    opacity: 0.7;
  }
  .sidebar-recs-card:hover {
    opacity: 0.7;
  }
  .sidebar-category__item:hover {
    opacity: 0.7;
  }
  .sidebar-archive__item:hover {
    opacity: 0.7;
  }
  .blog__category-item:hover {
    opacity: 0.7;
  }
  .blog__sort-item:hover {
    opacity: 0.7;
  }
  .blog-card:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 992px) {
  .hamburger {
    display: none;
  }
  .l-header__nav {
    display: block;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background: none;
    left: auto;
    border: none;
    -webkit-padding-before: 0;
            padding-block-start: 0;
    -webkit-transform: none;
            transform: none;
  }
  .l-header__nav .l-header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: clamp(0.9375rem, -3.534rem + 7.212vw, 1.875rem);
       -moz-column-gap: clamp(0.9375rem, -3.534rem + 7.212vw, 1.875rem);
            column-gap: clamp(0.9375rem, -3.534rem + 7.212vw, 1.875rem);
  }
  .l-header__nav .l-header__nav-list li {
    font-size: 0.9375rem;
    font-weight: 400;
    -webkit-margin-before: 0;
            margin-block-start: 0;
    min-width: 95px;
  }
  .l-header__nav .l-header__nav-list li.current-menu-item {
    color: #EA6819;
    border-bottom: 3px solid #EA6819;
    -webkit-padding-after: 10px;
            padding-block-end: 10px;
  }
  .l-header__sns {
    display: none;
  }
  .p-service__item {
    padding: 0 3.125rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-column-gap: clamp(4.375rem, 2.438rem + 3.125vw, 5.25rem);
       -moz-column-gap: clamp(4.375rem, 2.438rem + 3.125vw, 5.25rem);
            column-gap: clamp(4.375rem, 2.438rem + 3.125vw, 5.25rem);
  }
  .p-service__body {
    display: block;
    max-width: 61.6666666667%;
    margin-block: 2.5rem;
  }
  .p-service__text {
    margin-block: 0.9375rem;
  }
  .p-service__recommend {
    padding-inline: 1.0625rem;
  }
  .p-service__recommend p {
    text-align: left;
    -webkit-margin-after: 0.25rem;
            margin-block-end: 0.25rem;
  }
  .p-service__recommend .recommend__list {
    margin-inline: 0;
    line-height: 1.3125;
  }
  .p-service__link {
    text-align: right;
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
  .p-service__link span {
    -webkit-margin-start: 0.4375rem;
            margin-inline-start: 0.4375rem;
  }
  .top-fv__title {
    -webkit-margin-before: 0;
            margin-block-start: 0;
    position: absolute;
    width: clamp(37.5rem, 2.902rem + 55.804vw, 53.125rem);
    top: -60px;
    left: 70px;
  }
  .top-fv__img {
    -webkit-margin-before: 0;
            margin-block-start: 0;
    width: 79%;
    -webkit-margin-start: auto;
            margin-inline-start: auto;
  }
  .top-about__img {
    position: absolute;
  }
  .top-about__img:nth-of-type(1) {
    width: clamp(10.625rem, -6.813rem + 28.125vw, 18.5rem);
    top: 71px;
    left: max(50% - 50vw, -190px);
  }
  .top-about__img:nth-of-type(2) {
    width: clamp(10.625rem, -6.536rem + 27.679vw, 18.375rem);
    top: 413px;
    right: max(50% - 50vw, -190px);
  }
  .top-about__img:nth-of-type(3) {
    width: clamp(10.625rem, -6.813rem + 28.125vw, 18.5rem);
    bottom: 100px;
    left: max(50% - 50vw, -190px);
  }
  .top-voice .top-voice__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }
  .top-voice .top-voice__item:nth-child(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .top-voice .item__text {
    width: 77%;
  }
  .top-voice .item__img {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
  .top-faq .top-faq__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
}

@media screen and (min-width: 1200px) {
  .l-page {
    position: relative;
  }
  .l-page::before {
    content: "";
    position: absolute;
    width: clamp(2.5rem, -10rem + 16.667vw, 5rem);
    height: 100%;
    background: url(../images/bg-left.webp) repeat-y;
    top: 0;
    left: calc(50% - 50vw);
  }
  .l-page::after {
    content: "";
    position: absolute;
    width: clamp(2.5rem, -10rem + 16.667vw, 5rem);
    height: 100%;
    background: url(../images/bg-right.webp) repeat-y;
    top: 0;
    right: calc(50% - 50vw);
  }
  .single-blog__header {
    padding-top: 0;
    padding-bottom: 1.875rem;
    margin-top: -0.5rem;
  }
  .single-blog__thumbnail {
    aspect-ratio: 850/500;
  }
  .single-blog__h1 {
    margin-top: 1.25rem;
    font-size: 2.5rem;
    letter-spacing: 0.125rem;
  }
  .single-blog__h2 {
    margin-top: 4.21875rem;
    font-size: 2.25rem;
    letter-spacing: 0.1125rem;
  }
  .single-blog__h3 {
    margin-top: 2.8125rem;
    font-size: 1.5rem;
    letter-spacing: 0.075rem;
  }
  .single-blog__h4 {
    font-size: 1.125rem;
    letter-spacing: 0.05625rem;
  }
  .single-blog__p {
    margin-top: 1.25rem;
  }
  .blog__cards {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
  }
  .top-service .swiper-button-prev,
  .top-service .swiper-button-next {
    width: clamp(1.875rem, -3.355rem + 7.895vw, 3.75rem);
    padding-inline: clamp(0.125rem, -2.664rem + 4.211vw, 1.125rem);
  }
  .top-profile::after {
    content: "";
    position: absolute;
    width: 106%;
    max-width: 1528.268px;
    height: auto;
    aspect-ratio: 1528/1239;
    background: url(../images/top-introduction-bg.webp) no-repeat center center/contain;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: -1;
  }
}

@media (max-width: 700px) {
  .archive_body.post_style,
  .lw_cat_common_content_fv_bottom.post_style {
    width: calc(100% - 32px);
  }
  .archive_body.post_style .first_content,
  .archive_body.post_style .last_content,
  .lw_cat_common_content_fv_bottom.post_style .first_content,
  .lw_cat_common_content_fv_bottom.post_style .last_content {
    padding: 16px 0;
  }
}

@media (max-width: 1200px) {
  body.page .clm_2_right .post_style.single {
    padding: 0 40px;
  }
  body.page .clm_2_left .post_style.single {
    padding: 0 40px;
  }
}

@media (max-width: 900px) {
  body.page .clm_2_right .post_style.single {
    padding: 0 24px;
  }
  body.page .clm_2_left .post_style.single {
    padding: 0 24px;
  }
  body.page .clm_1 .post_style.single {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .lw_pc_only {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .lw_sp_only {
    display: none !important;
  }
}

@media (max-width: 1080px) {
  .post_style .page_first_content,
  .woocommerce-Tabs-panel--description .page_first_content,
  .woocommerce-product-details__short-description .page_first_content,
  .wp-block-wdl-lw-my-parts-embed .page_first_content {
    padding: 16px 0;
  }
}

@media (max-width: 781px) {
  .post_style .wp-block-columns:has(.wp-block-column + .wp-block-column) p:first-child,
  .woocommerce-Tabs-panel--description .wp-block-columns:has(.wp-block-column + .wp-block-column) p:first-child,
  .woocommerce-product-details__short-description .wp-block-columns:has(.wp-block-column + .wp-block-column) p:first-child,
  .wp-block-wdl-lw-my-parts-embed .wp-block-columns:has(.wp-block-column + .wp-block-column) p:first-child {
    margin-top: 0.8em;
  }
  .post_style .wp-block-columns:has(.wp-block-column + .wp-block-column) p:last-child,
  .woocommerce-Tabs-panel--description .wp-block-columns:has(.wp-block-column + .wp-block-column) p:last-child,
  .woocommerce-product-details__short-description .wp-block-columns:has(.wp-block-column + .wp-block-column) p:last-child,
  .wp-block-wdl-lw-my-parts-embed .wp-block-columns:has(.wp-block-column + .wp-block-column) p:last-child {
    margin-bottom: 0.8em;
  }
  .post_style > .wp-block-columns,
  .post_style [class^=custom-title-accordion-] > .wp-block-columns,
  .woocommerce-Tabs-panel--description > .wp-block-columns,
  .woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-columns,
  .woocommerce-product-details__short-description > .wp-block-columns,
  .woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-columns,
  .wp-block-wdl-lw-my-parts-embed > .wp-block-columns,
  .wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-columns {
    gap: 8px;
  }
  .post_style > .wp-block-columns p,
  .post_style [class^=custom-title-accordion-] > .wp-block-columns p,
  .woocommerce-Tabs-panel--description > .wp-block-columns p,
  .woocommerce-Tabs-panel--description [class^=custom-title-accordion-] > .wp-block-columns p,
  .woocommerce-product-details__short-description > .wp-block-columns p,
  .woocommerce-product-details__short-description [class^=custom-title-accordion-] > .wp-block-columns p,
  .wp-block-wdl-lw-my-parts-embed > .wp-block-columns p,
  .wp-block-wdl-lw-my-parts-embed [class^=custom-title-accordion-] > .wp-block-columns p {
    letter-spacing: 0.03em;
  }
}

@media (max-width: 600px) {
  .post_style .wp-block-media-text .wp-block-media-text__content,
  .woocommerce-Tabs-panel--description .wp-block-media-text .wp-block-media-text__content,
  .woocommerce-product-details__short-description .wp-block-media-text .wp-block-media-text__content,
  .wp-block-wdl-lw-my-parts-embed .wp-block-media-text .wp-block-media-text__content {
    margin-top: 1.5em;
    padding: 0;
    background-image: url();
  }
}

@media (max-width: 500px) {
  .lw_post_nav .lw_post_nav_list {
    border-bottom: 1px solid #eee;
  }
  .lw_post_nav .lw_post_nav_list .post_nav_prev a,
  .lw_post_nav .lw_post_nav_list .post_nav_next a {
    padding: 16px;
  }
  .lw_post_nav .lw_post_nav_list .post_nav_prev a {
    padding-left: 28px;
  }
  .lw_post_nav .lw_post_nav_list .post_nav_prev a svg {
    left: 0;
  }
  .lw_post_nav .lw_post_nav_list .post_nav_next a {
    padding-right: 28px;
  }
  .lw_post_nav .lw_post_nav_list .post_nav_next a svg {
    right: 0;
  }
}
/*# sourceMappingURL=style.css.map */