@charset "utf-8";

/* ヒーロー */
.hero {
  position: relative;
  padding-top: 5rem;
  height: 500px;
  overflow: hidden;
  background-color: black;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text {
  color: white;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}


@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 2.25rem;
  }
  .hero-buttons {
    flex-direction: row;
  }  
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 8rem;
    height: 650px;
  }  
  .hero-title {
    font-size: 3.75rem;
  }
  .hero-subtitle {
    font-size: 3rem;
  }
}
.hero-btn {
  padding: 1rem 2rem;
  font-weight: bold;
  font-size: 1.5rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}





/* セクション */
section {
  padding: 4rem 1rem;
}
.section-title {
  text-align: center;
  /*font-size: 1.875rem;*/
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 3rem;
}


@media (min-width: 640px) {
  section {
    padding: 4rem 1.5rem;
  }
  .section-title {
    /*font-size: 2.25rem;*/
    font-size: 3.25rem;
  }
  .section-subtitle {
    font-size: 1.5rem;
  }  
}

@media (min-width: 1024px) {
  section {
    padding: 4rem 2rem;
  }
}




/* ===== TOP hero下：カテゴリリスト（縦4つ） ===== */
.top-genre-list{
  padding: 22px 0 10px;
}

.top-genre-list__inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}

.top-genre-item{
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 16px;
  align-items: stretch;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(17,24,39,.18);
  border-radius: 4px;
  padding: 14px;
  margin-bottom: 14px;
}

.top-genre-item:hover{
  background: #fafafa;
}

.top-genre-item__media{
  display:flex;
  align-items:center;
  justify-content:center;
}

.top-genre-item__img{
  width: 170px;
  height: 110px;
  object-fit: cover;
  border: 1px solid rgba(17,24,39,.18);
  border-radius: 2px;
  background: #fff;
}

.top-genre-item__img.is-placeholder{
  width: 170px;
  height: 110px;
  border: 1px solid rgba(17,24,39,.18);
  border-radius: 2px;
  background: #f3f4f6;
}

.top-genre-item__body{
  position: relative;
  padding-right: 10px;
}

.top-genre-item__meta{
  /*font-size: 12px;*/
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 6px;
}

.top-genre-item__title{
  /*font-size: 18px;*/
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.top-genre-item__desc{
  /*font-size: 14px;*/
  font-size: 1.5rem;
  color: #374151;
  line-height: 1.7;
  padding-right: 60px; /* 右下の「詳細を見る」と被らないように */
}

.top-genre-item__more{
  position: absolute;
  right: 6px;
  bottom: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-genre-item__arrow{
  color: #ef4444; /* 赤い > に寄せる */
  font-size: 18px;
  line-height: 1;
}

/* SPレイアウト修正：縦積みに変更 */
@media (max-width: 640px){
  .top-genre-list__inner{
    padding: 0;
    max-width: 1200px;
  }
  
  .top-genre-item{
    display: block; /* グリッド解除 */
    padding: 16px;
  }
  
  .top-genre-item__media {
    margin-bottom: 12px;
    display: block;
  }

  .top-genre-item__img,
  .top-genre-item__img.is-placeholder{
    width: 100%;     /* 幅いっぱい */
    height: 200px;   /* 高さは適度な固定値で */
    object-fit: cover;
  }

  .top-genre-item__title{ 
    font-size: 2rem; 
  }
  
  .top-genre-item__desc{ 
    font-size: 13px; 
    padding-right: 0; 
  }
  
  .top-genre-item__more{
    position: relative;
    font-size: 1.35rem;
    text-align: right;
    display: block;
    margin-top: 1em;
    right: auto;
    bottom: auto;
  }
}



/* グリッド */
.grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .grid {
    gap: 2rem;
  }
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .grid-cols-md-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid-cols-lg-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-lg-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* カード */
.card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2F5597;
  margin-bottom: 1rem;
}

.card-text {
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.card-img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-radius: 0.25rem;
  margin-bottom: 1.5rem;
}

/* 料金ボックス */
.price-box {
  background-color: #eff6ff;
  padding: 1.5rem;
  border-radius: 0.25rem;
  margin-bottom: 1.5rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #d1d5db;
}

.price-label {
  color: #4b5563;
}

.price-value {
  font-size: 1.5rem;
  font-weight: bold;
}

.price-highlight {
  font-size: 1.875rem;
  font-weight: bold;
  color: #FF8C42;
}

.price-note {
  font-size: 1.25rem;
  color: #6b7280;
  margin-top: 1rem;
}




/* ===== 選ばれる理由（添付レイアウト寄せ） ===== */
.reason-section{
  background: #cfe6f7; /* 添付の水色寄り */
  padding: 36px 0 46px;
}

.reason-container{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}

.reason-title{
  text-align: center;
  font-weight: 900;
  /*font-size: 22px;*/
  color: #1f3f7a;
  letter-spacing: .02em;
  margin: 0 0 6px;
}

.reason-subtitle{
  text-align: center;
  /*font-size: 12px;*/
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 18px;
}

/* 2×2 グリッドの“余白”を添付に寄せる */
.reason-grid{
  gap: 14px;
}

/* カード：影なし・薄い枠・角丸弱め */
.reason-card{
  background: #fff;
  border: 1px solid rgba(17,24,39,.18);
  border-radius: 2px;
  box-shadow: none;
  overflow: hidden;
}

/* カード内：縦積み＋ボタンを下に固定する */
.reason-card__content{
  padding: 14px;
  display: flex;
  flex-direction: column;
  min-height: 320px; /* 4枚の高さを揃えやすく */
}

.reason-card__title{
  text-align: center;
  /*font-size: 16px;*/
  font-size: 2.25rem;
  font-weight: 900;
  color: #163a73;
  margin: 0 0 10px;
}

.reason-card__text{
  /*font-size: 12px;*/
  font-size: 1.5rem;
  color: #111827;
  line-height: 1.7;
  margin: 0 0 10px;
}

/* 画像：添付は“横長写真が中段に1枚”なので高さ固定 */
.reason-card__img{
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid rgba(17,24,39,.12);
  margin: 6px 0 12px;
}

/* 送料比較ボックス：カードに馴染ませる */
.reason-price{
  background: #eef6ff;
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 2px;
  padding: 12px;
  margin: 6px 0 12px;
}

/* ボタン：カード下部に寄せる（添付の“下寄せ感”） */
.reason-card__btn{
  margin-top: auto; /* これで下に固定されます */
  width: 150px;
  align-self: flex-end; /* 右寄せ */
  padding: 10px 12px;
  border-radius: 2px;
  font-weight: 800;
  /*font-size: 12px;*/
  line-height: 1;
}

/* 既存btn-blue/btn-orangeがある前提で、微調整だけ */
.reason-card__btn--orange{
  /*width: 150px;*/
    font-size: 1.5rem;
}

/* SP：1列で、余白と文字サイズを微調整 */
@media (max-width: 640px){
  .reason-section{ padding: 26px 0 34px; }
  .reason-title{ font-size: 20px; }
  .reason-card__content{ min-height: auto; }
  .reason-card__img{ height: 140px; }
  .reason-card__btn{ width: 140px; }
}




/* ===== 取扱商品・実績紹介 ===== */

/* 商品カード */
.product-card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.product-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* badge (右下固定) */
.sl-item-card__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  z-index: 2;
  border-radius: 0; /* 角丸なし */
}

/* sale status colors */
.sl-item-card__badge.is-sale-available { background: #FF8C42; } /* 濃紺 */
.sl-item-card__badge.is-sale-soldout   { background: #c0392b; }

/* rental status colors */
.sl-item-card__badge.is-rental-available { background: #2d4f85; } /* デザインに近い青 */
.sl-item-card__badge.is-rental-busy      { background: #c0392b; } /* デザインに近い赤 */

.product-img-container {
  aspect-ratio: 1;
  background-color: #e5e7eb;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 1rem;
}

.product-title {
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.product-specs {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

.product-specs p {
  margin: 0.25rem 0;
}

.product-link {
  color: #2563eb;
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  text-decoration: none;
  transition: color 0.3s;
}

.product-link:hover {
  color: #1d4ed8;
}




/* ===== 最新出品情報：見出し ===== */
.latest-products__title{
  font-size: 28px;
  font-weight: 800;
  color: #1f3f7a;           /* 添付の濃い青寄せ */
  letter-spacing: .02em;
  margin: 0 0 18px;
}

/* ===== 商品カード：添付に寄せた“枠線＋影なし” ===== */
.product-card--boxed{
  border: 1px solid rgba(17,24,39,.25);
  border-radius: 0;         /* 角丸なし */
  box-shadow: none;         /* 影なし */
  overflow: hidden;
  background: #fff;
  transition: transform .15s ease, border-color .15s ease;
}

.product-card--boxed:hover{
  transform: translateY(-1px);
  border-color: rgba(17,24,39,.35);
  box-shadow: none;
}

/* 画像：添付は“写真が大きめ”なので比率を少し横長に */
.product-img-container--photo{
  aspect-ratio: 4 / 3;      /* ここで写真の見え方を調整 */
  background: #e5e7eb;
  position: relative;
}

.product-img-container--photo .product-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== 下の情報帯（薄いグレー帯） ===== */
.product-info--band{
  background: #f3f4f6;      /* 薄いグレー */
  padding: 14px 16px 12px;
  border-top: 1px solid rgba(17,24,39,.18);
}

.product-info--band .product-title{
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #374151;
}

.product-info--band .product-specs{
  margin: 0 0 10px;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.55;
}

.product-info--band .product-specs p{
  margin: 2px 0;
}

/* ===== “ヤフオクで詳細を見る” 右下寄せ＋赤い矢印 ===== */
.product-link--right{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: #374151;
  text-decoration: none;
  justify-content: flex-end;
  width: 100%;
}

.product-link--right:hover{
  text-decoration: underline;
}

.product-link__arrow{
  color: #dc2626;           /* 赤い > */
  font-size: 22px;
  line-height: 1;
  transform: translateY(1px);
}

/* ===== 下の “商品一覧” ボタン（青・中央・大きめ） ===== */
.latest-products__cta{
  display: flex;
  justify-content: center;
  margin-bottom: 3em;
}

.latest-products__btn{
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  min-width: 260px;
  padding: 14px 28px;
  background: #1f3f7a;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  border-radius: 2px;
}

.latest-products__btn:hover{
  filter: brightness(1.05);
}

.latest-products__btn-arrow{
  font-size: 22px;
  line-height: 1;
}

/* SP微調整 */
@media (max-width: 640px){
  .product-info--band .product-specs p{
    font-size: 14px;
  }
  .latest-products__title{ font-size: 24px; }
  .latest-products__btn{ min-width: 220px; font-size: 16px; }
}




/* 会社概要 */
/* ===== COMPANY ===== */
.company{
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #fff7ed 100%);
  position: relative;
  overflow: hidden;
}

/* 背景の丸 */
.company__bg{
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  opacity: 0.05;
}

.company__bg--blue{
  top: 0;
  right: 0;
  background: #2F5597;
  transform: translate(50%, -50%);
}

.company__bg--orange{
  bottom: 0;
  left: 0;
  background: #FF8C42;
  transform: translate(-50%, 50%);
}

.company__inner{
  /*max-width: 56rem;*/
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.company__title{
  font-size: 3.25rem;
  font-weight: 800;
  color: #2F5597;
  margin: 0 0 1.5rem;
}

.company__accent{
  height: 0.25rem;
  width: 6rem;
  background: #FF8C42;
  margin: 0 auto 2rem;
}

.company__text{
  font-size: 1.5rem;
  color: #374151;
  line-height: 1.75;
  margin: 0 auto 2.5rem;
  max-width: 95rem;
}
/* CTA（既存のbtn btn-blueを活かして影だけ追加） */
.company__cta{
  display: inline-block;
  padding: 1rem 3rem;
  /*font-size: 1.125rem;*/
  font-size: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  text-decoration: none;
}
@media (max-width: 640px){
  .company__text{
    text-align: left;
  }
}




/* ニュース */
/* ===== NEWS（添付レイアウト寄せ） ===== */
.news-section{
  background: #ffffff;
  padding: 34px 0 48px;
}

.news-container{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}

.news-heading{
  font-size: 48px;          /* 添付の大きさ寄せ */
  font-weight: 900;
  letter-spacing: .02em;
  color: #1f3f7a;            /* 紺 */
  margin: 0 0 2px;
  line-height: 1.05;
}

.news-sub{
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 22px;
}

/* リスト */
.news-list{
  margin: 0 0 22px;
}

/* 添付の “濃い青の下線” */
.news-item{
  padding: 14px 0;
  border-bottom: 2px solid rgba(31,63,122,.75);
}

/* hoverはほぼ無いので薄く */
.news-item:hover{
  background: transparent;
}

/* 1行レイアウト（date固定幅＋テキスト） */
.news-content{
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  column-gap: 28px;
}

/* 日付は少し濃く、太め */
.news-date{
  color: #111827;
  /*font-weight: 800;*/
  font-size: 16px;
  white-space: nowrap;
}

/* タイトルは黒・リンク下線なし */
.news-text a{
  color: #111827;
  /*font-weight: 800;*/
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  line-height: 1.5;
}
.news-text a:hover{
  text-decoration: underline;
}

/* 右下の横長ボタン */
.news-footer{
  display: flex;
  justify-content: flex-end;
}

.news-btn{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  width: 320px;            /* 添付の横長感 */
  padding: 18px 22px;

  background: #1f3f7a;
  color: #fff;
  text-decoration: none;

  font-weight: 900;
  border-radius: 2px;
}

.news-btn__label{
  font-size: 18px;
  letter-spacing: .02em;
}

.news-btn__arrow{
  font-size: 22px;          /* ＞を大きめに */
  line-height: 1;
}

/* SP調整 */
@media (max-width: 640px){
  .news-heading{ font-size: 40px; }
  .news-sub{ font-size: 16px; margin-bottom: 16px; }
  .news-content{
    grid-template-columns: 120px 1fr;
    column-gap: 16px;
  }
  .news-date, 
  .news-text a{ font-size: 14px; }
  .news-text a{ text-decoration: none; }

  .news-btn{ width: 100%; padding: 16px 18px; }
  .news-btn__label{ font-size: 16px; }
}







/* FAQ */
.faq-container {
  max-width: 56rem;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: 500;
  color: #111827;
}

.faq-question:hover {
  background-color: #f9fafb;
}

.faq-answer {
  padding: 0 1.5rem 1rem;
  color: #4b5563;
  display: none;
}

.faq-answer.open {
  display: block;
}

.chevron {
  width: 1.25rem;
  height: 1.25rem;
  color: #4b5563;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.chevron.rotated {
  transform: rotate(90deg);
}

/* ===== FAQ section (override) ===== */
#faq.bg-light-blue{
  background:#cfe4f3;
  padding:64px 16px;
}

#faq .faq-container{
  max-width:860px;
  margin:0 auto;
}

#faq .faq-title{
  font-size:40px;
  font-weight:800;
  letter-spacing:.02em;
  margin:0 0 6px;
  /*color:#1f2937;*/
  color: #2F5597;
}

#faq .faq-lead{
  margin:0 0 28px;
  /*font-size:14px;*/
  font-size:1.5rem;
  font-weight:700;
  color:#111827;
}

#faq .faq-item{
  border-radius:6px;
  box-shadow:none;
  border:1px solid rgba(31,41,55,.35);
  margin-bottom:14px;
  background:#fff;
}

#faq .faq-question{
  padding:18px 22px;
  font-weight:800;
  font-size:16px;
  color:#1e3a8a;
}

#faq .faq-question:hover{
  background:#fff;
}

#faq .chevron{
  width:22px;
  height:22px;
  color:#1e3a8a;
  transition:transform .25s ease;
}

/* open時：右矢印→下向きに（あなたのJSが .rotated を付ける前提） */
#faq .chevron.rotated{
  transform:rotate(90deg);
}

#faq .faq-answer{
  display:none;
  padding:18px 22px;
  color:#374151;
  line-height:1.8;
  background:#eef2f7;            /* 添付の薄グレー */
  border-top:1px solid rgba(31,41,55,.18);
}

#faq .faq-answer.open{
  display:block;
}

#faq .faq-more-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-top:26px;
  padding:12px 28px;
  background:#f97316;
  color:#fff;
  font-weight:800;
  border-radius:4px;
  text-decoration:none;
}

#faq .faq-more-btn:hover{
  filter:brightness(.95);
}

/* SP調整（添付の“中央寄せ＋幅広”の雰囲気） */
@media (max-width: 640px){
  #faq.bg-light-blue{ padding:44px 12px; }
  #faq .faq-title{ font-size:30px; }
  #faq .faq-question{ padding:16px 16px; font-size:15px; }
  #faq .faq-answer{ padding:16px 16px; }
  #faq .faq-answer.open p{
    font-size: 14px;
  }
}