

/* ----------▼▼▼ メインキャッチ ▼▼▼------------ */
#rind_mainc{
	box-sizing: border-box;
	max-width: 1000px;
	padding: 40px 50px  15px 50px;
	margin: auto;
}

#rind_mainc P{
	font-size: 1.8rem;
	line-height: 1.5;
	margin-bottom: 40px;
}

.rm_maincatch{
	margin: 0px 0px 15px 0px;
}

#maincatch2504{

}

	@media screen and (max-width: 767px){


		#rind_mainc, article {
		box-sizing: border-box;
		padding: 40px 20px 15px 20px;
		margin: auto;
		}

		#rind_mainc P {
		font-size: 1.6rem;
		line-height: 1.4;
		margin-bottom: 20px;
		}

	}


/* ----------▲▲▲ メインキャッチ ▲▲▲------------ */


/* ----------▼▼▼ 記事紹介部分▼▼▼------------ */
article{
	box-sizing: border-box;
	max-width: 1000px;
	padding: 0px 50px  15px 50px;
	margin: auto;
}

h2.news-title {
  display: flex;
  align-items: center;
  color: white;
  font-weight: 700;
  font-size: 28px;
  text-shadow: 1px 2px 0px #102D8D,
               -1px -1px 0px #102D8D,
               1px -1px 0px #102D8D,
               -1px 1px 0px #102D8D,
               3px 3px 1px rgba(80, 80, 80, 1.0);
  margin-bottom: 10px;
}

.headline-icon {
  width: 80px; 
  height: auto;
  margin-right: 8px;
}

.news-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

/* aタグをブロックレベルにして余計な伸張を防ぐ */
.news-link {
  display: block;
  text-decoration: none;
  color: inherit;
  flex: 1 1 calc(33.333% - 20px); 
  max-width: calc(33.333% - 20px); 
  box-sizing: border-box;

}

.activenews{
	  transition-duration: .2s;
}

.activenews:hover{
transform: scale(1.05);
}

.cs_non{
	cursor: default;
}

/* news-boxは幅を指定しない、aが制御する */
.news-box {
  display: flex;
  flex-direction: column;
  height: 100%;
}


.news-box dt {
  text-align: center;
  margin-bottom: 10px;
}

.news-box img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
}

.news-box h3 {
  font-size: 1.6rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 8px;
}

.news-box p {
  font-size: 1.5rem;
  color: #444;
  line-height: 1.5;
}

/* スマホ対応 */
@media (max-width: 768px) {
article{
  padding: 0px 20px;
}

h2.news-title{
  font-size: 26px;
}

.headline-icon {
    width: 60px;

}

  .news-box {
    flex: 1 1 100%;
  }

  .news-row {
    gap: 16px;
  }

  .news-link.activenews, .news-link.cs_non {
    flex: 1 1 100%; /* 横幅いっぱい1列 */
    max-width: 100%;
  }

  .news-box img{
    max-height: 170px;
  }

}

/* ----------▲▲▲ 記事紹介部分▲▲▲------------ */


/* ----------▼▼▼ メルマガ募集部分▼▼▼------------ */
.newsletter-section {
  padding: 40px 20px;
  background: #fff;
  max-width: 1000px;
  margin: 0 auto;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  border: solid 6px #222;
  padding: 10px 15px;
}

.newsletter-body {
  flex: 1 1 calc(70% - 15px); /* gapの半分を引く */
  box-sizing: border-box;
}

h2.newsletter-title {
	font-size: 2.0rem;
	color: #E60012;
	font-weight: bold;
	margin-bottom: 15px;
}

.newsletter-body p {
  font-size: 1.5rem;
  color: #000;
  line-height: 1.6;
  margin-bottom: 20px;
}

.newsletter-button {
	display: inline-block;
	background: #102D8D;
	color: #fff;
	padding: 8px 24px;
	text-align: center;
	font-size: 1.5rem;
	font-weight: bold;
	text-decoration: none;
	width: calc(100% - 30px);
	max-width: 100%;
}

.newsletter-visual {
  flex: 1 1 calc(30% - 15px);
  text-align: center;
}

.newsletter-visual img {
  max-width: 200px; 
  width: 100%;       
  height: auto;
  margin: 0 auto;  
}


/* スマホ対応 */
@media (max-width: 768px) {
  .newsletter-content {
    flex-direction: column;
    text-align: left;
  }

  h2.newsletter-title{
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .newsletter-section{
    padding: 0;
    margin-bottom: 30px;
  }

  ..newsletter-content{
    padding: 0 10px;
  }

  .newsletter-body {
    flex: 1 1 100%;
  }

  .newsletter-button {
    max-width: 80%;
  }

  .newsletter-visual img{
    max-width: 140px;
  }

}

/* ----------▲▲▲ メルマガ募集部分▲▲▲------------ */


/* ----------▼▼▼ このシリーズに登場する製品 ▼▼▼------------ */
.series-section {
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.series-title {
  display: flex;
  align-items: center;
  color: white;
  font-weight: 700;
  font-size: 28px;
  text-shadow: 1px 2px 0px #102D8D,
               -1px -1px 0px #102D8D,
               1px -1px 0px #102D8D,
               -1px 1px 0px #102D8D,
               3px 3px 1px rgba(80, 80, 80, 1.0);
  margin-bottom: 10px;
}

.slider-wrapper {
  max-width: 830px;
  position: relative;
  padding: 0px 30px;
  overflow: hidden;
  margin-left: 30px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slider-item {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  padding: 0px 35px;
  box-sizing: border-box;
  text-align: left;
  text-decoration: none; /* リンク下線を消す */
  color: inherit;        /* 文字色を継承 */
  transition: transform 0.2s ease;
}

.slider-item:hover {
  transform: scale(1.01);
}

.slider-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.slider-item h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  font-weight: 700;
  color: #222;
}

.slider-item p {
  font-size: 1.3rem;
  color: #444;
  line-height: 1.5;
}

.slider-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 1;
}

.slider-nav.prev {
  left: 10px;
}

.slider-nav.next {
  right: 10px;
}

/* アニメーションを一瞬だけ無効化するため */
.slider-track.no-anim { transition: none !important; }

.slider-nav:disabled {
  opacity: 0.4;       /* 半透明に */
  cursor: not-allowed; /* 禁止マーク */
}


@media (max-width: 768px) {
  .slider-wrapper {
  margin-left: 0px;
}

  .series-title {
    font-size: 24px;

  }

  .slider-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ----------▲▲▲ このシリーズに登場する製品 ▲▲▲------------ */


/* ----------▼▼▼ 下部バナーボックス ▼▼▼------------ */
.banner-section {
  max-width: 860px;
  margin: 40px auto 60px;
  padding: 0 20px;
  box-sizing: border-box;
  display: grid;
  gap: 28px;
}

/* 上部ヒーロー */
.banner-hero {
  border: 1px solid #eee;
  border-radius: 14px;
  background: #fff;
  text-align: center;
  padding: 0; /* 親コンテナの余白も必要なければ削除 */
}

.banner-hero__title {
  margin: 0;          /* 見出し特有の上下余白を削除 */
  padding: 0;         /* パディング削除 */
  line-height: 0;     /* 画像下の隙間を無くす */
}

.banner-hero__logo {
  display: block;     /* ブロック化して不要な余白を防ぐ */
  margin: 0 auto;     /* 中央寄せ */
  max-width: 100%;    /* レスポンシブ対応 */
  height: auto;
}

/* 中段：2段組グリッド */
.catalog-grid {
  display: grid;
  row-gap: 10px;
    column-gap: 60px;
}
.catalog-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
.catalog-card {
  display: block;
  background: #fff;
  overflow: hidden;
}

.catalog-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* 下段：横長プロモ帯 */
.promo-band {

}

.promo-band__img {
  width: 100%;
  height: auto;
  display: block;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .catalog-grid--2col {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-grid {
    display: grid;
    gap: 8px;
}

  .promo-band {
    flex-direction: column;
    text-align: center;
  }
  .promo-band__img {
    max-width: 100%;
  }
}


/* ----------▲▲▲ 下部バナーボックス ▲▲▲------------ */