.elementor-1292 .elementor-element.elementor-element-cdee36c{--display:flex;--min-height:400px;--justify-content:center;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--margin-top:80px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-1292 .elementor-element.elementor-element-cdee36c:not(.elementor-motion-effects-element-type-background), .elementor-1292 .elementor-element.elementor-element-cdee36c > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFDF1;}.elementor-1292 .elementor-element.elementor-element-cdee36c.e-con{--align-self:center;}.elementor-1292 .elementor-element.elementor-element-6b147c5{--display:flex;--gap:40px 40px;--row-gap:40px;--column-gap:40px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1292 .elementor-element.elementor-element-6b147c5.e-con{--align-self:center;}.elementor-1292 .elementor-element.elementor-element-97959dd.elementor-element{--align-self:center;}.elementor-1292 .elementor-element.elementor-element-a44d301{text-align:center;}.elementor-1292 .elementor-element.elementor-element-a44d301 .elementor-heading-title{font-family:"Noto Sans JP", Sans-serif;letter-spacing:2px;color:var( --e-global-color-text );}.elementor-1292 .elementor-element.elementor-element-f4fcd6a{--display:flex;--padding-top:10px;--padding-bottom:80px;--padding-left:0px;--padding-right:0px;}.elementor-1292 .elementor-element.elementor-element-2983d64{font-family:"Noto Sans JP", Sans-serif;font-size:14px;letter-spacing:1px;color:#B6B6B6;}.elementor-1292 .elementor-element.elementor-element-2983d64 a{color:#A7A083;}.elementor-1292 .elementor-element.elementor-element-f183a74{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(max-width:1024px){.elementor-1292 .elementor-element.elementor-element-2983d64{padding:0px 20px 0px 20px;}}@media(max-width:767px){.elementor-1292 .elementor-element.elementor-element-cdee36c{--min-height:200px;--margin-top:80px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-1292 .elementor-element.elementor-element-6b147c5{--gap:20px 20px;--row-gap:20px;--column-gap:20px;}.elementor-1292 .elementor-element.elementor-element-a44d301 .elementor-heading-title{font-size:14px;}.elementor-1292 .elementor-element.elementor-element-f4fcd6a{--padding-top:10px;--padding-bottom:20px;--padding-left:0px;--padding-right:0px;}.elementor-1292 .elementor-element.elementor-element-2983d64{padding:0px 20px 0px 20px;font-size:12px;}.elementor-1292 .elementor-element.elementor-element-f183a74{--padding-top:20px;--padding-bottom:20px;--padding-left:20px;--padding-right:20px;}}/* Start custom CSS for html, class: .elementor-element-97959dd */.fade-in-text {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;
  font-weight: 500;
  display: inline-block;
}

.fade-in-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px); /* 下から開始 */
  animation: fadeUp 0.8s ease-out forwards;
}

/* アニメーションのタイミングを調整 */
.fade-in-text span:nth-child(1) { animation-delay: 0.1s; }  /* N */
.fade-in-text span:nth-child(2) { animation-delay: 0.15s; } /* E */
.fade-in-text span:nth-child(3) { animation-delay: 0.2s; }  /* W */
.fade-in-text span:nth-child(4) { animation-delay: 0.25s; } /* S */

/* アニメーションの定義 */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-text {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  display: inline-block;
  color: #666666 !important;
  font-size: 48px !important;
  letter-spacing: 0.1em !important;
  text-align: center !important;
  margin: 0px 0 !important;
}

/* スマホ用（画面幅が狭い場合） */
@media (max-width: 767px) {
  .fade-in-text {
    font-size: 28px !important;
  }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-f7f6dfb *//* --- NEWS一覧：グリッドレイアウト --- */
.custom-product-wrapper {
    width: 100%;
    margin: 0px 0;
}

.custom-products-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4カラム */
    gap: 20px 20px;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* --- カードデザイン --- */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
    border: 1px solid #f5eedb; /* 薄い枠線 */
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.product-card a {
    text-decoration: none;
    display: block;
    padding: 10px;
    color: #333;
}

/* 画像：正方形維持 */
.product-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    background: #f4f4f4;
    display: block;
    margin-bottom: 10px;
}

/* タイトル：14px */
.product-card h3 {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 8px 0;
    color: #666666;
}

/* 抜粋テキスト：3行制限 */
.product-card .excerpt {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- ページネーション --- */
.custom-pagination {
    margin-top: 50px;
    text-align: center;
}
.custom-pagination a, 
.custom-pagination span {
    padding: 8px 16px;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}
.custom-pagination .current {
    background: #333;
    color: #fff;
    border-color: #333;
}

/* --- レスポンシブ調整 --- */
@media (max-width: 900px) {
    .custom-products-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .custom-products-list { grid-template-columns: repeat(2, 1fr);
     gap: 10px 10px;}
     /* タイトル：14px */
.product-card h3 {
    font-size: 14px;
  
}

/* 抜粋テキスト：3行制限 */
.product-card .excerpt {
    font-size: 12px;
    
}
    
}/* End custom CSS */