@charset "UTF-8";
/* Reset SCSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  background: none;
  box-sizing: border-box; /* 全要素でボックスサイズを統一 */
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* body 基本設定 */
body {
  line-height: 1.5; /* 見やすい行間 */
  font-smoothing: antialiased; /* テキストを滑らかに表示 */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden !important; /* 横スクロールを防ぐ */
  background-color: #fff; /* 初期背景色 */
  color: #000; /* 初期文字色 */
}

/* リストのリセット */
ol, ul {
  list-style: none;
}

/* 引用符のリセット */
blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

/* テーブルのリセット */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%; /* テーブルのデフォルト幅を設定 */
}

/* a要素のリセット */
a {
  text-decoration: none; /* 下線を削除 */
  color: inherit; /* 親要素の色を継承 */
  cursor: pointer; /* マウスカーソルをポインターに設定 */
}

/* ボタン・フォーム要素のリセット */
button, input, select, textarea {
  margin: 0;
  padding: 0;
  font: inherit; /* フォントを親要素に合わせる */
  border: none; /* デフォルトのボーダーを削除 */
  background: none; /* 背景を削除 */
  box-shadow: none; /* シャドウを削除 */
  outline: none; /* フォーカス時のアウトラインを削除 */
}

/* 画像のリセット */
img {
  max-width: 100%; /* コンテナ幅に収める */
  height: auto; /* アスペクト比を維持 */
  display: block; /* ブロック要素として扱う */
}

/* iframeのリセット */
iframe {
  border: none; /* デフォルトの枠を削除 */
}

/* グローバル設定 */
* {
  box-sizing: border-box; /* コンテンツボックスを標準化 */
}

/* スクロールバーのスタイル（オプション、Chrome用） */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
  a[href*="tel:"] {
    pointer-events: none;
  }
}
.logo {
  display: flex;
  position: relative;
  width: 306px;
  height: 60px;
}
@media (max-width: 768px) {
  .logo {
    width: 176px; /* ロゴの幅 */
    height: 37px; /* ロゴの高さ */
  }
}
.logo::before {
  content: "";
  display: block;
  position: absolute;
  width: 94px; /* ロゴの幅 */
  height: 60px; /* ロゴの高さ */
  background-image: var(--main-logo); /* 左側のロゴ画像 */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .logo::before {
    width: 57px; /* ロゴの幅 */
    height: 37px; /* ロゴの高さ */
    background-image: var(--mobile-logo); /* 左側のロゴ画像 */
  }
}
.logo::after {
  content: "";
  display: block;
  position: absolute;
  width: 192px; /* ロゴの幅 */
  height: 45px; /* ロゴの高さ */
  background-image: var(--sub-logo); /* 右側のロゴ画像 */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  right: 0;
}
@media (max-width: 768px) {
  .logo::after {
    width: 112px; /* ロゴの幅 */
    height: 26px; /* ロゴの高さ */
    background-image: var(--mobile-sub-logo); /* 右側のロゴ画像 */
  }
}

nav:has(.logo) .logo {
  width: 85px;
  height: 55px;
  margin-bottom: 80px;
}
nav:has(.logo) .logo::before {
  width: 85px; /* ロゴの幅 */
  height: 55px; /* ロゴの高さ */
  background-image: var(--mobile-logo); /* 左側のロゴ画像 */
}
nav:has(.logo) .logo::after {
  display: none;
  width: 246px;
  height: 57px;
  background-image: var(--mobile-sub-logo); /* 左側のロゴ画像 */
}
@media (max-width: 768px) {
  nav:has(.logo) .logo {
    width: 56px;
    height: 36px;
    margin-bottom: 50px;
  }
  nav:has(.logo) .logo::before {
    background-image: var(--mobile-logo); /* 左側のロゴ画像 */
    width: 56px; /* ロゴの幅 */
    height: 36px; /* ロゴの高さ */
  }
  nav:has(.logo) .logo::after {
    display: none;
    background-image: var(--mobile-sub-logo); /* 左側のロゴ画像 */
    width: 156px;
    height: 36px;
  }
}

footer:has(.logo) .logo {
  width: 400px;
  height: 77px;
}
footer:has(.logo) .logo::before {
  width: 120px; /* ロゴの幅 */
  height: 77px; /* ロゴの高さ */
  background-image: var(--footer-logo); /* 左側のロゴ画像 */
}
footer:has(.logo) .logo::after {
  width: 246px;
  height: 57px;
  background-image: var(--footer-sub-logo); /* 左側のロゴ画像 */
}
@media (max-width: 768px) {
  footer:has(.logo) .logo {
    width: 245px;
    height: 50px;
  }
  footer:has(.logo) .logo::before {
    background-image: var(--mobile-footer-logo); /* 左側のロゴ画像 */
    width: 76px; /* ロゴの幅 */
    height: 48px; /* ロゴの高さ */
  }
  footer:has(.logo) .logo::after {
    display: block;
    background-image: var(--mobile-footer-sub-logo); /* 左側のロゴ画像 */
    width: 156px;
    height: 36px;
  }
}

.phone {
  width: 40px;
  height: 40px;
  background-image: url("../images/icons-tel-yellow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.times {
  width: 160px;
  height: 12px;
  margin-left: 10px;
  margin-bottom: 10px;
}
.times span {
  display: none;
}
.times::before {
  content: "9：00〜17：00【月〜土曜日】";
  font-size: 10px;
  color: #292320;
}

.phone_number {
  margin-left: 10px;
  width: 218px;
  height: 35px;
}
.phone_number span {
  display: none;
}
.phone_number::before {
  content: "0749-46-5250";
  font-family: var(--f-s);
  font-size: 35px;
  color: #000000;
  line-height: 1;
}

.phones {
  width: 270px;
  height: 60px;
  display: flex;
  justify-content: space-between;
}
.phones .phone {
  margin-top: 20px;
}
.phones .nums {
  width: 226px;
  height: 60px;
}

.mail {
  width: 24px;
  height: 16px;
  background-image: url("../images/icons-mail.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.inq-text {
  width: 64px;
  height: 24px;
}
.inq-text span {
  display: none;
}
.inq-text::before {
  content: "お問合せ";
  font-size: 16px;
  color: #000000;
  letter-spacing: -2px;
  line-height: 1;
}

.inq {
  width: 140px;
  height: 50px;
  display: flex;
  justify-content: center;
  background-color: var(--cl-s);
  border-radius: 5px;
  align-items: center;
}
.inq a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
  padding-right: 20px;
}

.hams {
  width: 50px;
  height: 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: 40px;
}
@media (max-width: 768px) {
  .hams {
    position: fixed;
    background-color: var(--cl-p);
    top: 72px;
    right: 0%;
    margin: 0;
    border-radius: 5px 0 0 5px;
    z-index: 1;
    width: 50px;
    height: 50px;
    padding: 15px 10px;
  }
}
.hams span {
  width: 70%;
  height: 4px;
  background-color: var(--black);
  border-radius: 30px;
}
.hams span:first-child {
  width: 100%;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--cl-header);
  color: #fff;
  padding: 10px;
}

/* --- 以下にレスポンシブヘッダースタイルを追加 --- */
header {
  width: 100%;
  height: 100px;
  background-color: var(--cl-header); /* 背景色 */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 60px;
}
@media (max-width: 768px) {
  header {
    padding: 0;
    height: 88px;
  }
}
header .container {
  width: 1920px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; /* 左右に配置 */
}
@media (max-width: 768px) {
  header .container {
    width: 100%;
    justify-content: center; /* 左右に配置 */
  }
}
header .logo {
  width: 306px;
}
@media (max-width: 768px) {
  header .logo {
    width: 176px; /* ロゴの幅 */
  }
}
header .menus {
  width: 510px;
  height: 60px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  header .menus {
    width: 100%;
    position: fixed;
    right: -100%;
    z-index: 1;
  }
}

@media (max-width: 768px) {
  header .header-container .menu {
    display: none;
    flex-direction: column;
    background-color: var(--cl-p);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 10px 0;
  }
  header .header-container .menu.show {
    display: flex;
  }
  header .header-container .menu-toggle {
    display: block;
  }
}
.header-menu-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.header-menu-container .close {
  position: fixed;
  top: 40px;
  right: 0;
  background-color: var(--cl-p);
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px 0 0 5px;
  color: var(--black);
  font-size: var(--fs-l);
}
.header-menu-container .header {
  width: 100%;
  display: flex;
  justify-content: center;
}
.header-menu-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: left;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-count: 2;
       column-count: 2;
  width: 800px;
  height: 300px;
}
@media (max-width: 768px) {
  .header-menu-container ul {
    width: 260px;
  }
}
.header-menu-container ul li {
  border-top: 0.5px solid #5f5f5f;
  border-bottom: 0.5px solid #5f5f5f;
  display: flex;
  justify-content: left;
  align-items: center;
  box-sizing: border-box;
  padding-left: 60px;
  width: 300px;
  height: 100px;
  margin: 0px 50px;
  font-size: 18px;
  font-family: var(--f-s);
}
@media (max-width: 768px) {
  .header-menu-container ul li {
    font-size: 16px;
    width: 100%;
    height: 70px;
    margin: 0px;
  }
}
.header-menu-container ul li .menu-subtitle {
  font-family: var(--f-p);
  font-size: 14px;
  display: block;
}
@media (max-width: 768px) {
  .header-menu-container ul li .menu-subtitle {
    font-size: 9px;
  }
}
.header-menu-container ul li a {
  text-decoration: none;
  color: var(--white);
  transition: color 0.3s ease;
}
.header-menu-container ul li a:hover {
  color: #3498db;
}
.header-menu-container .footer {
  width: 100%;
  display: flex;
  justify-content: center;
}
.header-menu-container.is-visible {
  display: flex;
  animation: fadeIn 0.5s ease-in-out;
  flex-wrap: wrap;
  flex-direction: column;
}

/* フェードインアニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
main {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
main section {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 120px;
}
main section.top {
  max-width: 1400px;
}
@media (max-width: 768px) {
  main section:not(.kv) {
    max-width: 330px;
  }
}
@media (max-width: 768px) {
  main section {
    margin-bottom: 60px;
  }
}
main section.kv {
  max-width: 1920px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: var(--white);
  margin-bottom: 60px;
  position: relative;
  height: auto;
  max-height: 1200px;
  z-index: 0;
}
main section.kv.pt2 {
  max-height: 580px;
}
main section.kv.pt2 img {
  max-width: 1920px;
  width: 100%;
}
@media (max-width: 768px) {
  main section.kv.pt2 img {
    max-height: 234px;
  }
}
main section.kv.nor {
  height: 280px;
  max-height: 280px;
}
@media (max-width: 768px) {
  main section.kv.nor {
    height: 100px;
    max-height: 100px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  main section.kv {
    margin-bottom: 20px;
  }
}
main section.kv img {
  max-width: 1920px;
  width: 100%;
}
@media (max-width: 768px) {
  main section.kv img {
    max-height: 607px;
  }
}
main section.kv div.title {
  z-index: 1;
  position: absolute;
  bottom: 0;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  main section.kv div.title {
    margin-bottom: 0px;
    z-index: 1;
  }
}
main section.kv div.title h2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--f-s);
}
@media (min-width: 992px) {
  main section.kv div.title h2 {
    font-size: 50px;
  }
  body.block-editor-page main section.kv div.title h2 {
    font-size: calc(50px * 0.6);
  }
}
@media (max-width: 768px) {
  main section.kv div.title h2 {
    font-size: 28px;
  }
}
main section.kv div.title h2.single {
  font-family: var(--f-p) !important;
}
main section.kv div.title h2 span {
  font-family: var(--f-p);
  font-weight: var(--fw-sb);
  display: block;
  width: 100%;
  text-align: center;
}
@media (min-width: 992px) {
  main section.kv div.title h2 span {
    font-size: 20px;
  }
  body.block-editor-page main section.kv div.title h2 span {
    font-size: calc(20px * 0.6);
  }
}
@media (max-width: 768px) {
  main section.kv div.title h2 span {
    font-size: 12px;
  }
}

footer {
  position: sticky;
  top: 100vh;
  background-color: var(--cl-p);
  color: #fff;
  padding: 10px;
  text-align: center;
  height: 420px;
  width: 100%;
  max-width: 1920px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}
@media (max-width: 768px) {
  footer {
    height: 590px;
    margin-bottom: 55px;
  }
}
footer .inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  height: 280px;
}
@media (max-width: 768px) {
  footer .inner {
    height: 516px;
  }
}
footer .inner .container {
  width: 100%;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  footer .inner .container {
    box-sizing: border-box;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 50px;
  }
}
footer .inner .container .logos {
  display: flex;
  flex-wrap: wrap;
  width: 410px;
  height: 140px;
}
@media (max-width: 768px) {
  footer .inner .container .logos {
    justify-content: center;
    width: 300px;
    height: 115px;
  }
}
footer .inner .container .logos span {
  display: flex;
  color: #000;
  font-size: 12px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  footer .inner .container .logos span {
    font-size: 10px;
  }
}
footer .inner .container .logos span:first-of-type {
  color: #fff;
  font-size: 17px;
}
@media (max-width: 768px) {
  footer .inner .container .logos span:first-of-type {
    font-size: 12px;
  }
}
footer .inner .container .info {
  width: 400px;
  height: 140px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  footer .inner .container .info {
    display: flex;
    justify-content: center;
    height: 105px;
  }
}
footer .inner .container .info dl {
  display: flex;
  color: #fff;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 768px) {
  footer .inner .container .info dl {
    width: 330px;
  }
}
footer .inner .container .info dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid #fff 1px;
  width: 70px;
  height: 20px;
  font-size: 12px;
}
@media (max-width: 768px) {
  footer .inner .container .info dl dt {
    font-size: 10px;
  }
}
footer .inner .container .info dl dd {
  padding-left: 15px;
  display: flex;
  justify-content: left;
  width: calc(100% - 70px);
  font-size: 14px;
}
@media (max-width: 768px) {
  footer .inner .container .info dl dd {
    font-size: 10px;
  }
}
footer .inner .container .maps {
  width: 430px;
  height: 100%;
}
footer .inner .container .maps iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  footer .inner .container .maps {
    width: 330px;
    height: 160px;
  }
}
footer .copylight {
  width: 100%;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #000;
  font-size: 14px;
}
@media (max-width: 768px) {
  footer .copylight {
    height: 74px;
    font-size: 9px;
  }
}

.mobmenu {
  display: none;
  width: 100%;
  height: 55px;
  background-color: var(--white);
  position: fixed; /* ビューポートに対して固定 */
  bottom: 0; /* 画面の下に固定 */
  left: 50%; /* 中央揃え */
  transform: translateX(-50%); /* 水平方向の中央揃え調整 */
  z-index: 999; /* 他の要素より前面に表示 */
}
@media (max-width: 768px) {
  .mobmenu {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.mobmenu ul {
  height: 40px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.mobmenu ul li {
  display: flex;
  width: 110px;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: unset;
}
.mobmenu ul li a {
  width: 100%;
  height: 100%;
  position: relative;
}
.mobmenu ul li a::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 50%;
  transform: translateX(-50%);
  top: 15%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.mobmenu ul li a::after {
  color: var(--black);
  font-size: 8px;
  font-weight: var(--fw-m);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 12px;
  bottom: 8%;
}
.mobmenu ul li:first-child a::before {
  width: 20px;
  height: 20px;
  left: 50%;
  top: 8%;
  transform: translateX(-50%);
  background-image: var(--mobmenu-phone);
}
.mobmenu ul li:first-child a::after {
  content: var(--mobmenu-phone-text);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.mobmenu ul li:nth-child(2) {
  border-left: 0.5px solid var(--black);
  border-right: 0.5px solid var(--black);
}
.mobmenu ul li:nth-child(2) a::before {
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 16px;
  background-image: var(--mobmenu-email);
}
.mobmenu ul li:nth-child(2) a::after {
  content: var(--mobmenu-email-text);
  left: 50%;
  transform: translateX(-50%);
}
.mobmenu ul li:last-child a::before {
  width: 15px;
  height: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-image: var(--mobmenu-map);
}
.mobmenu ul li:last-child a::after {
  content: var(--mobmenu-map-text);
  left: 50%;
  transform: translateX(-50%);
}

/* 変数 */
/* 共通スタイル */
/* フォーム全体 */
form#contactForm {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}
@media (min-width: 992px) {
  form#contactForm {
    font-size: 18px;
  }
  body.block-editor-page form#contactForm {
    font-size: calc(18px * 0.6);
  }
}
@media (max-width: 768px) {
  form#contactForm {
    font-size: 12px;
  }
}
form#contactForm .formBlock {
  height: 90px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  form#contactForm .formBlock {
    height: 60px;
    margin-bottom: 25px;
  }
}
form#contactForm .formBlock:has(textarea) {
  height: auto;
  min-height: 90px;
}
form#contactForm.conf .formBlock {
  display: flex;
}
@media (max-width: 768px) {
  form#contactForm.conf .formBlock {
    width: 100%;
    flex-wrap: wrap;
  }
}
form#contactForm.conf .formBlock label {
  width: 30%;
}
@media (max-width: 768px) {
  form#contactForm.conf .formBlock label {
    width: 100%;
  }
}
form#contactForm.conf .formBlock .txt {
  width: 70%;
}
@media (max-width: 768px) {
  form#contactForm.conf .formBlock .txt {
    width: 100%;
  }
}
form#contactForm label {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  height: 30px;
}
@media (min-width: 992px) {
  form#contactForm label {
    font-size: 18px;
  }
  body.block-editor-page form#contactForm label {
    font-size: calc(18px * 0.6);
  }
}
@media (max-width: 768px) {
  form#contactForm label {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  form#contactForm label {
    height: 15px;
  }
}
form#contactForm label.req::after {
  display: flex;
  justify-content: center;
  align-items: center;
  content: "必 須";
  background-color: #A30022;
  color: var(--white);
  font-weight: var(--fw-m);
  border-radius: 20px;
  height: 16px;
  width: 42px;
  margin-left: 12px;
}
@media (min-width: 992px) {
  form#contactForm label.req::after {
    font-size: 10px;
  }
  body.block-editor-page form#contactForm label.req::after {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  form#contactForm label.req::after {
    font-size: 8px;
  }
}
@media (max-width: 768px) {
  form#contactForm label.req::after {
    margin-left: 6px;
  }
}
form#contactForm input[type=text],
form#contactForm input[type=email],
form#contactForm textarea {
  width: 100%;
  padding: 20px 20px 10px 20px;
  margin-bottom: 15px;
  border-bottom: 1px solid #353126;
  font-weight: var(--fw-m);
  box-sizing: border-box;
  background-color: #EDEDED;
}
@media (min-width: 992px) {
  form#contactForm input[type=text],
  form#contactForm input[type=email],
  form#contactForm textarea {
    font-size: 16px;
  }
  body.block-editor-page form#contactForm input[type=text],
  body.block-editor-page form#contactForm input[type=email],
  body.block-editor-page form#contactForm textarea {
    font-size: calc(16px * 0.6);
  }
}
@media (max-width: 768px) {
  form#contactForm input[type=text],
  form#contactForm input[type=email],
  form#contactForm textarea {
    font-size: 12px;
  }
}
form#contactForm input[type=text]::-moz-placeholder, form#contactForm input[type=email]::-moz-placeholder, form#contactForm textarea::-moz-placeholder {
  color: #CACACA;
}
form#contactForm input[type=text]::placeholder,
form#contactForm input[type=email]::placeholder,
form#contactForm textarea::placeholder {
  color: #CACACA;
}
@media (max-width: 768px) {
  form#contactForm input[type=text],
  form#contactForm input[type=email],
  form#contactForm textarea {
    padding: 10px 10px 5px 10px;
  }
}
form#contactForm input[type=checkbox] {
  margin-right: 8px;
}
form#contactForm textarea {
  resize: vertical;
  min-height: 100px;
}
form#contactForm .button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
form#contactForm button {
  background-color: var(--cl-p);
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  width: 340px;
  height: 60px;
}
@media (min-width: 992px) {
  form#contactForm button {
    font-size: 18px;
  }
  body.block-editor-page form#contactForm button {
    font-size: calc(18px * 0.6);
  }
}
@media (max-width: 768px) {
  form#contactForm button {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  form#contactForm button {
    width: 280px;
    height: 55px;
  }
  form#contactForm button:first-child {
    margin-bottom: 20px;
  }
}
form#contactForm button:hover {
  background-color: #005bb5;
}
form#contactForm a {
  color: var(--black);
  text-decoration: none;
}
form#contactForm a:hover {
  text-decoration: underline;
}
form#contactForm a.privacyPolicy {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-top: 20px;
}
@media (max-width: 768px) {
  form#contactForm a.privacyPolicy {
    margin-top: 10px;
  }
}
form#contactForm a.privacyPolicy::before {
  content: "";
  background-image: url(../images/i-check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 5px;
}

.wp-block-columns:not(.block-editor-block-list__block) {
  margin: auto;
  width: auto;
  width: 100%;
  max-width: 1000px;
}

section.top .wp-block-columns {
  width: 100%;
  max-width: 1400px;
}
@media (max-width: 768px) {
  section.top .wp-block-columns {
    max-width: 330px;
  }
}
section.top > .wp-block-columns:last-child {
  margin-bottom: 0 !important;
}
section > .wp-block-columns:last-child {
  margin-bottom: 0;
}

.wp-block-columns {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .wp-block-columns {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 20px;
    gap: 0px;
  }
}
@media (max-width: 480px) {
  .wp-block-columns {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }
}
.wp-block-columns .wp-block-column {
  padding: 0px;
  margin: 0;
}
.wp-block-columns div.block-editor-block-list__block {
  width: 100%;
  margin: 0;
  padding: 0;
}
.wp-block-columns .block-editor-block-list__block {
  margin: 0;
  padding: 0;
}

.wp-block-group {
  width: 100%;
  max-width: 1920px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.wp-block-group > * {
  padding: 10px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .wp-block-group {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 480px) {
  .wp-block-group {
    grid-template-columns: 1fr;
  }
}
.default-heading,
.style-1,
.style-2,
.style-3 {
  margin: 0;
  line-height: 1.4;
  font-family: var(--primary-font);
}

.default-heading {
  font-size: var(--body-font-size);
}

.style-1 {
  background-color: var(--primary-color);
  font-size: var(--fs-l);
  font-weight: var(--font-weight-blod);
}

.style-2 {
  display: flex;
  justify-content: center;
  background-color: var(--primary-color);
  font-size: var(--fs-m);
  color: var(--body-font-color-02);
}

.style-3 {
  font-size: var(--fs-s);
  text-transform: uppercase;
}

/* スタイル 1 */
.is-style-style-1 {
  color: #333;
}

/* スタイル 2 */
.is-style-style-2 {
  font-size: 20px;
  color: #0073aa;
  text-transform: uppercase;
}

/* スタイル 3 */
body.block-editor-page .is-style-style-3,
.is-style-style-3 {
  font-size: 28px;
  color: var(--body-font-color);
  font-style: italic;
  display: flex;
  justify-content: center;
  background-color: var(--primary-color);
}

body.block-editor-page .is-style-head-28pxM,
.is-style-head-28pxM {
  font-weight: var(--fw-m);
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  body.block-editor-page .is-style-head-28pxM,
  .is-style-head-28pxM {
    font-size: 28px;
  }
  body.block-editor-page body.block-editor-page .is-style-head-28pxM,
  body.block-editor-page .is-style-head-28pxM {
    font-size: calc(28px * 0.6);
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-head-28pxM,
  .is-style-head-28pxM {
    font-size: 18px;
  }
}

body.block-editor-page .is-style-head-privacy,
.is-style-head-privacy {
  font-weight: var(--fw-m);
  border-bottom: 0.5px solid #D7D6D4;
  padding-bottom: 20px;
  margin-top: 60px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  body.block-editor-page .is-style-head-privacy,
  .is-style-head-privacy {
    font-size: 20px;
  }
  body.block-editor-page body.block-editor-page .is-style-head-privacy,
  body.block-editor-page .is-style-head-privacy {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-head-privacy,
  .is-style-head-privacy {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-head-privacy,
  .is-style-head-privacy {
    margin-top: 50px;
  }
}

body.block-editor-page .is-style-head-privacyBorder,
.is-style-head-privacyBorder {
  font-weight: var(--fw-m);
  padding: 15px 24px;
  margin-top: 60px;
  margin-bottom: 20px;
  border: 1px solid #D7D6D4;
}
@media (min-width: 992px) {
  body.block-editor-page .is-style-head-privacyBorder,
  .is-style-head-privacyBorder {
    font-size: 20px;
  }
  body.block-editor-page body.block-editor-page .is-style-head-privacyBorder,
  body.block-editor-page .is-style-head-privacyBorder {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-head-privacyBorder,
  .is-style-head-privacyBorder {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-head-privacyBorder,
  .is-style-head-privacyBorder {
    margin-top: 50px;
  }
}

body.block-editor-page .is-style-head-blueBackWhiteText,
.is-style-head-blueBackWhiteText {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-weight: var(--fw-sb);
  color: var(--white);
  background-color: var(--cl-p);
  padding: 18px 0;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  body.block-editor-page .is-style-head-blueBackWhiteText,
  .is-style-head-blueBackWhiteText {
    font-size: 28px;
  }
  body.block-editor-page body.block-editor-page .is-style-head-blueBackWhiteText,
  body.block-editor-page .is-style-head-blueBackWhiteText {
    font-size: calc(28px * 0.6);
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-head-blueBackWhiteText,
  .is-style-head-blueBackWhiteText {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-head-blueBackWhiteText,
  .is-style-head-blueBackWhiteText {
    padding: 10px 0;
    margin-bottom: 20px;
  }
}

body.block-editor-page .is-style-head-blueText22px,
.is-style-head-blueText22px {
  font-weight: var(--fw-sb);
  color: var(--cl-p);
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  body.block-editor-page .is-style-head-blueText22px,
  .is-style-head-blueText22px {
    font-size: 22px;
  }
  body.block-editor-page body.block-editor-page .is-style-head-blueText22px,
  body.block-editor-page .is-style-head-blueText22px {
    font-size: calc(22px * 0.6);
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-head-blueText22px,
  .is-style-head-blueText22px {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-head-blueText22px,
  .is-style-head-blueText22px {
    margin-bottom: 10px;
  }
}

body.block-editor-page .is-style-head-Text28px,
.is-style-head-Text28px {
  font-weight: var(--fw-m);
  color: var(--black);
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  body.block-editor-page .is-style-head-Text28px,
  .is-style-head-Text28px {
    font-size: 28px;
  }
  body.block-editor-page body.block-editor-page .is-style-head-Text28px,
  body.block-editor-page .is-style-head-Text28px {
    font-size: calc(28px * 0.6);
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-head-Text28px,
  .is-style-head-Text28px {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-head-Text28px,
  .is-style-head-Text28px {
    margin-bottom: 10px;
  }
}

body.block-editor-page .is-style-head-WhiteText32px,
.is-style-head-WhiteText32px {
  font-size: 32px;
  font-weight: var(--fw-b);
  color: var(--cl-p);
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-head-WhiteText32px,
  .is-style-head-WhiteText32px {
    font-size: 16px;
  }
}

body.block-editor-page .is-style-head-2ndColorText32px,
.is-style-head-2ndColorText32px {
  display: flex;
  justify-content: left;
  font-size: 32px;
  font-weight: var(--fw-b);
  color: var(--cl-s);
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-head-2ndColorText32px,
  .is-style-head-2ndColorText32px {
    font-size: 16px;
    justify-content: flex-start;
  }
}

body.block-editor-page .is-style-head-spCaution,
.is-style-head-spCaution {
  font-size: 12px;
  font-weight: var(--fw-m);
  padding: 15px;
  color: var(--black);
  border-bottom: 1px solid var(--black);
}
@media (min-width: 992px) {
  body.block-editor-page .is-style-head-spCaution,
  .is-style-head-spCaution {
    display: none;
  }
}
body.block-editor-page .is-style-head-spCaution::before,
.is-style-head-spCaution::before {
  content: "※";
}

body.block-editor-page .is-style-head-spCaution {
  display: flex;
  font-size: 16px;
}

body.block-editor-page .is-style-head-subTitle,
.is-style-head-subTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--f-s);
  flex-wrap: wrap;
  flex-direction: column;
  font-weight: var(--fw-b);
  color: var(--black);
}
@media (min-width: 992px) {
  body.block-editor-page .is-style-head-subTitle,
  .is-style-head-subTitle {
    font-size: 50px;
  }
  body.block-editor-page body.block-editor-page .is-style-head-subTitle,
  body.block-editor-page .is-style-head-subTitle {
    font-size: calc(50px * 0.6);
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-head-subTitle,
  .is-style-head-subTitle {
    font-size: 36px;
  }
}
body.block-editor-page .is-style-head-subTitle span,
.is-style-head-subTitle span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--f-p);
  font-weight: var(--fw-sb);
}
@media (min-width: 992px) {
  body.block-editor-page .is-style-head-subTitle span,
  .is-style-head-subTitle span {
    font-size: 20px;
  }
  body.block-editor-page body.block-editor-page .is-style-head-subTitle span,
  body.block-editor-page .is-style-head-subTitle span {
    font-size: calc(20px * 0.6);
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-head-subTitle span,
  .is-style-head-subTitle span {
    font-size: 12px;
  }
}

body.block-editor-page .is-style-head-whiteSpan,
.is-style-head-whiteSpan {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--f-p);
  font-weight: var(--fw-sb);
  color: var(--white);
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-head-whiteSpan,
  .is-style-head-whiteSpan {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  body.block-editor-page .is-style-head-whiteSpan,
  .is-style-head-whiteSpan {
    font-size: 36px;
  }
  body.block-editor-page body.block-editor-page .is-style-head-whiteSpan,
  body.block-editor-page .is-style-head-whiteSpan {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-head-whiteSpan,
  .is-style-head-whiteSpan {
    font-size: 18px;
  }
}
body.block-editor-page .is-style-head-whiteSpan span,
.is-style-head-whiteSpan span {
  font-family: var(--f-p);
  font-weight: var(--fw-sb);
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-head-whiteSpan span,
  .is-style-head-whiteSpan span {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 992px) {
  body.block-editor-page .is-style-head-whiteSpan span,
  .is-style-head-whiteSpan span {
    font-size: 24px;
  }
  body.block-editor-page body.block-editor-page .is-style-head-whiteSpan span,
  body.block-editor-page .is-style-head-whiteSpan span {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-head-whiteSpan span,
  .is-style-head-whiteSpan span {
    font-size: 14px;
  }
}

.wp-block-column:has(> .responsive-image-block) {
  display: flex;
  flex-direction: column;
}

.responsive-image-block {
  display: flex;
  justify-content: var(--pc-alignment, center);
  align-items: var(--pc-vertical-alignment, center);
  width: 100%;
  height: var(--pc-height, auto);
  position: relative;
  flex-grow: 1;
}
.responsive-image-block .image-preview {
  width: 100%;
  height: 100%;
}
.responsive-image-block picture {
  display: block;
  width: var(--pc-width, 100%);
  height: auto;
  max-width: 100%;
}
@media (max-width: 768px) {
  .responsive-image-block picture {
    width: var(--mobile-width, 100%);
  }
}
.responsive-image-block img {
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--pc-alignment, center) var(--pc-vertical-alignment, center);
     object-position: var(--pc-alignment, center) var(--pc-vertical-alignment, center);
  display: block;
}
.responsive-image-block source {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .responsive-image-block {
    justify-content: var(--mobile-alignment, center);
    align-items: var(--mobile-vertical-alignment, center);
  }
}

.responsive-image-block.center {
  justify-content: center;
}

.responsive-image-block.start {
  justify-content: flex-start;
}

.responsive-image-block.end {
  justify-content: flex-end;
}

.responsive-image-block.align-top {
  align-items: flex-start;
}

.responsive-image-block.align-bottom {
  align-items: flex-end;
}

/* 投稿スタイル 1 */
.is-style-post-style-1 .wp-block-post {
  background-color: #f0f8ff;
  padding: 20px;
  border-radius: 8px;
  border: 2px solid #0073aa;
}

/* 投稿スタイル 2 */
.is-style-post-style-2 .wp-block-post {
  background-color: #ffe4e1;
  padding: 20px;
  border-radius: 8px;
  border: 2px dashed #ff4500;
}

/* 投稿スタイル 3 */
.is-style-post-style-3 .wp-block-post {
  background-color: #e6ffe6;
  padding: 20px;
  border-radius: 8px;
  border: 2px solid #32cd32;
}

.wp-block-query {
  /* 横一列のグループ */
  /* タイトルのスタイル */
}
.wp-block-query .post-meta-row {
  display: flex; /* 横並びにする */
  align-items: center; /* 中央揃え */
  gap: 15px; /* 各要素の間隔 */
  margin-bottom: 20px; /* グループ全体の余白 */
  padding-bottom: 20px;
  /* 投稿の日付のスタイル */
  /* カテゴリーのスタイル */
  /* タイトルのスタイル */
  border-bottom: 0.5px solid #000;
}
.wp-block-query .post-meta-row div {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  height: 24px;
}
.wp-block-query .post-meta-row .post-date {
  display: flex;
  align-items: center;
  white-space: normal;
  width: 80px;
}
@media (min-width: 992px) {
  .wp-block-query .post-meta-row .post-date {
    font-size: 12px;
  }
  body.block-editor-page .wp-block-query .post-meta-row .post-date {
    font-size: calc(12px * 0.6);
  }
}
@media (max-width: 768px) {
  .wp-block-query .post-meta-row .post-date {
    font-size: calc(12px * 0.8);
  }
}
.wp-block-query .post-meta-row .category-list {
  height: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background-color: var(--cl-p);
  color: var(--white);
  width: 100px;
}
@media (min-width: 992px) {
  .wp-block-query .post-meta-row .category-list {
    font-size: 9px;
  }
  body.block-editor-page .wp-block-query .post-meta-row .category-list {
    font-size: 9px;
  }
}
@media (max-width: 768px) {
  .wp-block-query .post-meta-row .category-list {
    font-size: 8px;
  }
}
.wp-block-query .post-meta-row .category-list a {
  color: var(--white);
}
@media (min-width: 992px) {
  .wp-block-query .post-meta-row .category-list a {
    font-size: 9px;
  }
  body.block-editor-page .wp-block-query .post-meta-row .category-list a {
    font-size: 9px;
  }
}
@media (max-width: 768px) {
  .wp-block-query .post-meta-row .category-list a {
    font-size: 8px;
  }
}
.wp-block-query .post-meta-row .title {
  display: flex;
  align-items: center;
  font-weight: var(--fw-m);
  color: var(--black);
}
.wp-block-query .post-meta-row .title a {
  color: var(--black);
}

/* デフォルトの矢印 */
.wp-block-query-pagination-previous::before {
  content: ""; /* 左向き矢印 */
  margin-right: 5px;
  color: #0073aa;
}

.wp-block-query-pagination-next::after {
  content: ""; /* 右向き矢印 */
  margin-left: 5px;
  color: #0073aa;
}

/* バリエーション1: 丸いボタン */
.is-style-rounded .wp-block-query-pagination-previous,
.is-style-rounded .wp-block-query-pagination-next {
  background-color: #0073aa;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

/* バリエーション2: アイコンフォントを使用 */
.is-style-icons .wp-block-query-pagination-previous span {
  display: none;
}
.is-style-icons .wp-block-query-pagination-previous::before {
  content: "<"; /* 左矢印アイコン */
  margin-right: 5px;
}
.is-style-icons .wp-block-query-pagination-next span {
  display: none;
}
.is-style-icons .wp-block-query-pagination-next::after {
  content: ">"; /* 右矢印アイコン */
  margin-left: 5px;
}

.news_list {
  /* 横一列のグループ */
}
.news_list .post-meta-row {
  display: flex; /* 横並びにする */
  align-items: center; /* 中央揃え */
  margin-bottom: 20px; /* グループ全体の余白 */
  padding-bottom: 20px;
  /* 投稿の日付のスタイル */
  /* カテゴリーのスタイル */
  /* タイトルのスタイル */
  border-bottom: 0.5px solid #000;
}
@media (max-width: 768px) {
  .news_list .post-meta-row {
    flex-wrap: wrap;
  }
}
.news_list .post-meta-row div {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  height: 24px;
}
.news_list .post-meta-row .post-date {
  font-family: var(--f-s);
  display: flex;
  align-items: center;
  white-space: normal;
  width: 80px;
}
@media (min-width: 992px) {
  .news_list .post-meta-row .post-date {
    font-size: 12px;
  }
  body.block-editor-page .news_list .post-meta-row .post-date {
    font-size: calc(12px * 0.6);
  }
}
@media (max-width: 768px) {
  .news_list .post-meta-row .post-date {
    font-size: calc(12px * 0.8);
  }
}
.news_list .post-meta-row .category-list {
  height: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background-color: var(--cl-p);
  color: var(--white);
  width: 100px;
}
@media (min-width: 992px) {
  .news_list .post-meta-row .category-list {
    font-size: 9px;
  }
  body.block-editor-page .news_list .post-meta-row .category-list {
    font-size: calc(9px * 0.6);
  }
}
@media (max-width: 768px) {
  .news_list .post-meta-row .category-list {
    font-size: calc(9px * 0.8);
  }
}
.news_list .post-meta-row .category-list a {
  color: var(--white);
}
@media (min-width: 992px) {
  .news_list .post-meta-row .category-list a {
    font-size: 9px;
  }
  body.block-editor-page .news_list .post-meta-row .category-list a {
    font-size: calc(9px * 0.6);
  }
}
@media (max-width: 768px) {
  .news_list .post-meta-row .category-list a {
    font-size: calc(9px * 0.8);
  }
}
.news_list .post-meta-row .title {
  display: flex;
  align-items: center;
  font-weight: var(--fw-m);
  color: var(--black);
  padding-left: 30px;
}
.news_list .post-meta-row .title a {
  color: var(--black);
}
@media (min-width: 992px) {
  .news_list .post-meta-row .title a {
    font-size: 16px;
  }
  body.block-editor-page .news_list .post-meta-row .title a {
    font-size: calc(16px * 0.6);
  }
}
@media (max-width: 768px) {
  .news_list .post-meta-row .title a {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .news_list .post-meta-row .title {
    width: 100%;
    padding-left: 0;
  }
}

body.block-editor-page p,
p {
  margin: 0;
  padding: 0;
}
body.block-editor-page p.is-style-default,
p.is-style-default {
  font-size: var(--fs);
  line-height: 2;
}
body.block-editor-page p.is-style-p-privacy,
p.is-style-p-privacy {
  line-height: 2;
  font-weight: var(--fw-n);
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  body.block-editor-page p.is-style-p-privacy,
  p.is-style-p-privacy {
    font-size: 14px;
  }
  body.block-editor-page body.block-editor-page p.is-style-p-privacy,
  body.block-editor-page p.is-style-p-privacy {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page p.is-style-p-privacy,
  p.is-style-p-privacy {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page p.is-style-p-privacy,
  p.is-style-p-privacy {
    font-weight: var(--fw-l);
  }
}
body.block-editor-page p.is-style-p-textRight,
p.is-style-p-textRight {
  line-height: 2;
  font-weight: var(--fw-n);
  margin-bottom: 1rem;
  text-align: right;
}
@media (min-width: 992px) {
  body.block-editor-page p.is-style-p-textRight,
  p.is-style-p-textRight {
    font-size: 14px;
  }
  body.block-editor-page body.block-editor-page p.is-style-p-textRight,
  body.block-editor-page p.is-style-p-textRight {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page p.is-style-p-textRight,
  p.is-style-p-textRight {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page p.is-style-p-textRight,
  p.is-style-p-textRight {
    font-weight: var(--fw-l);
  }
}
body.block-editor-page p.is-style-p-blue22px,
p.is-style-p-blue22px {
  line-height: 2;
  color: var(--cl-p);
}
@media (min-width: 992px) {
  body.block-editor-page p.is-style-p-blue22px,
  p.is-style-p-blue22px {
    font-size: 22px;
  }
  body.block-editor-page body.block-editor-page p.is-style-p-blue22px,
  body.block-editor-page p.is-style-p-blue22px {
    font-size: calc(22px * 0.6);
  }
}
@media (max-width: 768px) {
  body.block-editor-page p.is-style-p-blue22px,
  p.is-style-p-blue22px {
    font-size: calc(22px * 0.8);
  }
}
@media (min-width: 992px) {
  body.block-editor-page p.is-style-p-24px,
  p.is-style-p-24px {
    font-size: 24px;
  }
  body.block-editor-page body.block-editor-page p.is-style-p-24px,
  body.block-editor-page p.is-style-p-24px {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page p.is-style-p-24px,
  p.is-style-p-24px {
    font-size: 12px;
  }
}
body.block-editor-page p.is-style-p-24pxM,
p.is-style-p-24pxM {
  font-weight: var(--fw-m);
}
@media (min-width: 992px) {
  body.block-editor-page p.is-style-p-24pxM,
  p.is-style-p-24pxM {
    font-size: 24px;
  }
  body.block-editor-page body.block-editor-page p.is-style-p-24pxM,
  body.block-editor-page p.is-style-p-24pxM {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page p.is-style-p-24pxM,
  p.is-style-p-24pxM {
    font-size: 12px;
  }
}
body.block-editor-page p.is-style-p-blackBtn,
p.is-style-p-blackBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background-color: #000;
  color: #fff;
  width: 100%;
  height: 57px;
  font-weight: var(--fw-b);
}
@media (min-width: 992px) {
  body.block-editor-page p.is-style-p-blackBtn,
  p.is-style-p-blackBtn {
    font-size: 22px;
  }
  body.block-editor-page body.block-editor-page p.is-style-p-blackBtn,
  body.block-editor-page p.is-style-p-blackBtn {
    font-size: calc(22px * 0.6);
  }
}
@media (max-width: 768px) {
  body.block-editor-page p.is-style-p-blackBtn,
  p.is-style-p-blackBtn {
    font-size: 15px;
  }
}
body.block-editor-page p.is-style-p-inlineBorder,
p.is-style-p-inlineBorder {
  display: inline-block;
  border: 1px solid var(--black);
  line-height: 2;
  color: var(--black);
  padding: 0.3rem 0.5rem;
}
@media (min-width: 992px) {
  body.block-editor-page p.is-style-p-inlineBorder,
  p.is-style-p-inlineBorder {
    font-size: 20px;
  }
  body.block-editor-page body.block-editor-page p.is-style-p-inlineBorder,
  body.block-editor-page p.is-style-p-inlineBorder {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page p.is-style-p-inlineBorder,
  p.is-style-p-inlineBorder {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page p.is-style-p-inlineBorder,
  p.is-style-p-inlineBorder {
    padding: 2px auto;
    padding: 0.1em !important;
    width: 100% !important;
    text-align: center;
  }
}
@media (max-width: 768px) {
  body.block-editor-page p.is-style-p-phoneLink,
  p.is-style-p-phoneLink {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 55px;
  }
}
body.block-editor-page p.is-style-p-phoneLink a,
p.is-style-p-phoneLink a {
  font-family: var(--f-s);
  font-size: 70px;
  color: var(--black);
  position: relative;
  padding-left: 80px;
}
body.block-editor-page p.is-style-p-phoneLink a::before,
p.is-style-p-phoneLink a::before {
  content: "";
  background-image: url(../icons/icons-tel-blue.svg);
  background-size: cover;
  width: 80px;
  height: 80px;
  position: absolute;
  left: 0;
}
@media (max-width: 768px) {
  body.block-editor-page p.is-style-p-phoneLink a,
  p.is-style-p-phoneLink a {
    width: 280px;
    height: 55px;
    display: flex;
    background-color: var(--cl-p);
    border-radius: 27px;
    color: var(--white);
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0px;
  }
  body.block-editor-page p.is-style-p-phoneLink a::before,
  p.is-style-p-phoneLink a::before {
    content: "";
    background-image: url(../icons/icons-tel-White-Mobile.svg);
    background-size: cover;
    width: 34px;
    height: 34px;
    position: absolute;
    left: 25%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  body.block-editor-page p.is-style-p-phoneLink a::after,
  p.is-style-p-phoneLink a::after {
    content: "電話でお申し込み";
    font-family: var(--f-p);
    font-size: 16px;
    font-weight: var(--fw-m);
    color: var(--white);
    text-indent: 0%;
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
  }
}
body.block-editor-page p.is-style-p-fax,
p.is-style-p-fax {
  font-family: var(--f-s);
  font-size: 35px;
  color: var(--black);
  position: relative;
  padding-left: 40px;
}
@media (max-width: 768px) {
  body.block-editor-page p.is-style-p-fax,
  p.is-style-p-fax {
    font-size: 26px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 41px;
    width: 215px;
    padding: unset;
    margin: 30px auto 0 auto;
  }
}
body.block-editor-page p.is-style-p-fax::before,
p.is-style-p-fax::before {
  content: "";
  background-image: url(../icons/icons-fax.svg);
  background-size: cover;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
}
body.block-editor-page p.is-style-p-gmap a,
p.is-style-p-gmap a {
  font-family: var(--f-p);
  font-weight: var(--fw-m);
  font-size: 20px;
  color: var(--black);
  position: relative;
  padding-left: 40px;
}
@media (max-width: 768px) {
  body.block-editor-page p.is-style-p-gmap a,
  p.is-style-p-gmap a {
    font-size: 14px;
    padding-left: 26px;
  }
}
body.block-editor-page p.is-style-p-gmap a::before,
p.is-style-p-gmap a::before {
  content: "";
  background-image: url(../icons/icons-map.svg);
  background-size: cover;
  width: 28px;
  height: 36px;
  position: absolute;
  left: 0;
}
@media (max-width: 768px) {
  body.block-editor-page p.is-style-p-gmap a::before,
  p.is-style-p-gmap a::before {
    background-image: url(../icons/icons-map-Mobile.svg);
    width: 18px;
    height: 24px;
  }
}
body.block-editor-page p.is-style-p-14pxM,
p.is-style-p-14pxM {
  font-weight: var(--fw-m);
  margin-bottom: 12px;
  line-height: 1.6;
}
@media (min-width: 992px) {
  body.block-editor-page p.is-style-p-14pxM,
  p.is-style-p-14pxM {
    font-size: 14px;
  }
  body.block-editor-page body.block-editor-page p.is-style-p-14pxM,
  body.block-editor-page p.is-style-p-14pxM {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page p.is-style-p-14pxM,
  p.is-style-p-14pxM {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page p.is-style-p-14pxM,
  p.is-style-p-14pxM {
    font-weight: var(--fw-l);
  }
}
body.block-editor-page p.is-style-p-16pxM,
p.is-style-p-16pxM {
  font-weight: var(--fw-m);
  margin-bottom: 12px;
}
@media (min-width: 992px) {
  body.block-editor-page p.is-style-p-16pxM,
  p.is-style-p-16pxM {
    font-size: 16px;
  }
  body.block-editor-page body.block-editor-page p.is-style-p-16pxM,
  body.block-editor-page p.is-style-p-16pxM {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page p.is-style-p-16pxM,
  p.is-style-p-16pxM {
    font-size: 12px;
  }
}
body.block-editor-page p.is-style-p-16pxMPay,
p.is-style-p-16pxMPay {
  font-weight: var(--fw-m);
  padding-right: 216px;
  position: relative;
}
@media (min-width: 992px) {
  body.block-editor-page p.is-style-p-16pxMPay,
  p.is-style-p-16pxMPay {
    font-size: 16px;
  }
  body.block-editor-page body.block-editor-page p.is-style-p-16pxMPay,
  body.block-editor-page p.is-style-p-16pxMPay {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page p.is-style-p-16pxMPay,
  p.is-style-p-16pxMPay {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page p.is-style-p-16pxMPay,
  p.is-style-p-16pxMPay {
    padding-right: unset;
    padding-bottom: 78px;
  }
}
body.block-editor-page p.is-style-p-16pxMPay::after,
p.is-style-p-16pxMPay::after {
  display: flex;
  content: "";
  background-image: url(../images/payment.webp);
  width: 147px;
  height: 78px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 768px) {
  body.block-editor-page p.is-style-p-16pxMPay::after,
  p.is-style-p-16pxMPay::after {
    background-image: url(../images/payment-Mobile.webp);
    right: 50%;
    transform: translateX(50%);
    top: unset;
    bottom: 0;
  }
}
body.block-editor-page p.is-style-p-16pxB,
p.is-style-p-16pxB {
  font-weight: var(--fw-b);
  margin-bottom: 12px;
}
@media (min-width: 992px) {
  body.block-editor-page p.is-style-p-16pxB,
  p.is-style-p-16pxB {
    font-size: 16px;
  }
  body.block-editor-page body.block-editor-page p.is-style-p-16pxB,
  body.block-editor-page p.is-style-p-16pxB {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page p.is-style-p-16pxB,
  p.is-style-p-16pxB {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  body.block-editor-page p.is-style-p-18px,
  p.is-style-p-18px {
    font-size: 18px;
  }
  body.block-editor-page body.block-editor-page p.is-style-p-18px,
  body.block-editor-page p.is-style-p-18px {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page p.is-style-p-18px,
  p.is-style-p-18px {
    font-size: 12px;
  }
}
body.block-editor-page p.is-style-p-20pxB,
p.is-style-p-20pxB {
  font-weight: var(--fw-b);
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  body.block-editor-page p.is-style-p-20pxB,
  p.is-style-p-20pxB {
    font-size: 20px;
  }
  body.block-editor-page body.block-editor-page p.is-style-p-20pxB,
  body.block-editor-page p.is-style-p-20pxB {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page p.is-style-p-20pxB,
  p.is-style-p-20pxB {
    font-size: 14px;
  }
}

body.block-editor-page p.is-style-p-inlineBorder {
  padding: 0.18rem 0.3rem;
}
body.block-editor-page p.is-style-p-phoneLink a {
  font-size: 42px !important;
  padding-left: 42px;
}
body.block-editor-page p.is-style-p-phoneLink a::before {
  width: 42px;
  height: 42px;
}
body.block-editor-page p.is-style-p-fax {
  font-size: 21px;
  padding-left: 24px;
}
body.block-editor-page p.is-style-p-fax::before {
  width: 24px;
  height: 24px;
}
body.block-editor-page p.is-style-p-gmap a {
  font-size: 12px;
  padding-left: 24px;
}
body.block-editor-page p.is-style-p-gmap a::before {
  width: 16px;
  height: 21px;
}

body.block-editor-page span.blackBtn,
span.blackBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background-color: #000;
  color: #fff;
  font-size: 22px;
  width: 100%;
  height: 57px;
  font-weight: var(--fw-b);
}
@media (max-width: 768px) {
  body.block-editor-page span.blackBtn,
  span.blackBtn {
    font-size: 15px;
  }
}

body.block-editor-page span.custom-span-red,
span.custom-span-red {
  color: red;
}
@media (max-width: 768px) {
  body.block-editor-page span.custom-span-mobbr,
  span.custom-span-mobbr {
    display: block;
  }
}
body.block-editor-page span.custom-span-small,
span.custom-span-small {
  font-size: 20px;
}
@media (max-width: 768px) {
  body.block-editor-page span.custom-span-small,
  span.custom-span-small {
    font-size: 10px;
  }
}

body.block-editor-page span.custom-span-small {
  font-size: 14px;
}

.wp-block-list {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}

body.block-editor-page .is-style-list-blueDot,
.is-style-list-blueDot {
  width: 100%;
  display: flex !important;
  flex-wrap: wrap;
  flex-direction: row !important;
  justify-content: flex-start;
  align-items: center;
  list-style-type: "●";
  padding-left: 5px;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  body.block-editor-page .is-style-list-blueDot,
  .is-style-list-blueDot {
    font-size: 16px;
  }
  body.block-editor-page body.block-editor-page .is-style-list-blueDot,
  body.block-editor-page .is-style-list-blueDot {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-list-blueDot,
  .is-style-list-blueDot {
    font-size: 14px;
  }
}
body.block-editor-page .is-style-list-blueDot li,
.is-style-list-blueDot li {
  padding: 3px;
  margin: 0 10px;
}
body.block-editor-page .is-style-list-blueDot li::marker,
.is-style-list-blueDot li::marker {
  color: var(--cl-p);
}
body.block-editor-page .is-style-list-blueDot li div,
.is-style-list-blueDot li div {
  display: inline-block;
  margin: 0;
}
body.block-editor-page .is-style-list-redList,
.is-style-list-redList {
  list-style-type: "※";
  padding-left: 20px;
  font-weight: var(--fw-m);
}
@media (min-width: 992px) {
  body.block-editor-page .is-style-list-redList,
  .is-style-list-redList {
    font-size: 16px;
  }
  body.block-editor-page body.block-editor-page .is-style-list-redList,
  body.block-editor-page .is-style-list-redList {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-list-redList,
  .is-style-list-redList {
    font-size: 14px;
  }
}
body.block-editor-page .is-style-list-redList li::marker,
.is-style-list-redList li::marker {
  color: red;
  margin-right: 20px;
}
body.block-editor-page .is-style-list-hisi,
.is-style-list-hisi {
  width: 100%;
  display: flex !important;
  flex-wrap: wrap;
  flex-direction: row !important;
  justify-content: flex-start;
  align-items: center;
  list-style-type: "◆";
  padding-left: 10px;
}
body.block-editor-page .is-style-list-hisi li,
.is-style-list-hisi li {
  padding: 3px;
  margin: 0 13px 0 3px;
  white-space: nowrap;
}
@media (min-width: 992px) {
  body.block-editor-page .is-style-list-hisi li,
  .is-style-list-hisi li {
    font-size: 16px;
  }
  body.block-editor-page body.block-editor-page .is-style-list-hisi li,
  body.block-editor-page .is-style-list-hisi li {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-list-hisi li,
  .is-style-list-hisi li {
    font-size: 12px;
  }
}
body.block-editor-page .is-style-list-hisi li::marker,
.is-style-list-hisi li::marker {
  font-size: 20px;
  margin-left: 5px;
  margin-right: 5px;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-list-hisi li::marker,
  .is-style-list-hisi li::marker {
    margin-right: 3px;
    font-size: 12px;
  }
}
body.block-editor-page .is-style-list-hisi li div,
.is-style-list-hisi li div {
  display: inline-block;
  margin: 0;
}
body.block-editor-page .is-style-list-3colmnDot,
.is-style-list-3colmnDot {
  width: 100%;
  list-style-type: "・";
  padding-left: 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row !important;
  justify-content: left;
  white-space: nowrap;
  border-top: 0.5px solid #D7D6D4;
  border-bottom: 0.5px solid #D7D6D4;
  padding: 24px 0 24px 20px;
}
@media (min-width: 992px) {
  body.block-editor-page .is-style-list-3colmnDot,
  .is-style-list-3colmnDot {
    font-size: 14px;
  }
  body.block-editor-page body.block-editor-page .is-style-list-3colmnDot,
  body.block-editor-page .is-style-list-3colmnDot {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-list-3colmnDot,
  .is-style-list-3colmnDot {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-list-3colmnDot,
  .is-style-list-3colmnDot {
    padding: 15px 0 15px 20px;
    max-width: 330px;
  }
}
body.block-editor-page .is-style-list-3colmnDot li,
.is-style-list-3colmnDot li {
  box-sizing: border-box;
  padding: 0 10px;
  white-space: nowrap;
  width: 33.3333333333%;
  margin: 0;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-list-3colmnDot li,
  .is-style-list-3colmnDot li {
    width: 100%;
    padding: 0 3px;
  }
}
body.block-editor-page .is-style-list-3colmnDot li:nth-child(3n+1),
.is-style-list-3colmnDot li:nth-child(3n+1) {
  width: calc(33.3333333333% - 30px);
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-list-3colmnDot li:nth-child(3n+1),
  .is-style-list-3colmnDot li:nth-child(3n+1) {
    width: 100%;
  }
}
body.block-editor-page .is-style-list-3colmnDot li:nth-child(3n+2),
.is-style-list-3colmnDot li:nth-child(3n+2) {
  width: calc(33.3333333333% + 30px);
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-list-3colmnDot li:nth-child(3n+2),
  .is-style-list-3colmnDot li:nth-child(3n+2) {
    width: 100%;
  }
}
body.block-editor-page .is-style-list-3colmnDot li::marker,
.is-style-list-3colmnDot li::marker {
  margin-right: 20px;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-list-3colmnDot li::marker,
  .is-style-list-3colmnDot li::marker {
    margin-right: 10px;
  }
}
body.block-editor-page .is-style-list-3colmnDot li div,
.is-style-list-3colmnDot li div {
  display: inline-block;
  margin: 0;
}
body.block-editor-page .is-style-list-privacy,
.is-style-list-privacy {
  list-style-type: decimal;
  padding-left: 20px;
}
@media (min-width: 992px) {
  body.block-editor-page .is-style-list-privacy,
  .is-style-list-privacy {
    font-size: 14px;
  }
  body.block-editor-page body.block-editor-page .is-style-list-privacy,
  body.block-editor-page .is-style-list-privacy {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-list-privacy,
  .is-style-list-privacy {
    font-size: 10px;
  }
}
body.block-editor-page .is-style-list-privacy li,
.is-style-list-privacy li {
  color: var(--black);
}
body.block-editor-page .is-style-list-white,
.is-style-list-white {
  width: 100%;
  display: flex !important;
  flex-wrap: wrap;
  flex-direction: row !important;
  justify-content: flex-start;
  align-items: center;
  list-style-type: none;
  padding-left: 0;
  color: var(--white);
}
body.block-editor-page .is-style-list-white li,
.is-style-list-white li {
  padding: 2px 10px;
  margin: 0 10px 0 15px;
  position: relative;
}
@media (min-width: 992px) {
  body.block-editor-page .is-style-list-white li,
  .is-style-list-white li {
    font-size: 16px;
  }
  body.block-editor-page body.block-editor-page .is-style-list-white li,
  body.block-editor-page .is-style-list-white li {
    font-size: calc(16px * 0.6);
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-list-white li,
  .is-style-list-white li {
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  body.block-editor-page .is-style-list-white li:first-child,
  .is-style-list-white li:first-child {
    font-size: 20px;
  }
  body.block-editor-page body.block-editor-page .is-style-list-white li:first-child,
  body.block-editor-page .is-style-list-white li:first-child {
    font-size: calc(20px * 0.6);
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-list-white li:first-child,
  .is-style-list-white li:first-child {
    font-size: 14px;
  }
}
body.block-editor-page .is-style-list-white li::before,
.is-style-list-white li::before {
  content: "※";
  position: absolute;
  left: -10px;
}
body.block-editor-page .is-style-list-white li div,
.is-style-list-white li div {
  display: inline-block;
  margin: 0;
}

.wp-block-columns:not(.wp-block-columns .wp-block-columns) {
  margin-bottom: 40px;
  padding: 0;
}
@media (max-width: 768px) {
  .wp-block-columns:not(.wp-block-columns .wp-block-columns) {
    margin-bottom: 20px;
  }
}
.wp-block-columns:not(.wp-block-columns .wp-block-columns).is-style-default {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .wp-block-columns:not(.wp-block-columns .wp-block-columns).is-style-default {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .wp-block-columns .wp-block-column {
    margin-bottom: 0;
  }
  .wp-block-columns .wp-block-column + .wp-block-column {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .wp-block-columns > .wp-block-column {
    margin-bottom: 20px;
  }
  /* 最後の .wp-block-column に余計な余白がつかないように調整 */
  .wp-block-columns > .wp-block-column:last-child {
    margin-bottom: 0;
  }
}
body.block-editor-page .is-style-custom-column-style-blue,
.is-style-custom-column-style-blue {
  margin-top: 60px !important;
  display: flex;
  gap: 0px;
  background-color: #f1f4fa;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-custom-column-style-blue,
  .is-style-custom-column-style-blue {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
  }
}
body.block-editor-page .is-style-custom-column-style-blue .wp-block-column,
.is-style-custom-column-style-blue .wp-block-column {
  background-color: unset;
  padding: 60px;
  border: unset;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-custom-column-style-blue .wp-block-column,
  .is-style-custom-column-style-blue .wp-block-column {
    padding: 30px;
  }
}

body.block-editor-page .is-style-column-def,
.is-style-column-def {
  display: flex !important;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  padding: 0px 25px !important;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-column-def,
  .is-style-column-def {
    max-width: 330px;
    padding: 0px !important;
  }
}

body.block-editor-page .is-style-custom-column-style-greet,
.is-style-custom-column-style-greet {
  display: flex;
  flex-wrap: wrap;
  background-color: transparent;
  width: 100%;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-custom-column-style-greet,
  .is-style-custom-column-style-greet {
    flex-direction: column;
    max-width: 330px;
  }
}
body.block-editor-page .is-style-custom-column-style-greet > .wp-block-column:first-child,
.is-style-custom-column-style-greet > .wp-block-column:first-child {
  max-width: 100%;
  background-color: transparent;
  padding: 20px;
  border: unset;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-custom-column-style-greet > .wp-block-column:first-child,
  .is-style-custom-column-style-greet > .wp-block-column:first-child {
    max-width: 100%;
    padding: 0;
  }
  body.block-editor-page .is-style-custom-column-style-greet > .wp-block-column:first-child p,
  .is-style-custom-column-style-greet > .wp-block-column:first-child p {
    line-height: 2;
  }
}
body.block-editor-page .is-style-custom-column-style-greet > .wp-block-column:last-child,
.is-style-custom-column-style-greet > .wp-block-column:last-child {
  max-width: 270px;
  background-color: transparent;
  padding: 20px;
  border: unset;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-custom-column-style-greet > .wp-block-column:last-child,
  .is-style-custom-column-style-greet > .wp-block-column:last-child {
    max-width: 100%;
    padding: 0px;
  }
}

body.block-editor-page .is-style-column-topList,
.is-style-column-topList {
  display: flex !important;
  flex-wrap: wrap;
  background-color: transparent;
  width: 100%;
  justify-content: space-between;
  border-top: 0.5px solid var(--black);
  border-bottom: 0.5px solid var(--black);
  padding: 0 !important;
  font-weight: var(--fw-b);
}
body.block-editor-page .is-style-column-topList > .wp-block-column:first-child,
.is-style-column-topList > .wp-block-column:first-child {
  background-color: var(--cl-p);
  color: var(--white);
  width: 100%;
  max-width: 223px;
  padding: 0px !important;
  border: unset;
  display: flex;
  align-items: center;
  padding-left: 20px !important;
}
@media (min-width: 992px) {
  body.block-editor-page .is-style-column-topList > .wp-block-column:first-child,
  .is-style-column-topList > .wp-block-column:first-child {
    font-size: 28px;
  }
  body.block-editor-page body.block-editor-page .is-style-column-topList > .wp-block-column:first-child,
  body.block-editor-page .is-style-column-topList > .wp-block-column:first-child {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-column-topList > .wp-block-column:first-child,
  .is-style-column-topList > .wp-block-column:first-child {
    font-size: 14px;
  }
}
body.block-editor-page .is-style-column-topList > .wp-block-column:last-child,
.is-style-column-topList > .wp-block-column:last-child {
  max-width: 100%;
  background-color: transparent;
  padding-left: 0px 0px 0px 40px;
  border: unset;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  body.block-editor-page .is-style-column-topList > .wp-block-column:last-child,
  .is-style-column-topList > .wp-block-column:last-child {
    font-size: 32px;
  }
  body.block-editor-page body.block-editor-page .is-style-column-topList > .wp-block-column:last-child,
  body.block-editor-page .is-style-column-topList > .wp-block-column:last-child {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-column-topList > .wp-block-column:last-child,
  .is-style-column-topList > .wp-block-column:last-child {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-column-topList,
  .is-style-column-topList {
    flex-wrap: nowrap !important;
    gap: 0;
    /* 最後の .wp-block-column に余計な余白がつかないように調整 */
  }
  body.block-editor-page .is-style-column-topList > .wp-block-column,
  .is-style-column-topList > .wp-block-column {
    height: 30px;
  }
  body.block-editor-page .is-style-column-topList > .wp-block-column:first-child,
  .is-style-column-topList > .wp-block-column:first-child {
    max-width: 110px;
    padding-left: 10px;
  }
  body.block-editor-page .is-style-column-topList > .wp-block-column:last-child,
  .is-style-column-topList > .wp-block-column:last-child {
    padding-left: 10px;
    align-items: center;
  }
  body.block-editor-page .is-style-column-topList.wp-block-columns > .wp-block-column,
  .is-style-column-topList.wp-block-columns > .wp-block-column {
    margin-bottom: 0px;
  }
  body.block-editor-page .is-style-column-topList.wp-block-columns > .wp-block-column:last-child,
  .is-style-column-topList.wp-block-columns > .wp-block-column:last-child {
    margin-bottom: 0;
  }
}

body.block-editor-page .is-style-column-topList {
  font-weight: var(--fw-n);
}
body.block-editor-page .is-style-column-topList p {
  margin: 0;
  padding: 0;
}
body.block-editor-page .is-style-column-topList > .wp-block-column:first-child {
  max-width: 132px;
  padding-left: 6px !important;
}
body.block-editor-page .is-style-column-topList > .wp-block-column:last-child {
  padding-left: 6px !important;
}

.wp-block-columns.is-style-column-topList + .wp-block-columns.is-style-column-topList {
  margin-bottom: 0 !important;
}

.wp-block-columns.is-style-column-topList:not(.wp-block-columns .wp-block-columns) {
  margin-bottom: 0 !important;
}

body.block-editor-page .is-style-column-bgPcolor,
.is-style-column-bgPcolor {
  display: flex !important;
  flex-wrap: wrap;
  background-color: var(--cl-p);
  width: 100%;
  justify-content: space-between;
  padding: 15px 25px !important;
}

body.block-editor-page .is-style-column-l300pxCenter,
.is-style-column-l300pxCenter {
  display: flex !important;
  flex-wrap: wrap;
  background-color: transparent;
  width: 100%;
  justify-content: space-between;
  border-top: 0.5px solid var(--black);
  border-bottom: 0.5px solid var(--black);
  padding: 30px 0 !important;
}
body.block-editor-page .is-style-column-l300pxCenter > .wp-block-column:first-child,
.is-style-column-l300pxCenter > .wp-block-column:first-child {
  width: 100%;
  max-width: 300px;
  background-color: transparent;
  padding: 0px !important;
  border: unset;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.block-editor-page .is-style-column-l300pxCenter > .wp-block-column:last-child,
.is-style-column-l300pxCenter > .wp-block-column:last-child {
  max-width: 100%;
  background-color: transparent;
  padding: 0px 0px 0px 40px;
  border: unset;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-column-l300pxCenter > .wp-block-column:last-child,
  .is-style-column-l300pxCenter > .wp-block-column:last-child {
    padding: 0px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-column-l300pxCenter,
  .is-style-column-l300pxCenter {
    flex-direction: column;
  }
  body.block-editor-page .is-style-column-l300pxCenter > .wp-block-column:first-child,
  .is-style-column-l300pxCenter > .wp-block-column:first-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.wp-block-columns.is-style-column-l300pxCenter + .wp-block-columns.is-style-column-l300pxCenter {
  margin-bottom: 0 !important;
}

.wp-block-columns.is-style-column-l300pxCenter:not(.wp-block-columns .wp-block-columns) {
  margin-bottom: 0 !important;
}

body.block-editor-page .is-style-column-l110px,
.is-style-column-l110px {
  display: flex !important;
  flex-wrap: wrap;
  background-color: transparent;
  width: 100%;
  justify-content: space-between;
  padding: 0px;
}
body.block-editor-page .is-style-column-l110px > .wp-block-column:first-child,
.is-style-column-l110px > .wp-block-column:first-child {
  width: 100%;
  max-width: 110px;
  background-color: transparent;
  padding: 0px !important;
  border: unset;
  display: flex;
}
body.block-editor-page .is-style-column-l110px > .wp-block-column:last-child,
.is-style-column-l110px > .wp-block-column:last-child {
  max-width: 100%;
  background-color: transparent;
  padding: 0px;
  border: unset;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-column-l110px,
  .is-style-column-l110px {
    flex-direction: column;
  }
  body.block-editor-page .is-style-column-l110px > .wp-block-column:first-child,
  .is-style-column-l110px > .wp-block-column:first-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

body.block-editor-page .is-style-column-l110px > .wp-block-column:first-child {
  max-width: 66px;
}

body.block-editor-page .is-style-column-r300px,
.is-style-column-r300px {
  display: flex !important;
  flex-wrap: wrap;
  background-color: transparent;
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-column-r300px,
  .is-style-column-r300px {
    width: 100% !important;
    max-width: 100% !important;
    max-height: unset !important;
    justify-content: center !important;
  }
}
body.block-editor-page .is-style-column-r300px > .wp-block-column:first-child,
.is-style-column-r300px > .wp-block-column:first-child {
  max-width: 100%;
  background-color: transparent;
  padding: 0px;
  border: unset;
}
body.block-editor-page .is-style-column-r300px > .wp-block-column:last-child,
.is-style-column-r300px > .wp-block-column:last-child {
  width: 100%;
  max-width: 300px;
  background-color: transparent;
  padding: 0px;
  border: unset;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-column-r300px,
  .is-style-column-r300px {
    flex-direction: column;
  }
  body.block-editor-page .is-style-column-r300px > .wp-block-column:first-child,
  .is-style-column-r300px > .wp-block-column:first-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

body.block-editor-page .is-style-column-contact,
.is-style-column-contact {
  box-sizing: border-box;
  padding-top: 50px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  background-color: transparent;
  flex-direction: row !important;
  width: 100%;
  justify-content: space-between;
  gap: 0;
  position: relative;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-column-contact,
  .is-style-column-contact {
    flex-wrap: nowrap !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 330px !important;
    max-height: unset !important;
    justify-content: flex-end !important;
    height: auto;
    max-height: 600px !important;
  }
}
body.block-editor-page .is-style-column-contact .wp-block-columns,
.is-style-column-contact .wp-block-columns {
  margin: 0 !important;
}
body.block-editor-page .is-style-column-contact .wp-block-column,
.is-style-column-contact .wp-block-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* 上部揃えにする */
  align-items: baseline; /* Baselineで揃える */
  flex-shrink: 0;
  padding: 0;
  margin: 0;
}
body.block-editor-page .is-style-column-contact > .wp-block-column:first-child,
.is-style-column-contact > .wp-block-column:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 100%;
  min-height: 100px !important;
  padding: 0px;
  border: unset;
  background-color: var(--cl-p);
  margin-bottom: -50px;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-column-contact > .wp-block-column:first-child,
  .is-style-column-contact > .wp-block-column:first-child {
    max-width: 330px;
    order: 2;
    min-height: 78px !important;
    margin-bottom: 20px;
  }
}
body.block-editor-page .is-style-column-contact > .wp-block-column:nth-child(2),
.is-style-column-contact > .wp-block-column:nth-child(2) {
  width: 100%;
  min-width: 500px;
  background-color: transparent;
  padding: 0px;
  border: unset;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-column-contact > .wp-block-column:nth-child(2),
  .is-style-column-contact > .wp-block-column:nth-child(2) {
    min-width: unset;
    max-width: 330px;
    order: 3;
  }
}
body.block-editor-page .is-style-column-contact > .wp-block-column:nth-child(2) .wp-block-columns:first-child,
.is-style-column-contact > .wp-block-column:nth-child(2) .wp-block-columns:first-child {
  margin-bottom: 20px !important;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-column-contact > .wp-block-column:nth-child(2) .wp-block-columns:first-child,
  .is-style-column-contact > .wp-block-column:nth-child(2) .wp-block-columns:first-child {
    gap: 0;
    margin-bottom: 14px !important;
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-column-contact > .wp-block-column:nth-child(2) .wp-block-columns,
  .is-style-column-contact > .wp-block-column:nth-child(2) .wp-block-columns {
    flex-direction: unset;
    flex-wrap: nowrap !important;
  }
}
body.block-editor-page .is-style-column-contact > .wp-block-column:nth-child(2) .wp-block-column,
.is-style-column-contact > .wp-block-column:nth-child(2) .wp-block-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* 上部揃えにする */
  margin: 0 !important;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-column-contact > .wp-block-column:nth-child(2) .wp-block-column:nth-child(1),
  .is-style-column-contact > .wp-block-column:nth-child(2) .wp-block-column:nth-child(1) {
    max-width: 60px;
  }
}
body.block-editor-page .is-style-column-contact > .wp-block-column:nth-child(2) .wp-block-column:nth-child(2),
.is-style-column-contact > .wp-block-column:nth-child(2) .wp-block-column:nth-child(2) {
  width: 380px;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-column-contact > .wp-block-column:nth-child(2) .wp-block-column:nth-child(2),
  .is-style-column-contact > .wp-block-column:nth-child(2) .wp-block-column:nth-child(2) {
    padding-left: 20px;
    width: 100%;
    max-width: 270px;
  }
}
body.block-editor-page .is-style-column-contact > .wp-block-column:nth-child(3),
.is-style-column-contact > .wp-block-column:nth-child(3) {
  width: 100%;
  max-width: 540px;
  background-color: transparent;
  padding: 0px;
  border: unset;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-column-contact > .wp-block-column:nth-child(3),
  .is-style-column-contact > .wp-block-column:nth-child(3) {
    order: 4;
    width: 100%;
    max-width: 330px;
    margin-top: 24px;
  }
  body.block-editor-page .is-style-column-contact > .wp-block-column:nth-child(3) p,
  .is-style-column-contact > .wp-block-column:nth-child(3) p {
    margin-left: auto;
    margin-right: auto;
  }
  body.block-editor-page .is-style-column-contact > .wp-block-column:nth-child(3) p:first-child,
  .is-style-column-contact > .wp-block-column:nth-child(3) p:first-child {
    margin-bottom: 14px;
  }
}
body.block-editor-page .is-style-column-contact > .wp-block-column:last-child,
.is-style-column-contact > .wp-block-column:last-child {
  width: 100%;
  max-width: 210px;
  background-color: transparent;
  padding: 0;
  border: unset;
  margin-right: 40px;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-column-contact > .wp-block-column:last-child,
  .is-style-column-contact > .wp-block-column:last-child {
    order: 1;
    width: 100%;
    max-width: 140px;
    max-height: 175px !important;
    margin: 0 auto;
    margin-bottom: 20px !important;
  }
}

body.block-editor-page .is-style-column-contact > .wp-block-column:first-child {
  width: 100%;
  max-width: 100%;
  padding: 0px;
  border: unset;
  height: 60px !important;
  margin-bottom: -30px;
}
body.block-editor-page .is-style-column-contact > .wp-block-column:nth-child(2) {
  width: 100%;
  min-width: 300px;
  background-color: transparent;
  padding: 0px;
  border: unset;
}
body.block-editor-page .is-style-column-contact > .wp-block-column:nth-child(2) .wp-block-columns:first-child {
  margin-bottom: 12px !important;
}
body.block-editor-page .is-style-column-contact > .wp-block-column:nth-child(2) .wp-block-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* 上部揃えにする */
  margin: 0 !important;
}
body.block-editor-page .is-style-column-contact > .wp-block-column:nth-child(2) .wp-block-column:nth-child(2) {
  width: 228px;
}
body.block-editor-page .is-style-column-contact > .wp-block-column:nth-child(3) {
  width: 100%;
  max-width: 324px;
  background-color: transparent;
  padding: 0px;
  border: unset;
}
body.block-editor-page .is-style-column-contact > .wp-block-column:last-child {
  width: 100%;
  max-width: 126px;
  background-color: transparent;
  padding: 0;
  border: unset;
  margin-right: 0px;
}

body.block-editor-page .is-style-column-line,
.is-style-column-line {
  position: relative;
  display: flex !important;
  width: 100%;
  max-width: 1000px !important;
  font-size: 36px;
  color: #50A560;
  font-weight: var(--fw-b);
  justify-content: space-between; /* 均等配置に変更 */
  align-items: center !important;
  max-height: 150px !important;
  box-sizing: border-box;
  margin-bottom: 120px !important;
  margin-top: 120px !important;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-column-line,
  .is-style-column-line {
    width: 100% !important;
    max-width: 100% !important;
    max-height: unset !important;
    justify-content: center !important;
    font-size: 18px;
    font-weight: var(--fw-xb);
    margin-top: 50px !important;
    margin-bottom: 60px !important;
  }
}
body.block-editor-page .is-style-column-line::before,
.is-style-column-line::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 150px;
  background-color: #E0E0E0;
  border-radius: 20px;
  bottom: 0px;
  z-index: -1;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-column-line::before,
  .is-style-column-line::before {
    width: 95%;
    height: 190px;
    bottom: -20px;
  }
}
body.block-editor-page .is-style-column-line > .wp-block-column,
.is-style-column-line > .wp-block-column {
  background-color: transparent;
}
body.block-editor-page .is-style-column-line > .wp-block-column > .wp-block-column,
.is-style-column-line > .wp-block-column > .wp-block-column {
  background-color: transparent;
}
body.block-editor-page .is-style-column-line > .wp-block-column:first-child,
.is-style-column-line > .wp-block-column:first-child {
  width: 100%;
  max-width: 136px;
  background-color: transparent;
  padding: 0px;
  border: unset;
  margin-left: 60px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-column-line > .wp-block-column:first-child,
  .is-style-column-line > .wp-block-column:first-child {
    margin: 0;
    width: 100%;
    max-width: 210px !important;
  }
}
body.block-editor-page .is-style-column-line > .wp-block-column:nth-child(2),
.is-style-column-line > .wp-block-column:nth-child(2) {
  width: 100%;
  max-width: 86px;
  background-color: transparent;
  padding: 0px;
  border: unset;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-column-line > .wp-block-column:nth-child(2),
  .is-style-column-line > .wp-block-column:nth-child(2) {
    display: none;
    width: 100%;
    max-width: 73px;
    max-height: 73px;
  }
}
body.block-editor-page .is-style-column-line > .wp-block-column:last-child,
.is-style-column-line > .wp-block-column:last-child {
  flex: 1; /* 必要な幅だけを確保 */
  width: 100%;
  max-width: calc(100% - 282px); /* 他2つの要素の合計幅分を引く */
  background-color: transparent;
  padding: 0;
  border: unset;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-column-line > .wp-block-column:last-child,
  .is-style-column-line > .wp-block-column:last-child {
    margin-top: 20px;
  }
}
body.block-editor-page .is-style-column-line > .wp-block-column:last-child p,
.is-style-column-line > .wp-block-column:last-child p {
  margin: 0; /* デフォルトの余白を削除 */
  line-height: 1.5; /* 必要に応じて調整 */
  display: inline-block; /* テキストを基準に揃える */
  vertical-align: baseline; /* baselineに揃える */
  font-family: var(--f-p);
  font-style: normal;
  font-weight: var(--fw-b) !important;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-column-line > .wp-block-column:last-child p,
  .is-style-column-line > .wp-block-column:last-child p {
    white-space: nowrap;
    font-size: 18px;
  }
  body.block-editor-page .is-style-column-line > .wp-block-column:last-child p br,
  .is-style-column-line > .wp-block-column:last-child p br {
    display: none;
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-column-line > .wp-block-column:last-child,
  .is-style-column-line > .wp-block-column:last-child {
    width: 100%;
    max-width: 250px;
    display: flex;
    justify-content: center;
  }
}

body.block-editor-page .is-style-column-line {
  max-width: 600px !important;
  font-size: 21px;
  max-height: 90px !important;
}
body.block-editor-page .is-style-column-line::before {
  z-index: 0 !important;
  height: 90px;
}
body.block-editor-page .is-style-column-line > .wp-block-column:first-child {
  max-width: 81px;
  margin-left: 36px;
  margin-bottom: 30px;
}
body.block-editor-page .is-style-column-line > .wp-block-column:nth-child(2) {
  max-width: 51px;
}
body.block-editor-page .is-style-column-line > .wp-block-column:last-child {
  max-width: calc(100% - 148px); /* 他2つの要素の合計幅分を引く */
}

body.block-editor-page .is-style-custom-table-style,
.is-style-custom-table-style {
  width: 100% !important;
  border-collapse: collapse;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-custom-table-style,
  .is-style-custom-table-style {
    max-width: 330px;
    margin: auto;
  }
}
body.block-editor-page .is-style-custom-table-style th, body.block-editor-page .is-style-custom-table-style td,
.is-style-custom-table-style th,
.is-style-custom-table-style td {
  border: 1px solid #D7D6D4;
  padding: 8px;
  text-align: left;
}
body.block-editor-page .is-style-custom-table-style tr td,
.is-style-custom-table-style tr td {
  padding: 10px 20px 10px 60px;
  font-size: 14px;
}
@media (min-width: 992px) {
  body.block-editor-page .is-style-custom-table-style tr td,
  .is-style-custom-table-style tr td {
    font-size: 14px;
  }
  body.block-editor-page body.block-editor-page .is-style-custom-table-style tr td,
  body.block-editor-page .is-style-custom-table-style tr td {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-custom-table-style tr td,
  .is-style-custom-table-style tr td {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-custom-table-style tr td,
  .is-style-custom-table-style tr td {
    padding: 10px 10px 10px 15px;
    font-weight: var(--fw-l);
    white-space: nowrap;
  }
}
body.block-editor-page .is-style-custom-table-style tr td:nth-child(odd),
.is-style-custom-table-style tr td:nth-child(odd) {
  background-color: #eaeae9 !important;
  width: 140px;
  padding: 10px 20px;
}
@media (max-width: 768px) {
  body.block-editor-page .is-style-custom-table-style tr td:nth-child(odd),
  .is-style-custom-table-style tr td:nth-child(odd) {
    width: 80px;
    padding: 10px;
    vertical-align: middle;
    font-weight: var(--fw-n);
  }
}

.category-post-list-preview,
.category-post-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 20px auto;
  width: 100%;
  max-width: 1000px;
}
.category-post-list-preview .post-item,
.category-post-list .post-item {
  display: flex;
  padding: 15px 0;
  border-bottom: 0.5px solid #7A7A7A;
}
@media (max-width: 768px) {
  .category-post-list-preview .post-item,
  .category-post-list .post-item {
    flex-wrap: wrap;
  }
}
.category-post-list-preview .post-item .post-date,
.category-post-list .post-item .post-date {
  width: 80px;
  font-family: var(--f-s);
  color: #7F7F7F;
}
@media (min-width: 992px) {
  .category-post-list-preview .post-item .post-date,
  .category-post-list .post-item .post-date {
    font-size: 12px;
  }
  body.block-editor-page .category-post-list-preview .post-item .post-date,
  body.block-editor-page .category-post-list .post-item .post-date {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .category-post-list-preview .post-item .post-date,
  .category-post-list .post-item .post-date {
    font-size: 10px;
  }
}
.category-post-list-preview .post-item .post-category,
.category-post-list .post-item .post-category {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 1;
  box-sizing: border-box;
  border-radius: 10px;
  width: 96px !important;
  height: 20px;
  background-color: var(--cl-p);
  color: var(--white);
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .category-post-list-preview .post-item .post-category,
  .category-post-list .post-item .post-category {
    font-size: 9px;
  }
  body.block-editor-page .category-post-list-preview .post-item .post-category,
  body.block-editor-page .category-post-list .post-item .post-category {
    font-size: 9px;
  }
}
@media (max-width: 768px) {
  .category-post-list-preview .post-item .post-category,
  .category-post-list .post-item .post-category {
    font-size: 8px;
  }
}
.category-post-list-preview .post-item .post-title,
.category-post-list .post-item .post-title {
  font-weight: var(--fw-m);
  margin-left: 30px;
}
@media (min-width: 992px) {
  .category-post-list-preview .post-item .post-title,
  .category-post-list .post-item .post-title {
    font-size: 16px;
  }
  body.block-editor-page .category-post-list-preview .post-item .post-title,
  body.block-editor-page .category-post-list .post-item .post-title {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .category-post-list-preview .post-item .post-title,
  .category-post-list .post-item .post-title {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .category-post-list-preview .post-item .post-title,
  .category-post-list .post-item .post-title {
    width: 100%;
    margin-top: 10px;
    margin-left: 0px;
  }
}
.category-post-list-preview .post-item .post-title a,
.category-post-list .post-item .post-title a {
  text-decoration: none;
  color: #333;
}
@media (min-width: 992px) {
  .category-post-list-preview .post-item .post-title a,
  .category-post-list .post-item .post-title a {
    font-size: 16px;
  }
  body.block-editor-page .category-post-list-preview .post-item .post-title a,
  body.block-editor-page .category-post-list .post-item .post-title a {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .category-post-list-preview .post-item .post-title a,
  .category-post-list .post-item .post-title a {
    font-size: 14px;
  }
}
.category-post-list-preview .post-item .post-title a:hover,
.category-post-list .post-item .post-title a:hover {
  color: #333;
  text-decoration: underline;
}
.category-post-list-preview .post-item .post-excerpt,
.category-post-list .post-item .post-excerpt {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}
.category-post-list-preview .more,
.category-post-list .more {
  width: 148px;
  height: 44px;
  border: 1px solid #353126;
  border-radius: 5px;
  margin: auto;
  margin-top: 60px !important;
}
@media (max-width: 768px) {
  .category-post-list-preview .more,
  .category-post-list .more {
    width: 100px;
    height: 36px;
    margin-top: 30px !important;
  }
}
.category-post-list-preview .more a,
.category-post-list .more a {
  font-family: var(--f-s);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #353126;
}
@media (min-width: 992px) {
  .category-post-list-preview .more a,
  .category-post-list .more a {
    font-size: 23px;
  }
  body.block-editor-page .category-post-list-preview .more a,
  body.block-editor-page .category-post-list .more a {
    font-size: calc(23px * 0.6);
  }
}
@media (max-width: 768px) {
  .category-post-list-preview .more a,
  .category-post-list .more a {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */