@charset "UTF-8";
/* --------------------------------------------------
	section size
-------------------------------------------------- */
/* =====================================================
 * ブログ本文用ショートコード／ブロック共通スタイル
 * rem基準（html font-size）に依存しないよう px で指定
 * エディタ・フロント両方に適用する
 * ===================================================== */
/* common
---------------------------------------------------------------------------- */
.c-blog-cta,
.c-blog-contact,
.c-blog-reserve,
.c-blog-sns {
  font-family: "Noto Sans JP", sans-serif !important;
  box-sizing: border-box !important;
}

/* c-blog-cta 来店予約CTAボタン
---------------------------------------------------------------------------- */
.c-blog-cta {
  margin: 48px auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-blog-cta {
    margin: 40px auto;
  }
}
.c-blog-cta__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 560px;
  padding: 23px 72px;
  background: #FB540C;
  border-radius: 80px;
  box-shadow: 0 2px 5px rgba(155, 155, 155, 0.6);
  color: #fff;
  text-align: center;
  text-decoration: none !important;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .c-blog-cta__btn {
    padding: 20px 40px;
    min-height: inherit;
  }
}
.c-blog-cta__btn:hover {
  opacity: 0.7;
}
.c-blog-cta__text {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-blog-cta__text {
    font-size: 16px;
    line-height: 1.5;
  }
}
.c-blog-cta__icon {
  position: absolute;
  right: 8px;
  bottom: -8px;
  width: 54px;
  height: 54px;
}
@media screen and (max-width: 767px) {
  .c-blog-cta__icon {
    width: 44px;
    height: 44px;
    right: 4px;
    bottom: -6px;
  }
}
.c-blog-cta__icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* c-blog-contact 問い合わせCTAボタン
---------------------------------------------------------------------------- */
.c-blog-contact {
  display: grid;
  grid-template-columns: repeat(3, 210px);
  justify-content: center;
  gap: 20px;
  margin: 48px 0;
}
@media screen and (max-width: 767px) {
  .c-blog-contact {
    grid-template-columns: repeat(3, 1fr);
    gap: 2%;
    margin: 40px 0;
  }
}
.c-blog-contact {
  /* 子2つ：2カラム中央 */
}
.c-blog-contact:has(> :last-child:nth-child(2)) {
  grid-template-columns: repeat(2, 210px);
}
@media screen and (max-width: 767px) {
  .c-blog-contact:has(> :last-child:nth-child(2)) {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-blog-contact {
  /* 子1つ：1カラム中央 */
}
.c-blog-contact:has(> :only-child) {
  grid-template-columns: 210px;
}
@media screen and (max-width: 767px) {
  .c-blog-contact:has(> :only-child) {
    grid-template-columns: 1fr;
  }
}
.c-blog-contact__btn {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 72px;
  background: #FB540C;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(155, 155, 155, 0.6);
  text-decoration: none !important;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .c-blog-contact__btn {
    grid-auto-flow: row;
    justify-items: center;
    align-content: center;
    gap: 4px;
    height: auto;
    padding: 16px 0;
  }
}
.c-blog-contact__btn:hover {
  opacity: 0.7;
}
.c-blog-contact__btn--navy {
  background: #324383;
}
.c-blog-contact__icon {
  width: 35px;
  height: 35px;
}
.c-blog-contact__icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-blog-contact__text {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-blog-contact__text {
    font-size: 16px;
    text-align: center;
  }
}

/* c-blog-reserve 来店予約CTAボタン
---------------------------------------------------------------------------- */
.c-blog-reserve {
  display: grid;
  grid-template-columns: repeat(3, 210px);
  justify-content: center;
  gap: 20px;
  margin: 48px 0;
}
@media screen and (max-width: 767px) {
  .c-blog-reserve {
    grid-template-columns: repeat(3, 1fr);
    gap: 2%;
    margin: 40px 0;
  }
}
.c-blog-reserve {
  /* 子2つ：2カラム中央 */
}
.c-blog-reserve:has(> :last-child:nth-child(2)) {
  grid-template-columns: repeat(2, 210px);
}
@media screen and (max-width: 767px) {
  .c-blog-reserve:has(> :last-child:nth-child(2)) {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-blog-reserve {
  /* 子1つ：1カラム中央 */
}
.c-blog-reserve:has(> :only-child) {
  grid-template-columns: 210px;
}
@media screen and (max-width: 767px) {
  .c-blog-reserve:has(> :only-child) {
    grid-template-columns: 1fr;
  }
}
.c-blog-reserve__btn {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 72px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(155, 155, 155, 0.6);
  text-decoration: none !important;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .c-blog-reserve__btn {
    grid-auto-flow: row;
    justify-items: center;
    align-content: center;
    gap: 4px;
    height: auto;
    padding: 16px 0;
  }
}
.c-blog-reserve__btn:hover {
  opacity: 0.7;
}
.c-blog-reserve__btn--showroom {
  background: #D67F4A;
}
.c-blog-reserve__btn--line {
  background: #06c755;
}
.c-blog-reserve__btn--navy {
  background: #324383;
}
.c-blog-reserve__icon {
  width: 35px;
  height: 35px;
}
.c-blog-reserve__icon--line {
  width: 44px;
  height: 44px;
}
@media screen and (max-width: 767px) {
  .c-blog-reserve__icon--line {
    width: 60px;
    height: 60px;
  }
}
.c-blog-reserve__icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-blog-reserve__text {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-blog-reserve__text {
    font-size: 16px;
    text-align: center;
  }
}
.c-blog-reserve__text--line {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .c-blog-reserve__text--line {
    font-size: 18px;
  }
}

/* c-blog-sns SNSアイコン
---------------------------------------------------------------------------- */
.c-blog-sns {
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
  gap: 12px;
  margin: 48px 0 !important;
  padding: 0 !important;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .c-blog-sns {
    margin: 40px 0 !important;
  }
}
.c-blog-sns__item {
  margin: 0;
  padding: 0 !important;
  list-style: none !important;
}
.c-blog-sns__link {
  display: block;
  width: 48px;
  height: 48px;
  transition: 0.4s;
}
@media (min-width: 768px) and (hover: hover) {
  .c-blog-sns__link:hover {
    opacity: 0.7;
  }
}
.c-blog-sns__link img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* tableブロック
---------------------------------------------------------------------------- */
.p-blogdetail .wp-block-table.column-head table {
  width: 100%;
}
.p-blogdetail .wp-block-table.column-head table tbody tr:first-child td {
  background-color: #F8EEE7;
}
.p-blogdetail .wp-block-table.row-head table {
  width: 100%;
}
.p-blogdetail .wp-block-table.row-head table tbody tr td:first-child {
  background-color: #F8EEE7;
}/*# sourceMappingURL=block_parts.css.map */