/** Shopify CDN: Minification failed

Line 21:10 Unexpected "{"
Line 21:19 Expected ":"
Line 22:14 Expected identifier but found whitespace
Line 22:16 Unexpected "{"
Line 22:25 Expected ":"
Line 22:76 Expected ":"
Line 23:17 Expected identifier but found whitespace
Line 23:19 Unexpected "{"
Line 23:28 Expected ":"
Line 23:82 Expected ":"
... and 10 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:model-intro-spec-price (INDEX:48) */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
  padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}

@media screen and (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}
/* END_SECTION:model-intro-spec-price */

/* START_SECTION:why-timeseek (INDEX:71) */
.why-timeseek__inner{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin: 20px 0 24px;
}
/* ▼ 完全な四角い枠に（角丸なし） */
.wt-item{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 0; /* ← 角丸をなくす */
}
.wt-icon{
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wt-icon svg{ width:100%; height:100%; }

.wt-text{
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wt-text strong{
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}
.wt-text span{
  font-size: 12.5px;
  color: #666;
  line-height: 1.5; /* 自然折り返し、三点リーダーは使わない */
}
/* END_SECTION:why-timeseek */