/* =========================
Base
========================= */

/* メインビジュアル */
#main_visual { /* Swellメインビジュアル非表示 */
	display: none; 
}

/* ========================================
   Jimny Lovers KV
======================================== */
.jl-fv {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 32px;
  box-sizing: border-box;
}

.jl-fv__inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 2px solid #000;
  border-radius: 30px;
}

.jl-fv__bg {
  display: block;
  width: 100%;
  height: auto;
}

/* 以下はそのまま */
.jl-fv__copy,
.jl-fv__logo,
.jl-fv__car,
.jl-fv__person {
  position: absolute;
  display: block;
  height: auto;
}

.jl-fv__copy {
  top: 6%;
  left: 50%;
  width: 28%;
  transform: translateX(-50%);
  z-index: 10;
}

.jl-fv__logo {
  top: 34%;
  left: 18%;
  width: 34%;
  z-index: 20;
}

.jl-fv__car {
  top: 39%;
  right: 25%;
  width: 18%;
  z-index: 30;
}

.jl-fv__person {
  top: 47%;
  right: 17%;
  width: 8%;
  z-index: 40;
}

@media (max-width: 767px) {
  .jl-fv {
    padding: 14px;
  }

  .jl-fv__inner {
    border-radius: 20px;
  }

  .jl-fv__copy {
    top: 12%;
    width: 60%;
  }

  .jl-fv__logo {
    top: 24%;
    left: 50%;
    width: 85vw;
    transform: translateX(-50%);
  }

  .jl-fv__car {
    top: 52%;
    right: 24%;
    width: 54%;
  }

  .jl-fv__person {
    top: 63%;
    right: 8%;
    width: 27%;
  }
}

/* 初回表示アニメーション */
.jl-fv__copy {
  animation: jl-pop-down 0.8s ease-out both;
}

.jl-fv__logo {
  animation: jl-bounce-in 0.9s 0.15s ease-out both;
}

.jl-fv__car {
  animation: jl-car-in 1s 0.35s ease-out both,
             jl-car-float 3s 1.4s ease-in-out infinite;
}

.jl-fv__person {
  animation: jl-person-in 0.8s 0.7s ease-out both,
             jl-person-wave 2.8s 1.6s ease-in-out infinite;
  transform-origin: bottom center;
}

/* コピー：上からポン */
@keyframes jl-pop-down {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-24px) scale(0.9) rotate(-3deg);
  }
  70% {
    opacity: 1;
    transform: translateX(-50%) translateY(4px) scale(1.04) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1) rotate(0);
  }
}

/* ロゴ：ぷるんと登場 */
@keyframes jl-bounce-in {
  0% {
    opacity: 0;
    transform: scale(0.75) rotate(-4deg);
  }
  65% {
    opacity: 1;
    transform: scale(1.08) rotate(2deg);
  }
  82% {
    transform: scale(0.96) rotate(-1deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

/* 車：右から走ってくる */
@keyframes jl-car-in {
  0% {
    opacity: 0;
    transform: translateX(70px) rotate(3deg);
  }
  70% {
    opacity: 1;
    transform: translateX(-6px) rotate(-1deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0);
  }
}

/* 車：少しだけ上下にふわふわ */
@keyframes jl-car-float {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-5px) rotate(-0.6deg);
  }
}

/* 人物：ひょこっと登場 */
@keyframes jl-person-in {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.85) rotate(5deg);
  }
  70% {
    opacity: 1;
    transform: translateY(-4px) scale(1.05) rotate(-3deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}

/* 人物：軽くゆらゆら */
@keyframes jl-person-wave {
  0%, 100% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(2.5deg);
  }
}

/* アニメーション苦手な人向け */
@media (prefers-reduced-motion: reduce) {
  .jl-fv__copy,
  .jl-fv__logo,
  .jl-fv__car,
  .jl-fv__person {
    animation: none;
  }
}

@media (max-width: 767px) {
  .jl-fv__logo {
    animation: jl-sp-logo-in 0.9s 0.15s ease-out both;
  }

  @keyframes jl-sp-logo-in {
    0% {
      opacity: 0;
      transform: translateX(-50%) scale(0.75) rotate(-4deg);
    }
    65% {
      opacity: 1;
      transform: translateX(-50%) scale(1.08) rotate(2deg);
    }
    82% {
      transform: translateX(-50%) scale(0.96) rotate(-1deg);
    }
    100% {
      opacity: 1;
      transform: translateX(-50%) scale(1) rotate(0);
    }
  }
}


/*==================== FVここまで */


.jl-mainvisual {
  padding: 120px 20px;
  text-align: center;
  background: #e7dfd4;
}

/* 全部おまかせ */
.jl-sec1-h2{
  align-items:flex-end;
  gap:12px;
}
.post_content .jl-sec1-h2-l{
  font-family: "WDXL Lubrifont JP N", sans-serif;
  font-size: clamp(42px,6vw,58px);
  line-height: 1.2em;
  letter-spacing: 0.3rem;
  font-weight: 400;
}

@media (max-width: 599px) {
  .jl-sec1-h2.wp-block-group.is-row{
    display:block;
  }
}

/* 共通 */
	.top .parts-title-h2 {
		font-size: clamp(58px,6vw,100px);
		line-height: 1.1;
	}
	.top .jl-request-heading {
		font-size: clamp(36px,6vw,72px);
		line-height: 1.1;
	}
/* パーツ */

.jl-parts {
  text-align: center;
}

/* カード共通 */
.pc-car-column3 .wp-block-column{
    padding: 56px;
    background-repeat: no-repeat;
    background-position: center -10px;
    background-size: contain;
}

/* 1枚目 */
.pc-car-column3 .wp-block-column:nth-child(1){
    background-image: url("http://stg2026.jimny-lovers.com/wp-content/uploads/2026/03/jl-type-bg-03.svg");
}

/* 2枚目 */
.pc-car-column3 .wp-block-column:nth-child(2){
    background-image: url("http://stg2026.jimny-lovers.com/wp-content/uploads/2026/03/jl-type-bg-02.svg");
}

/* 3枚目 */
.pc-car-column3 .wp-block-column:nth-child(3){
    background-image: url("http://stg2026.jimny-lovers.com/wp-content/uploads/2026/03/jl-type-bg-01.svg");
}

/* サービス */

.jl-service {
  text-align: center;
}

/* 施工事例 */

.jl-works {
}

/* ------------------
 * ご要望にお応え
 * ----------------- */

.jl-request-sec {
  position: relative;
  overflow: hidden;
  background-color: #fae1af; /* セクションの下地色 */
}

/* クラフト調オーバーレイ */
.jl-request-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background-image:
    radial-gradient(rgba(80, 45, 20, 0.12) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(
      135deg,
      rgba(120, 70, 25, 0.08),
      rgba(255, 255, 255, 0.15),
      rgba(120, 70, 25, 0.06)
    );
  background-size:
    4px 4px,
    7px 7px,
    100% 100%;
  background-position:
    0 0,
    2px 3px,
    center;

  opacity: 0.55;
  mix-blend-mode: multiply;
}

/* 中身をオーバーレイより前面に */
.jl-request-sec > * {
  position: relative;
  z-index: 1;
}

.jl-request-sec .jl-request-heading {
	font-family: "M PLUS 1p",sans-serif;
	font-weight: 900; /* Black */
    color: #d5f9ff;
        -webkit-text-stroke: 4px #111;
        paint-order: stroke fill;
        filter: drop-shadow(1px 0 0 #111) drop-shadow(-1px 0 0 #111) drop-shadow(0 1px 0 #111) drop-shadow(0 -1px 0 #111);
}
.jl-request-text{
    width: clamp(100%,6vw,70%);
    margin: 0 auto;
    line-height: 1.75em;
}
.jl-request-p-gr p {
	font-size: clamp(16px,2vw,24px);
}

/* 外側ラッパー */
.post_content .jl-request-circle-wrap {
  position: relative;
  width: min(551px, 86vw);
  aspect-ratio: 1 / 1;
  margin: 60px auto;
  border-radius: 50%;
  overflow: visible;
}

/* 内側figure */
.post_content .jl-request-circle-wrap > figure,
.post_content .jl-request-circle-wrap > figure.aligncenter {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: visible;
}

/* 画像本体 */
.post_content .jl-request-circle-wrap > figure > img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

/* 回る文字SVG */
.post_content .jl-request-circle-wrap::before {
  content: "";
  position: absolute;
  inset: -42px;
  z-index: 4;
  pointer-events: none;
/*   border-radius: 50%; */

  background-image: url("/wp-content/uploads/2026/06/jl-circle-text-jimny-lovers001.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  animation: jl-circle-text-spin 24s linear infinite;
  transform-origin: center center;
}

@keyframes jl-circle-text-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ------------------
 * ご要望にお応え
 * ----------------- */
.jl-top-shop-info.alignfull {
  background-color: #ffc2ce !important;
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.24) 3px, transparent 3px),
    radial-gradient(rgba(255, 255, 255, 0.24) 3px, transparent 3px);
  background-size: 8px 8px, 8px 8px;
  background-position: 0 0, 4px 4px;
  padding-bottom: 0px !important;
}

/* お知らせ */

.jl-news {
  text-align: center;
}

/* TOPページのお知らせ一覧だけを変更 */
.jl-top-news .p-postList__body::after {
    color: #000;
    background-color: #138ecf;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: none;
    border: solid 1px #000;
	margin-top: 5px;
}

.jl-top-news .p-postList__link:hover .p-postList__body::after {
  background-color: #111;
}
.jl-top-news .-type-list2 .p-postList__item {
    border-bottom: 1px solid hsl(0deg 0% 0%);
    margin-bottom: 1.5em;
    margin-top: 0;
    padding-bottom: 1.5em;
}
.jl-top-news .p-postList.-type-list2 {
    border-top: 1px solid hsl(0deg 0% 0%);
    padding-top: 1.5em;
}
.jl-top-news .p-postList__thumb {
	border: solid 1px #000;
}

/* TOPのお知らせ：PC時のサムネイルサイズ */
@media (min-width: 960px) {
  .jl-top-news .p-postList__thumb {
    flex-basis: 230px;
    width: 230px;
  }
	.jl-top-news .-type-list2 .p-postList__link {
    gap: 60px;
	justify-content: center;
}
}
/* =====================================
   TOPお知らせ：スマホ表示
===================================== */
@media (max-width: 959px) {

  /* サムネイルとテキストを横並び */
  .jl-top-news .type-list2 .p-postList__link {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
  }

  /* サムネイル */
  .jl-top-news .type-list2 .p-postList__thumb {
    flex: 0 0 110px;
    width: 110px;
    margin: 0;
  }

  /* テキスト部分 */
  .jl-top-news .type-list2 .p-postList__body {
    flex: 1;
    min-width: 0;
    margin: 0;
  }

  /* タイトル */
  .jl-top-news .type-list2 .p-postList__title {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.6;
  }

  /* 日付・カテゴリー */
  .jl-top-news .type-list2 .p-postList__meta {
    font-size: 10px;
  }
}

/* 外観 → カスタマイズ → トップページ → メインビジュアル */
.p-mainVisual.-margin-on {
    padding: 50px;
}
.p-mainVisual__slide {
	border: solid 1px #000;
    border-radius: 20px;
}

@media (max-width: 599px) {
.p-mainVisual.-margin-on {
    padding: 0px 20px 30px 20px;
}
.p-mainVisual__slide {
	border: solid 1px #000;
    border-radius: 20px;
}
	.jl-request-sec .jl-request-heading {
    -webkit-text-stroke: 2px #111;
	line-height: 1;
}
}

/* TOPお知らせ：ホバー時の半透明表示を解除 */
.jl-top-news .p-postList__link:hover .p-postList__thumb::before {
  opacity: 0 !important;
}

/* =====================================
   トップページ：施工事例準備中
===================================== */
.jl-home-works-empty {
  width: min(100% - 40px, 620px);
  margin: 30px auto 40px;
  padding: 36px 24px;
  text-align: center;

  background-color: #fff;
  border: 2px solid #111;
  border-radius: 18px;
  box-shadow: 5px 5px 0 #111;
}

.jl-home-works-empty__label {
  display: inline-block;
  margin: 0 0 16px;
  padding: 6px 18px;

  color: #111;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;

  background-color: #ffd21f;
  border: 2px solid #111;
  border-radius: 999px;
}

.jl-home-works-empty__text {
  margin: 0;
  color: #111;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .jl-home-works-empty {
    width: calc(100% - 32px);
    margin: 24px auto 32px;
    padding: 30px 16px;
    box-shadow: 4px 4px 0 #111;
  }
}