@charset "UTF-8";
/* このCSSは、グループページ、フリーページ、商品ページ使えます */
/* 共通 */
:root {
  /* ボタン背景色 */
  --l-btn-bg-c: #2d2d2d;
  /* 背景色 */
  --l-bg-c-gray: #f2f2f2;
  /* ボタン色 */
  --l-bd-c-gray: #c2c2c2;
  --l-bd-c-black: #2d2d2d;
  /* マーカー */
  --l-mark: #fff799;
  /* 強調文字色 */
  --l-txt-emphasis: #ff0000;
}

.l-container {
  width: var(--inner-w);
  max-width: var(--pc-maw-sm);
  margin-inline: auto;
  letter-spacing: 0.1em;
  padding: var(--sec-spc) 0;
}

.l-container h2 {
  font-weight: bold;
}

.l-container h3 {
  font-weight: 600;
}

.l-container h2 mark {
  background: linear-gradient(transparent 70%, var(--l-mark) 30%);
}

.l-container h2 u {
  text-decoration: none;
  border-bottom: 1px solid var(--l-bd-c-black);
}

.l-container p strong {
  font-weight: bold;
}

.l-container p u {
  text-decoration: none;
  border-bottom: 1px solid var(--l-bd-c-black);
}

.l-container p mark {
  background: linear-gradient(transparent 70%, var(--l-mark) 30%);
}

@media screen and (min-width: 768px) {
  .l-container > [class*=l-] {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 767px) {
  .l-container > [class*=l-] {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  .l-container h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .l-container h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .l-container h2 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .l-container h3 {
    font-size: 16px;
  }
}
span.l_heading--bgcolorGray {
  background-color: var(--l-bg-c-gray);
  display: inline-block;
}

@media screen and (min-width: 768px) {
  span.l_heading--bgcolorGray {
    padding: 8px 15px;
  }
}
@media screen and (max-width: 767px) {
  span.l_heading--bgcolorGray {
    padding: 5px 12px;
  }
}
.l_heading--bdcolorBlack {
  border-left: 5px solid var(--l-bd-c-black);
}

@media screen and (min-width: 768px) {
  .l_heading--bdcolorBlack {
    padding-left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .l_heading--bdcolorBlack {
    padding-left: 10px;
  }
}
.l_heading--center {
  text-align: center;
}

span.l-text__red {
  color: var(--l-txt-emphasis);
  font-weight: bold;
}

/* l-btn ＝ g-btn g-btn--primary と同じスタイル（今日の版を維持） */
.l-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 300px;
  min-height: 50px;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.1em;
  border: none;
  outline: none;
  border-radius: 6px;
  background-color: #231815;
  color: var(--c-white);
}

/* 外部CSSの a:visited{color} に勝つよう詳細度を上げる（a.l-btn = 0,2,1） */
a.l-btn,
a.l-btn:link,
a.l-btn:visited {
  color: var(--c-white);
}

/* 色反転（白地・黒文字・黒枠） */
.l-btn--reverse {
  background-color: var(--c-white);
  border: 1px solid #231815;
}

a.l-btn--reverse,
a.l-btn--reverse:link,
a.l-btn--reverse:visited {
  color: #231815;
}

@media (hover: hover) {
  .l-btn {
    transition: 0.5s;
  }
  .l-btn:hover {
    filter: brightness(0.8);
    opacity: 1;
  }
  a.l-btn--reverse:hover {
    background-color: #231815;
    color: var(--c-white);
    filter: none;
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .l-btn {
    font-size: 16px;
    margin: var(--spc-50) auto 0;
  }
}
@media screen and (max-width: 767px) {
  .l-btn {
    font-size: 14px;
    margin: 20px auto 0;
  }
}
/* 矢印（g-btn--arrow 相当）を各ボタンに標準装備 */
.l-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 8px;
  height: 10px;
  --this-mask: var(--data-icon-btn-arrow) no-repeat center center / 100%;
  mask: var(--this-mask);
  -webkit-mask: var(--this-mask);
  background-color: var(--c-white);
  transform: translateY(-50%);
  transition: transform 0.3s;
}

/* 白ボタン（反転）は矢印を濃色に */
.l-btn--reverse::after {
  background-color: var(--c-black);
}

@media (hover: hover) {
  .l-btn:hover::after {
    transform: translateY(-50%) translateX(5px);
  }
}
/* l-imageWithText */
@media screen and (min-width: 768px) {
  .l-imageWithText > img {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 767px) {
  .l-imageWithText > img {
    margin-bottom: 8px;
  }
}
/* l-imageListWithText */
.l-imageListWithText > ul:has(li img) {
  display: grid;
}

@media screen and (min-width: 768px) {
  .l-imageListWithText > ul:has(li img) {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 767px) {
  .l-imageListWithText > ul:has(li img) {
    gap: 10px;
    margin-bottom: 8px;
  }
}
/* l-imageTitleTextList */
.l-imageTitleTextList > ul:has(li img) {
  display: grid;
}

@media screen and (min-width: 768px) {
  .l-imageTitleTextList > ul:has(li img) {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 20px;
  }
  .l-imageTitleTextList > ul:has(li img) li img {
    margin-bottom: 10px;
  }
  .l-imageTitleTextList > ul:has(li img) li h3 {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .l-imageTitleTextList > ul:has(li img) {
    gap: 30px;
  }
  .l-imageTitleTextList > ul:has(li img) li img {
    margin-bottom: 8px;
  }
  .l-imageTitleTextList > ul:has(li img) li h3 {
    margin-bottom: 3px;
  }
}
/* l-imageTextSide */
.l-imageTextSide > ul:has(li div) {
  display: grid;
}

@media screen and (min-width: 768px) {
  .l-imageTextSide > ul:has(li div) {
    gap: 50px;
  }
  .l-imageTextSide > ul > li:has(div) {
    display: flex;
    gap: 30px;
  }
  .l-imageTextSide > ul > li:has(div) img,
  .l-imageTextSide > ul > li:has(div) div {
    flex: 1;
  }
  .l-imageTextSide__reverse {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 767px) {
  .l-imageTextSide > ul:has(li div) {
    gap: 30px;
  }
  .l-imageTextSide > ul > li:has(div) img {
    margin-bottom: 8px;
  }
  .l-imageTextSide > ul > li:has(div) h3 {
    margin-bottom: 3px;
  }
}
/* l-productList（旧） */
.l-productList > ul:has(li .l-btn) {
  display: grid;
}

@media screen and (min-width: 768px) {
  .l-productList > ul:has(li .l-btn) {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
  }
  .l-productList > ul:has(li .l-btn) img {
    margin-bottom: 10px;
  }
  .l-productList > ul:has(li .l-btn) p {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .l-productList > ul:has(li .l-btn) {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 10px;
  }
  .l-productList > ul:has(li .l-btn) img {
    margin-bottom: 8px;
  }
  .l-productList > ul:has(li .l-btn) p {
    margin-bottom: 12px;
    font-size: 12px;
  }
  .l-productList > ul:has(li .l-btn) .l-btn {
    font-size: 12px;
  }
}
/* l-textLinkContainer */
.l-textLinkContainer--bgcolorGray {
  background-color: var(--l-bg-c-gray);
  border: 1px solid var(--l-bg-c-gray);
}

.l-textLinkContainer--bdcolorGray {
  border: 1px solid var(--l-bd-c-gray);
}

@media screen and (min-width: 768px) {
  .l-textLinkContainer {
    padding: 40px 30px;
  }
  .l-textLinkContainer .l-btn {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-textLinkContainer {
    padding: 20px 15px;
  }
  .l-textLinkContainer .l-btn {
    margin-top: 20px;
  }
}
/* l-table */
.l-table table {
  width: 100%;
}

.l-table tr {
  display: flex;
  flex-wrap: wrap;
}

.l-table--bgcolorGray th,
.l-table--bgcolorGray td {
  background-color: var(--l-bg-c-gray);
}

@media screen and (min-width: 768px) {
  .l-table--bgcolorGray tr {
    gap: 10px;
  }
  .l-table--bgcolorGray tr:not(:first-child) th,
  .l-table--bgcolorGray tr:not(:first-child) td {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .l-table--bgcolorGray tr:not(:first-child) th {
    margin-top: 10px;
  }
}
@media screen and (min-width: 768px) {
  .l-table--bdcolorGray tr:first-child th,
  .l-table--bdcolorGray tr:first-child td {
    border-top: 1px solid var(--l-bd-c-gray);
  }
  .l-table--bdcolorGray th,
  .l-table--bdcolorGray td {
    border-bottom: 1px solid var(--l-bd-c-gray);
  }
  .l-table--bdcolorGray th {
    position: relative;
  }
  .l-table--bdcolorGray th::after {
    content: "";
    display: inline-block;
    background: var(--l-bd-c-gray);
    width: 1px;
    height: calc(100% - 30px);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .l-table--bdcolorGray tr:first-child th {
    border-top: 1px solid var(--l-bd-c-gray);
  }
  .l-table--bdcolorGray td {
    border-bottom: 1px solid var(--l-bd-c-gray);
  }
}
@media screen and (min-width: 768px) {
  .l-table td,
  .l-table th {
    padding: 25px 30px;
  }
  .l-table th {
    width: 30%;
  }
  .l-table td {
    flex: 1;
  }
}
@media screen and (max-width: 767px) {
  .l-table td,
  .l-table th {
    width: 100%;
  }
  .l-table th {
    padding: 15px 10px 0;
  }
  .l-table td {
    padding: 15px 10px;
  }
}
/* 個別余白調整用クラス */
.mgb10 {
  margin-bottom: 10px;
}

.mgb20 {
  margin-bottom: 20px;
}

.mgb30 {
  margin-bottom: 30px;
}

.mgb40 {
  margin-bottom: 40px;
}

.mgb50 {
  margin-bottom: 50px;
}

.mgb60 {
  margin-bottom: 60px;
}

.mgb70 {
  margin-bottom: 70px;
}

.mgb80 {
  margin-bottom: 80px;
}

.mgb90 {
  margin-bottom: 90px;
}

.mgb100 {
  margin-bottom: 100px;
}

/* ▼260403追加分 */
:root {
  --l-sec-spc: var(--sec-spc, clamp( 60px, 8vw, 100px));
  --l-bg-c-main: var(--bg-c-gray, #f2f2f2);
  --l-theme-c-main: var(--theme-c-main, #bf2020);
  --l-theme-c-sub: var(--theme-c-sub, #ff6900);
  --l-txt-c-base: var(--txt-c-base, #2c2c2c);
  --wp--preset--color--black: #000000;
  --wp--preset--color--cyan-bluish-gray: #abb8c3;
  --wp--preset--color--white: var(--c-white);
  --wp--preset--color--pale-pink: #f78da7;
  --wp--preset--color--vivid-red: #cf2e2e;
  --wp--preset--color--luminous-vivid-orange: #ff6900;
  --wp--preset--color--luminous-vivid-amber: #fcb900;
  --wp--preset--color--light-green-cyan: #7bdcb5;
  --wp--preset--color--vivid-green-cyan: #00d084;
  --wp--preset--color--pale-cyan-blue: #8ed1fc;
  --wp--preset--color--vivid-cyan-blue: #0693e3;
  --wp--preset--color--vivid-purple: #9b51e0;
  --wp--preset--font-size--small: 13px;
  --wp--preset--font-size--medium: 20px;
  --wp--preset--font-size--large: 36px;
  --wp--preset--font-size--x-large: 42px;
}

.has-black-color {
  color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-color {
  color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-color {
  color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-color {
  color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-color {
  color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-color {
  color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-color {
  color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-color {
  color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-color {
  color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-color {
  color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-color {
  color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-color {
  color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-background-color {
  background-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-background-color {
  background-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-background-color {
  background-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-background-color {
  background-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-background-color {
  background-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-background-color {
  background-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-background-color {
  background-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-background-color {
  background-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-background-color {
  background-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-background-color {
  background-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-background-color {
  background-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-background-color {
  background-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-border-color {
  border-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-border-color {
  border-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-border-color {
  border-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-border-color {
  border-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-border-color {
  border-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-border-color {
  border-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-border-color {
  border-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-border-color {
  border-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-border-color {
  border-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-border-color {
  border-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-border-color {
  border-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-vivid-purple-border-color {
  border-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-small-font-size {
  font-size: var(--wp--preset--font-size--small) !important;
}

.has-medium-font-size {
  font-size: var(--wp--preset--font-size--medium) !important;
}

.has-large-font-size {
  font-size: var(--wp--preset--font-size--large) !important;
}

.has-x-large-font-size {
  font-size: var(--wp--preset--font-size--x-large) !important;
}

/* l-heading（g-heading__ja のテキストスタイルを流用） */
/* .l-container h2(0,1,1) に勝たせるため .l-container .l-heading(0,2,0) で指定 */
.l-container .l-heading {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-family: "mfw-pkizakinryoustdn-bold", serif;
  font-weight: 700;
  line-height: var(--lh-m);
}

@media screen and (min-width: 768px) {
  .l-container .l-heading {
    font-size: var(--fz-38);
    margin-bottom: var(--spc-30, 30px);
  }
}
@media screen and (max-width: 767px) {
  .l-container .l-heading {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
/* l-subHeading */
.l-subHeading {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .l-subHeading {
    font-size: var(--fz-18, 18px);
  }
}
@media screen and (max-width: 767px) {
  .l-subHeading {
    font-size: 16px;
  }
}
.l-heading + .l-subHeading::before {
  content: none;
}

/* 見出し直後のカラム/リストの上余白を段落（--spc-20）と揃える */
.l-heading + .l-cols,
.l-heading + [class*=__list] {
  margin-top: var(--spc-20);
}

/* l-cols */
@media screen and (min-width: 768px) {
  .l-cols {
    display: flex;
    gap: var(--spc-30);
  }
}
@media screen and (max-width: 767px) {
  .l-cols {
    display: grid !important;
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .l-cols__item {
    flex: 1;
  }
}
/* l-figure */
.l-figure {
  margin-bottom: 0;
}

.l-figure.wp-block-image {
  margin-bottom: 0;
}

.l-figure img {
  height: auto;
  width: 100%;
  box-sizing: unset;
  line-height: 1rem;
  display: block;
}

.l-figure figcaption {
  text-align: center;
  font-size: clamp(11px, 1vw, 12px);
  margin-top: var(--spc-10, 10px);
  margin-bottom: 0;
}

* + .l-figure,
* + .l-figure.wp-block-image {
  margin-top: 20px;
}

/* l-paragraph */
.l-paragraph {
  font-size: clamp(13px, 1.4vw, 15px);
  margin-top: clamp(15px, 1.7vw, 20px);
  letter-spacing: 0.1em;
}

.l-paragraph--sm {
  font-size: clamp(12px, 1.3vw, 14px);
  margin-top: clamp(10px, 1.2vw, 15px);
}

.l-paragraph--lg {
  font-size: clamp(16px, 1.7vw, 18px);
  margin-top: clamp(20px, 2.3vw, 30px);
}

.l-paragraph[class*=center] {
  text-align: center;
}

.l-paragraph[class*=right] {
  text-align: right;
}

.l-cols .l-paragraph {
  font-size: clamp(12px, 1.3vw, 14px);
}

/* l-freeBtn（単体ボタン：色＋左中右配置／今日の版を維持） */
/* 中の <a> を箱いっぱいにしてクリック領域を確保、色は箱から継承 */
.l-freeBtn > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  align-self: stretch;
  color: inherit;
}

/* color1 = 黒（標準の l-btn と同色） */
.l-freeBtn--color1 {
  background-color: #231815;
  color: var(--c-white);
  border: none;
}

/* color2 = 白ボタン（g-btn--secondary と同じ：白地・グレー枠・黒文字） */
.l-freeBtn--color2 {
  background-color: var(--c-white);
  color: var(--c-black);
  border: 1px solid var(--bd-c-gray);
}

/* 白ボタンは矢印を濃色に */
.l-freeBtn--color2::after {
  background-color: var(--c-black);
}

/* color3 ＝ 緑（色指定なしの標準色も緑） */
.l-freeBtn--color3,
.l-freeBtn:not(.l-freeBtn--color1):not(.l-freeBtn--color2) {
  background-color: #95a636;
  color: var(--c-white);
  border: none;
}

@media (hover: hover) {
  .l-freeBtn {
    transition: 0.5s;
  }
  /* 黒・緑・標準：g-btn と統一（brightness 0.8 ＋ グローバル a:hover 透過の打ち消し） */
  .l-freeBtn--color1:hover,
  .l-freeBtn--color3:hover,
  .l-freeBtn:not(.l-freeBtn--color1):not(.l-freeBtn--color2):hover {
    filter: brightness(0.8);
  }
  .l-freeBtn--color1 > a:hover,
  .l-freeBtn--color3 > a:hover,
  .l-freeBtn:not(.l-freeBtn--color1):not(.l-freeBtn--color2) > a:hover {
    opacity: 1;
  }
  /* 白：g-btn--secondary と統一（hoverは薄グレー背景・透過なし） */
  .l-freeBtn--color2:hover {
    background-color: var(--bg-c-gray);
  }
  .l-freeBtn--color2 > a:hover {
    opacity: 1;
  }
}
/* 配置：左寄せ / 中央 / 右寄せ（.l-btn の margin-inline:auto を上書き） */
.l-freeBtn.is-content-justification-left {
  margin-inline: 0 auto;
}

.l-freeBtn.is-content-justification-center {
  margin-inline: auto;
}

.l-freeBtn.is-content-justification-right {
  margin-inline: auto 0;
}

/* l-plainBtn（g-btn--plain と同じ見た目：緑下線のテキストリンク／左中右配置） */
.l-plainBtn {
  display: flex;
}

.l-plainBtn > a {
  display: inline-block;
  line-height: var(--lh-m);
  border-bottom: 1px solid #95a636;
  font-size: 14px;
  color: #404040;
  padding-block-end: 4px;
}

.l-plainBtn.is-content-justification-left {
  justify-content: flex-start;
}

.l-plainBtn.is-content-justification-center {
  justify-content: center;
}

.l-plainBtn.is-content-justification-right {
  justify-content: flex-end;
}

/* l-txtLink */
.l-txtLink {
  display: flex;
  margin-top: 20px;
}

.l-txtLink[class*=center] {
  justify-content: center;
}

.l-txtLink[class*=right] {
  justify-content: flex-end;
}

.l-txtLink :is(a, .wp-block-button__link) {
  background: unset;
  color: var(--txt-c-base);
  text-decoration: underline;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 30px;
}

@media (hover: hover) {
  .l-txtLink a:hover {
    text-decoration: underline;
  }
}
/* l-slick */
.l-slick {
  display: block !important;
  opacity: 0;
  transition: opacity 0.3s linear;
}

.l-slick.slick-initialized, .l-slick.block-editor-block-list__block {
  opacity: 1;
}

.l-slick__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--c-white);
  box-shadow: 0px 0px 15px -5px var(--c-gray-300);
  border-radius: 50%;
  aspect-ratio: 1;
  z-index: 2;
  transition: 0.3s;
}

.l-slick__arrow::before {
  content: "";
  display: inline-block;
  --this-mask: var(--data-icon-slide-arrow) no-repeat center center / 35%;
  mask: var(--this-mask);
  -webkit-mask: var(--this-mask);
  background-color: var(--l-txt-c-base);
  aspect-ratio: 1/1;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}

.l-slick__arrow--prev {
  left: -10px;
}

.l-slick__arrow--next {
  right: -10px;
  transform: scale(-1, 1) translateY(-50%);
}

@media (hover: hover) {
  .l-slick__arrow:hover {
    cursor: pointer;
    background-color: var(--l-theme-c-main);
    opacity: 1;
  }
  .l-slick__arrow:hover::before {
    background-color: var(--c-white);
  }
}
@media screen and (min-width: 768px) {
  .l-slick__arrow {
    width: var(--spc-40);
  }
}
@media screen and (max-width: 767px) {
  .l-slick__arrow {
    width: 30px;
  }
}
@media screen and (min-width: 768px) {
  .l-slick {
    padding-inline: var(--spc-40);
  }
}
@media screen and (max-width: 767px) {
  .l-slick {
    padding-inline: 30px;
  }
}
.block-editor-block-list__block.l-figure.l-slideTxt__slide__item {
  margin-bottom: 20px;
}

/* l-slideTxt */
.l-slideTxt {
  margin-bottom: var(--l-sec-spc);
}

.l-slideTxt__slide {
  margin-top: 20px;
}

.l-slideTxt__slide.is-layout-flex {
  display: block;
}

.l-slideTxt__slide .splide__arrow {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0;
  width: 40px;
  height: 40px;
  top: 50%;
  opacity: 1;
  transition: background 0.2s;
}

.l-slideTxt__slide .splide__arrow svg {
  fill: var(--txt-c-base);
  width: 12px;
  height: 12px;
}

.l-slideTxt__slide .splide__arrow--prev {
  left: 0px;
}

.l-slideTxt__slide .splide__arrow--next {
  right: 0px;
}

/* l-imgTxt */
.l-imgTxt {
  margin-bottom: var(--l-sec-spc);
}

.l-imgTxt .l-figure {
  margin-bottom: var(--spc-30);
}

/* l-bnrGrid（カテゴリバナー：左＝暗いタイトルボックス＋右＝画像／2カラム） */
.l-bnrGrid {
  margin-bottom: var(--l-sec-spc);
}

.l-bnrGrid__list {
  display: grid;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .l-bnrGrid__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.l-bnrGrid__item {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  aspect-ratio: 5/1.5;
  color: var(--c-white);
}

.l-bnrGrid__item .l-figure,
.l-bnrGrid__item figure {
  order: 1;
  flex: 1;
  margin: 0;
  height: 100%;
}

.l-bnrGrid__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

@media (hover: hover) {
  .l-bnrGrid__item:hover img {
    transform: scale(1.04);
  }
}
.l-bnrGrid__ttl {
  order: 0;
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  padding-inline: clamp(16px, 4%, 40px);
  background: #333333;
  color: var(--c-white);
  font-family: "mfw-pkizakinryoustdn-bold", serif;
  font-weight: 700;
  line-height: var(--lh-s);
}

@media screen and (min-width: 768px) {
  .l-bnrGrid__ttl {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-bnrGrid__ttl {
    font-size: 16px;
  }
}
.l-bnrGrid a.l-bnrGrid__item,
.l-bnrGrid a.l-bnrGrid__item:link,
.l-bnrGrid a.l-bnrGrid__item:visited {
  color: var(--c-white);
}

/* l-txt */
.l-txt {
  margin-bottom: var(--l-sec-spc);
}

/* l-img2Txt */
.l-img2Txt {
  margin-bottom: var(--l-sec-spc);
}

/* l-card2Col */
.l-card2Col {
  margin-bottom: var(--l-sec-spc);
}

.l-card2Col .l-subHeading {
  text-align: center;
}

.l-card2Col .l-subHeading::before {
  content: none;
}

.l-card2Col .l-figure {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .l-card2Col .l-cols {
    gap: 40px;
  }
}
/* l-card3Col */
.l-card3Col {
  margin-bottom: var(--l-sec-spc);
}

.l-card3Col .l-subHeading {
  text-align: center;
}

.l-card3Col .l-subHeading::before {
  content: none;
}

.l-card3Col .l-figure {
  margin-bottom: 20px;
}

.l-card3Col .l-figure img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .l-card3Col .l-cols {
    gap: 40px;
  }
}
/* l-card4Col */
.l-card4Col {
  margin-bottom: var(--l-sec-spc);
}

.l-card4Col .l-subHeading {
  text-align: center;
}

.l-card4Col .l-subHeading::before {
  content: none;
}

.l-card4Col .l-figure {
  margin-bottom: 20px;
}

.l-card4Col .l-figure img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .l-card4Col .l-cols {
    flex-wrap: wrap;
  }
  .l-card4Col .l-cols__item {
    flex: 1 1 calc(25% - var(--spc-30));
  }
}
@media screen and (max-width: 767px) {
  .l-card4Col .l-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 10px;
  }
}
/* l-tileImgs */
.l-tileImgs {
  margin-bottom: var(--l-sec-spc);
}

.l-tileImgs .l-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spc-20);
}

.l-tileImgs .l-cols__item .wp-block {
  margin-bottom: 0;
  margin-top: 0;
}

/* l-imgTiles（大きい画像 + 2×2 タイルグリッド） */
.l-imgTiles {
  margin-bottom: var(--l-sec-spc);
}

.l-imgTiles img {
  aspect-ratio: 16/9;
  object-fit: cover;
}

.l-imgTiles > .l-figure {
  margin-bottom: var(--spc-20);
}

.l-imgTiles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
}

@media screen and (min-width: 768px) {
  .l-imgTiles__grid {
    gap: var(--spc-20);
  }
}
@media screen and (max-width: 767px) {
  .l-imgTiles__grid {
    gap: 10px;
  }
}
.l-imgTiles__grid {
  /* グローバルの *+.l-figure{margin-top} を打ち消してガタつき防止 */
}

.l-imgTiles__grid .l-figure {
  margin-top: 0;
  margin-bottom: 0;
}

/* l-imgTxtGrid（画像 + タイトル + 本文 を 2×2 で並べる） */
.l-imgTxtGrid {
  margin-bottom: var(--l-sec-spc);
}

.l-imgTxtGrid .l-subHeading {
  text-align: center;
}

.l-imgTxtGrid .l-subHeading::before {
  content: none;
}

.l-imgTxtGrid .l-figure {
  margin-bottom: 20px;
}

.l-imgTxtGrid__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: var(--spc-20);
}

@media screen and (min-width: 768px) {
  .l-imgTxtGrid__list {
    gap: var(--spc-50) var(--spc-30);
  }
}
@media screen and (max-width: 767px) {
  .l-imgTxtGrid__list {
    gap: 40px 20px;
  }
}
/* l-mediaGrid（画像(左) + タイトル + 本文 を 2カラムで並べる） */
.l-mediaGrid {
  margin-bottom: var(--l-sec-spc);
}

.l-mediaGrid .l-subHeading {
  text-align: left;
}

.l-mediaGrid .l-subHeading::before {
  content: none;
}

.l-mediaGrid .l-paragraph {
  margin-top: 10px;
}

.l-mediaGrid__list {
  display: grid;
}

@media screen and (min-width: 768px) {
  .l-mediaGrid__list {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spc-40) var(--spc-50);
  }
}
@media screen and (max-width: 767px) {
  .l-mediaGrid__list {
    gap: 30px;
  }
}
.l-mediaGrid__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.l-mediaGrid__item .l-figure {
  flex: none;
}

@media screen and (min-width: 768px) {
  .l-mediaGrid__item .l-figure {
    width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .l-mediaGrid__item .l-figure {
    width: 90px;
  }
}
.l-mediaGrid__item .l-figure img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}

.l-mediaGrid__body {
  flex: 1;
}

/* l-colTxtImgRight */
.l-colTxtImgRight {
  margin-bottom: var(--l-sec-spc);
}

@media screen and (min-width: 768px) {
  .l-colTxtImgRight.l-cols {
    align-items: flex-start;
  }
}
/* l-colTxtImgLeft */
.l-colTxtImgLeft {
  margin-bottom: var(--l-sec-spc);
}

@media screen and (min-width: 768px) {
  .l-colTxtImgLeft.l-cols {
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .l-colTxtImgLeft.l-cols {
    display: flex;
    flex-direction: column-reverse;
  }
}
/* l-bgBox */
.l-bgBox {
  background-color: var(--l-bg-c-main);
  margin-bottom: var(--l-sec-spc);
  padding: clamp(20px, 2.5vw, 30px) clamp(15px, 2vw, 30px);
  border-radius: 8px;
}

/* l-bdBox */
.l-bdBox {
  border: 1px solid var(--l-txt-c-base);
  margin-bottom: var(--l-sec-spc);
  padding: clamp(20px, 2.5vw, 30px) clamp(15px, 2vw, 30px);
  border-radius: 8px;
}

/* l-mediaTxt */
.l-mediaTxt {
  margin-bottom: var(--l-sec-spc);
}

.l-mediaTxt .l-subHeading::before {
  content: none;
}

@media screen and (min-width: 768px) {
  .l-mediaTxt .l-cols {
    margin-bottom: var(--spc-50);
  }
  .l-mediaTxt .l-btn {
    margin: var(--spc-30) auto 0 0;
  }
  .l-mediaTxt .l-cols__item:first-child {
    flex: unset;
    flex-grow: unset !important;
    flex-basis: unset !important;
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .l-mediaTxt .l-cols {
    margin-bottom: 40px;
  }
  .l-mediaTxt .l-figure {
    width: 60%;
    margin-inline: auto;
  }
}
/* l-mediaLargeTxt */
.l-mediaLargeTxt {
  margin-bottom: var(--l-sec-spc);
}

.l-mediaLargeTxt .l-subHeading::before {
  content: none;
}

@media screen and (min-width: 768px) {
  .l-mediaLargeTxt .l-cols {
    margin-bottom: var(--spc-50);
  }
  .l-mediaLargeTxt .l-btn {
    margin: 30px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .l-mediaLargeTxt .l-cols {
    margin-bottom: 40px;
  }
}
/* l-tileColBg */
.l-tileColBg {
  --this-gap: 8px;
  --this-padding: clamp( 15px, 1.7vw, 20px);
  margin-bottom: var(--l-sec-spc);
}

.l-tileColBg .l-heading {
  background-color: var(--l-bg-c-main);
  margin-bottom: var(--this-gap);
  padding: var(--this-padding);
  text-align: left;
}

.l-tileColBg .l-subHeading {
  text-align: left;
  margin: 0;
}

.l-tileColBg .l-heading::before,
.l-tileColBg .l-subHeading::before {
  content: none;
}

.l-tileColBg .l-cols {
  gap: var(--this-gap);
  margin-top: 0;
  margin-bottom: var(--this-gap);
  align-items: stretch;
}

.l-tileColBg .l-cols__item {
  background-color: var(--l-bg-c-main);
  display: flex;
  align-items: center;
  padding: var(--this-padding);
}

.l-tileColBg .l-paragraph {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .l-tileColBg .l-cols__item:first-child {
    flex: unset;
    flex-grow: unset !important;
    flex-basis: unset !important;
    width: 300px;
  }
}
/* l-tileColWhite */
.l-tileColWhite {
  --this-gap: 8px;
  --this-padding: clamp( 15px, 1.7vw, 20px);
  margin-bottom: var(--l-sec-spc);
}

.l-tileColWhite .l-heading {
  margin-bottom: var(--this-gap);
  padding: var(--this-padding);
  border-bottom: 1px solid var(--l-txt-c-base);
  text-align: left;
}

.l-tileColWhite .l-subHeading {
  text-align: left;
  margin: 0;
}

.l-tileColWhite .l-heading::before,
.l-tileColWhite .l-subHeading::before {
  content: none;
}

.l-tileColWhite .l-cols {
  gap: var(--this-gap);
  margin-top: 0;
  margin-bottom: var(--this-gap);
  align-items: stretch;
}

.l-tileColWhite .l-cols__item {
  display: flex;
  align-items: center;
  padding: var(--this-padding);
}

.l-tileColWhite .l-paragraph {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .l-tileColWhite .l-cols__item:first-child {
    flex: unset;
    flex-grow: unset !important;
    flex-basis: unset !important;
    width: 300px;
  }
}
/* l-readMore */
.l-readMore {
  margin-bottom: var(--l-sec-spc);
}

.l-readMore .l-cols {
  border: 1px solid var(--l-txt-c-base);
  padding: clamp(20px, 2.5vw, 30px) clamp(15px, 2vw, 30px);
}

.l-readMore .l-cols + .l-cols {
  margin-top: clamp(20px, 2.5vw, 30px);
}

.l-readMore .l-subHeading::before {
  content: none;
}

.l-readMore p:has(a) {
  margin-top: clamp(15px, 1.7vw, 20px);
}

.l-readMore p:has(a) a {
  color: var(--txt-c-base);
  text-decoration: underline;
}

.l-readMore p:has(a)[class*=center] {
  text-align: center;
}

.l-readMore p:has(a)[class*=left] {
  text-align: left;
}

.l-readMore p:has(a)[class*=right] {
  text-align: right;
}

.l-readMore .wp-block {
  margin: 0;
}

@media screen and (min-width: 768px) {
  .l-readMore .l-cols {
    align-items: flex-start;
  }
  .l-readMore .l-cols .l-cols__item:first-child {
    flex: unset;
    width: 300px;
  }
}
.l-readMore--ttlOnBox {
  position: relative;
}

.l-readMore--ttlOnBox .l-cols {
  border-radius: 8px;
  padding-top: clamp(35px, 4vw, 50px);
}

.l-readMore--ttlOnBox .l-heading {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  left: clamp(15px, 2vw, 30px);
  background-color: var(--c-white);
  padding-inline: 15px;
  z-index: 2;
}

.l-readMore--ttlOnBox .l-heading::before {
  content: none;
}

.l-readMore--ttlOnBox :is(ul, ol).l-freeList {
  margin-bottom: 0;
}

.l-readMore--labelHeading .l-heading {
  margin-bottom: 0;
  background-color: var(--l-theme-c-main);
  color: var(--c-white);
  padding-block: clamp(10px, 1.2vw, 15px);
}

.l-readMore--labelHeading .l-heading::before {
  content: none;
}

.l-readMore--labelHeading .l-cols {
  border-top: none;
}

/* .l-list--ttlOnBox */
.l-list--ttlOnBox {
  border-radius: 8px;
  border: 1px solid var(--l-txt-c-base);
  padding: clamp(20px, 2.5vw, 30px) clamp(15px, 2vw, 30px);
  padding-top: clamp(35px, 4vw, 50px);
  position: relative;
}

.block-editor-block-list__block.l-list--ttlOnBox .l-heading {
  transform: translateY(-180%);
}

/* l-tileCol--readMore */
.l-tileCol--readMore {
  position: relative;
  display: grid;
  overflow: hidden;
}

.l-tileCol--readMore.is-active {
  max-height: none;
}

.l-tileCol--readMore.is-active .l-btn--readMore {
  display: none !important;
}

.l-tileCol--readMore.is-active::after {
  display: none;
}

.l-tileCol--readMore::after {
  height: 200px;
  content: "";
  display: inline-block;
  background: linear-gradient(180deg, transparent 0%, var(--c-white) 100%);
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .l-tileCol--readMore {
    max-height: 900px;
  }
}
@media screen and (max-width: 767px) {
  .l-tileCol--readMore {
    max-height: 1200px;
  }
}
.block-editor-block-list__block.l-tileCol--readMore {
  max-height: none;
}

.block-editor-block-list__block.l-tileCol--readMore::after {
  content: none;
}

.l-btn--readMore {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.l-btn--readMore a::after,
.l-btn--readMore .wp-block-button__link:after {
  top: 45%;
  transform: rotate(90deg) translateY(-50%);
  transform-origin: 0 0;
}

.block-editor-block-list__block.l-btn--readMore {
  position: static;
  bottom: unset;
  left: unset;
  transform: unset;
}

.l-tileColReadMoreContainer {
  gap: 0px;
}

.l-tileColReadMoreContainer .l-heading {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .l-tileColReadMoreContainer:not(:first-child) {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .l-tileColReadMoreContainer:not(:first-child) {
    margin-top: 40px;
  }
}
/* l-freeTtl */
.l-freeTtl {
  margin-bottom: 30px;
}

.l-freeTtl--bg {
  border-left: 5px solid #95a636;
  background: var(--bg-c-gray, #f5f5f5);
}

.l-freeTtl--bd {
  border: 3px double var(--l-txt-c-base);
  border-left: none;
  border-right: none;
}

.l-freeTtl--bdl {
  border-left: 5px solid #95a636;
}

.l-freeTtl--ballon mark {
  display: block;
  text-align: center;
  color: var(--c-white);
  padding-block: 10px;
  position: relative;
}

.l-freeTtl--ballon mark::after {
  content: "";
  display: block;
  background-color: inherit;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 30px;
  height: 15px;
  position: absolute;
  top: 99%;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  h2.l-freeTtl {
    font-size: 20px;
  }
  h3.l-freeTtl {
    font-size: 18px;
  }
  h2.l-freeTtl--bg {
    padding: 15px 20px;
    margin-bottom: 30px;
  }
  h2.l-freeTtl--bd {
    padding: 15px 20px;
    margin-bottom: 30px;
  }
  h2.l-freeTtl--bdl {
    padding: 10px 20px;
    margin-bottom: 30px;
  }
  h3.l-freeTtl--bg {
    padding: 10px 20px;
    margin-bottom: 25px;
  }
  h3.l-freeTtl--bd {
    padding: 10px 20px;
    margin-bottom: 25px;
  }
  h3.l-freeTtl--bdl {
    padding: 10px 20px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  h2.l-freeTtl {
    font-size: 18px;
  }
  h3.l-freeTtl {
    font-size: 16px;
  }
  h2.l-freeTtl--bg {
    padding: 10px 15px;
    margin-bottom: 20px;
  }
  h2.l-freeTtl--bd {
    padding: 10px 15px;
    margin-bottom: 20px;
  }
  h2.l-freeTtl--bdl {
    padding: 10px 15px;
    margin-bottom: 20px;
  }
  h3.l-freeTtl--bg {
    padding: 10px 15px;
    margin-bottom: 15px;
  }
  h3.l-freeTtl--bd {
    padding: 10px 15px;
    margin-bottom: 15px;
  }
  h3.l-freeTtl--bdl {
    padding: 10px 15px;
    margin-bottom: 15px;
  }
}
/* l-balloon */
.l-balloon {
  margin-bottom: var(--l-sec-spc);
  align-items: flex-start;
}

.l-balloon--r {
  flex-direction: row-reverse;
}

.l-balloon--l .l-balloon__txt::before {
  right: 100%;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.l-balloon--r .l-balloon__txt::before {
  left: 100%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.l-balloon .l-figure img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.l-balloon__figure {
  flex-basis: unset !important;
  flex-grow: unset !important;
  flex: unset;
}

@media screen and (min-width: 768px) {
  .l-balloon__figure {
    width: 150px;
  }
}
@media screen and (max-width: 767px) {
  .l-balloon__figure {
    width: 60px;
    flex-basis: unset !important;
  }
}
.l-balloon__txt {
  flex: 1;
  --this-bg-color: var(--l-bg-c-main);
  background-color: var(--this-bg-color);
  border-radius: 10px;
  padding: clamp(15px, 2.5vw, 30px);
  position: relative;
}

.l-balloon__txt::before {
  content: "";
  display: inline-block;
  background: var(--this-bg-color);
  aspect-ratio: 15/18;
  position: absolute;
}

@media screen and (min-width: 768px) {
  .l-balloon__txt::before {
    width: 25px;
    top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-balloon__txt::before {
    width: 15px;
    top: 25px;
  }
}
.l-balloon__txt .l-paragraph {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .l-balloon__txt .l-paragraph {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .l-balloon {
    gap: var(--spc-50);
  }
}
@media screen and (max-width: 767px) {
  .l-balloon.l-cols {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-columns > .wp-block-column.l-cols__item.l-balloon__figure {
    flex-basis: unset !important;
  }
}
/* youtubeと動画 */
figure:has(iframe[src*="https://www.youtube.com/embed/"]),
figure:has(video) {
  margin-bottom: var(--l-sec-spc);
}

figure :is(iframe[src*="https://www.youtube.com/embed/"], video) {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

/* l-imgBox */
.l-imgBox {
  margin-bottom: var(--l-sec-spc);
  border-width: clamp(1px, 0.3vw, 4px);
  position: relative;
  padding: clamp(15px, 2.5vw, 30px);
  padding-top: clamp(30px, 3vw, 40px);
}

.l-imgBox .l-figure {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  left: clamp(15px, 2.5vw, 30px);
  z-index: 2;
  width: 50px;
}

.l-imgBox .l-figure img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}

.l-imgBox .l-paragraph {
  margin-top: 0;
}

.l-imgBox--double {
  border-style: double;
  border-color: var(--l-txt-c-base);
}

.l-imgBox--thick {
  border-style: solid;
  border-color: var(--l-theme-c-main);
}

.l-imgBox--dashed {
  border-style: dashed;
  border-color: var(--l-theme-c-sub);
}

/* l-quote */
blockquote.l-quote {
  border-left: 7px solid var(--l-theme-c-sub);
  background-color: var(--l-bg-c-main);
  position: relative;
  margin-bottom: var(--l-sec-spc);
}

blockquote.l-quote::before {
  content: "“";
  font-family: "游ゴシック体", "Yu Gothic", "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", "メイリオ", Meiryo, sans-serif;
  position: absolute;
  color: var(--l-theme-c-sub);
  line-height: 1;
}

blockquote.l-quote::after {
  content: none;
}

blockquote.l-quote cite {
  display: block;
  text-align: right;
  margin-top: 20px;
  font-size: 12px;
}

blockquote.l-quote cite::before {
  content: "";
  display: inline-block;
  background: var(--l-txt-c-base);
  width: 50px;
  height: 1px;
  margin-right: 10px;
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  blockquote.l-quote {
    padding: 30px 30px 30px 70px;
  }
  blockquote.l-quote::before {
    font-size: 80px;
    top: 10px;
    left: 20px;
  }
}
@media screen and (max-width: 767px) {
  blockquote.l-quote {
    padding: 20px 20px 20px 60px;
  }
  blockquote.l-quote::before {
    font-size: 80px;
    top: 10px;
    left: 10px;
  }
}
/* l-freeList */
:is(ul, ol).l-freeList {
  margin-bottom: var(--l-sec-spc);
}

:is(ul, ol).l-freeList *::marker {
  font-size: 0;
}

:is(ul, ol).l-freeList li {
  position: relative;
}

:is(ul, ol).l-freeList li:not(:last-child) {
  margin-bottom: clamp(10px, 1.3vw, 15px);
}

@media screen and (min-width: 768px) {
  :is(ul, ol).l-freeList li {
    padding-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  :is(ul, ol).l-freeList li {
    padding-left: 30px;
  }
}
ol.l-freeList--num {
  counter-reset: original-counter;
}

ol.l-freeList--num li::before {
  line-height: 0;
  display: block;
  position: absolute;
  left: 0;
  background-color: var(--l-bg-c-main);
  color: var(--l-theme-c-sub);
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0;
  text-align: center;
  content: "" counter(original-counter);
  counter-increment: original-counter;
}

@media screen and (min-width: 768px) {
  ol.l-freeList--num li::before {
    top: 0px;
    width: 25px;
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  ol.l-freeList--num li::before {
    top: 3px;
    width: 20px;
    font-size: 12px;
  }
}
:is(ul, ol).l-freeList--check li::before {
  content: "";
  display: inline-block;
  background: var(--l-bg-c-main) url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI3LjkuNiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDkuMDMgQnVpbGQgNTQ5ODYpICAtLT4KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSLjg6zjgqTjg6Tjg7xfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IgoJIHk9IjBweCIgdmlld0JveD0iMCAwIDMwMCAzMDAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMwMCAzMDA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbDojOTVBNjM2O30KPC9zdHlsZT4KPHBhdGggY2xhc3M9InN0MCIgZD0iTTExMC43LDI1MC45aC0xLjZjLTYuNi0wLjQtMTIuOC0zLjYtMTctOC43TDUuNSwxMzcuNGMtOC41LTEwLjMtNy0yNS40LDMuMi0zMy45bDAsMGMxMC4zLTguNSwyNS40LTcsMzMuOSwzLjJsMAowbDcwLjMsODUuMUwyNTkuNSw1NS41YzkuNy05LjEsMjUtOC41LDM0LjEsMS4yczguNSwyNS0xLjIsMzQuMUwxMjcuMSwyNDQuNUMxMjIuNiwyNDguNiwxMTYuOCwyNTAuOSwxMTAuNywyNTAuOXoiLz4KPC9zdmc+Cg==) no-repeat center center/60%;
  aspect-ratio: 1/1;
  display: block;
  position: absolute;
  left: 0;
}

@media screen and (min-width: 768px) {
  :is(ul, ol).l-freeList--check li::before {
    top: 0px;
    width: 25px;
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  :is(ul, ol).l-freeList--check li::before {
    top: 3px;
    width: 20px;
    font-size: 12px;
  }
}
/* l-productList__list */
.l-productList {
  margin-bottom: var(--l-sec-spc);
}

.l-productList__list {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(var(--this-item-width), 1fr));
  gap: 20px !important;
}

@media screen and (min-width: 768px) {
  .l-productList__list {
    --this-item-width: 160px;
  }
}
@media screen and (max-width: 767px) {
  .l-productList__list {
    --this-item-width: 140px;
  }
}
.l-productList :where(.is-layout-flex) {
  gap: 0;
}

.l-productList__item__thumb {
  margin-bottom: 8px !important;
}

.l-productList__item__thumb img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}

.l-productList__item__name {
  display: block;
  font-weight: 400;
  font-family: var(--ff-base);
  line-height: 1.6;
  margin-top: 8px;
}

@media screen and (min-width: 768px) {
  .l-productList__item__name {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .l-productList__item__name {
    font-size: 12px;
  }
}
.l-productList__item__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0 4px;
  margin-top: 8px;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.l-productList__item__price span {
  line-height: 1;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .l-productList__item__price span {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .l-productList__item__price span {
    font-size: 10px;
  }
}
@media screen and (min-width: 768px) {
  .l-productList__item__price {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .l-productList__item__price {
    font-size: 12px;
  }
}
.l-productList__item__link {
  width: 100%;
  justify-content: center;
  margin-top: 8px !important;
}

.l-productList__item__link a {
  display: block;
  width: 100% !important;
  text-align: center;
  padding: 0 !important;
  font-size: 12px;
}

/* l-productList fs上書き */
.fs-c-productListItem .fs-c-productPrice__main__price {
  font-size: 20px;
}

/* l-productDescription */
.l-productDescription .l-heading {
  text-align: left;
}

.l-productDescription + .l-productDescription {
  position: relative;
}

.l-productDescription + .l-productDescription::before {
  content: "";
  --this-color-1: var(--bd-c-gray);
  --this-color-2: transparent;
  --this-width: 8px;
  --this-height: 1px;
  --this-size: 3px;
  background-image: linear-gradient(to right, var(--this-color-1), var(--this-color-1) var(--this-size), var(--this-color-2) var(--this-size), var(--this-color-2) var(--this-width));
  background-size: var(--this-width) var(--this-height);
  background-repeat: repeat-x;
  width: 100%;
  height: var(--this-height);
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (min-width: 768px) {
  .l-productDescription + .l-productDescription {
    padding-top: var(--spc-50);
    margin-top: var(--spc-50);
  }
}
@media screen and (max-width: 767px) {
  .l-productDescription + .l-productDescription {
    padding-top: 30px;
    margin-top: 30px;
  }
}
/* l-productWorry */
.l-productWorry {
  border: 1px solid var(--bd-c-gray);
}

.l-productWorry .l-heading {
  text-align: left;
}

.l-productWorry :is(ul, ol).l-freeList {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .l-productWorry {
    padding: var(--spc-30) var(--spc-50);
    margin-top: var(--spc-50);
  }
  .l-productWorry :is(ul, ol).l-freeList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .l-productWorry :is(ul, ol).l-freeList--check li::before {
    width: 18px;
    top: 5px;
  }
  .l-productWorry :is(ul, ol).l-freeList li {
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-productWorry {
    padding: 20px 30px;
    margin-top: 30px;
  }
  .l-productWorry :is(ul, ol).l-freeList--check li::before {
    width: 15px;
    top: 3px;
  }
  .l-productWorry :is(ul, ol).l-freeList li {
    padding-left: 25px;
  }
}
/* l-productAccordion */
@media screen and (min-width: 768px) {
  .l-productAccordion {
    margin-top: var(--spc-50);
  }
}
@media screen and (max-width: 767px) {
  .l-productAccordion {
    margin-top: 30px;
  }
}
.l-productAccordion__heading {
  background-color: var(--bg-c-gray);
  position: relative;
}

.l-productAccordion__heading::before, .l-productAccordion__heading::after {
  content: "";
  display: inline-block;
  background-color: var(--txt-c-base);
  height: 1px;
  position: absolute;
}

.l-productAccordion__heading::after {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.l-productAccordion__heading.is-active::after {
  transform: rotate(0deg);
}

.l-productAccordion__heading .l-heading {
  text-align: left;
  margin-bottom: 0;
}

@media (hover: hover) {
  .l-productAccordion__heading:hover {
    cursor: pointer;
  }
}
@media screen and (min-width: 768px) {
  .l-productAccordion__heading {
    padding: 8px 15px;
  }
  .l-productAccordion__heading::before, .l-productAccordion__heading::after {
    width: 20px;
    right: 20px;
    top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-productAccordion__heading {
    padding: 5px 10px;
  }
  .l-productAccordion__heading::before, .l-productAccordion__heading::after {
    width: 15px;
    right: 15px;
    top: 25px;
  }
}
.l-productAccordion__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .l-productAccordion__body {
    width: 90%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .l-productAccordion__body {
    width: 100%;
    margin-inline: auto;
  }
}
.l-productAccordion__heading.is-active + .l-productAccordion__body {
  grid-template-rows: 1fr;
}

.l-productAccordion__table {
  width: 100%;
  border-collapse: collapse;
}

.l-productAccordion__table th {
  text-align: left;
  vertical-align: top;
}

@media screen and (min-width: 768px) {
  .l-productAccordion__table th {
    width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .l-productAccordion__table th {
    width: 100px;
  }
}
.l-productAccordion__table tr + tr :is(th, td) {
  position: relative;
}

.l-productAccordion__table tr + tr :is(th, td)::before {
  content: "";
  --this-color-1: var(--bd-c-gray);
  --this-color-2: transparent;
  --this-width: 8px;
  --this-height: 1px;
  --this-size: 3px;
  background-image: linear-gradient(to right, var(--this-color-1), var(--this-color-1) var(--this-size), var(--this-color-2) var(--this-size), var(--this-color-2) var(--this-width));
  background-size: var(--this-width) var(--this-height);
  background-repeat: repeat-x;
  width: 100%;
  height: var(--this-height);
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (min-width: 768px) {
  .l-productAccordion__table :is(th, td) {
    padding-block: var(--spc-30);
    font-size: var(--fz-18);
  }
}
@media screen and (max-width: 767px) {
  .l-productAccordion__table :is(th, td) {
    padding-block: var(--spc-20);
    font-size: 14px;
  }
} 

/*# sourceMappingURL=layout.css.map */
