@media (max-width: 768px) {
  
.grid-item {
  width: 100%; /* 幅を100%に設定 */
}



div{
  position: relative; /*親要素にrelative*/
}

a:link {
  color:rgba(var(--color-foreground), 0.75) !important;
  font-weight :normal !important;
}
a:visited {
  color:rgba(var(--color-foreground), 0.75) !important;
  font-weight :normal !important;
}
a:active {
  color:rgba(var(--color-foreground), 0.75) !important;
  font-weight :normal !important;
}

a:hover {
   opacity: 0.75; /* 25％ほど透明にする */
}


img:hover {
   opacity: 0.75; /* 25％ほど透明にする */
}


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


body {
  padding: 5px 5px;
  background: #fff;
}
h1 {
  margin-bottom: 100px;
}
h2 {
  margin-bottom: 50px;
}
/* スライドする要素 */
.content {
   background-image: cover;
   width: 350px;
   height: 400px;
    background: #fff;

 
}
/* スライドレールの枠 */
.wrap {
  display: flex;
  align-items: center;
  height: 400px;
  margin-bottom: 100px;

}
/* content4つをまとめたスライドブロック */
.slideshow {
  display: flex;
  -webkit-animation: loop-slide 20s infinite linear 1s both;
  animation: loop-slide 20s infinite linear 1s both;
}
@-webkit-keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}


.border {
    width: 90%;
    max-width: 300px; /* 必要に応じて調整 */
    margin: 0 auto; /* 中央に配置 */
    border: solid 1px #454545;
    padding: 1px;
    box-sizing: border-box;
}




.divlogo {
	width:	300px;
     height:42px;
	margin-bottom: 20px;
	}




img { image-rendering: -webkit-optimize-contrast; }


     body, html {
        margin: 0;  /* 全体の余白をリセット */
        padding: 0;
    }

body {
  margin: 0;
  padding: 0;
	}



a {
  text-decoration: none !important; /* 強制的に適用 */
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #333; /* フッターの背景色 */
  color: #fff; /* フッターの文字色 */
  text-align: center;
  padding: 20px;
}


.child {
  position: relative;
  left: 0; /* これが横ずれを防ぐ */
}


   .section {
      margin-bottom: 30px;
      font-size: 2rem;
    }


@media (max-width: 768px) {
  .left {
    display: none;
  }

  .right {
    margin-left: 0;
    width: 100%;
  }
}


.sp-only {
  display: none;
  position: static; /* ←追加 */
}


/* ↓ fade-in アニメーションをスマホ用CSSに入れてもOKですが、ここはわかりやすくインラインで記述 */

    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .fade-in.active {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-in.delay-1.active {
      transition-delay: 0.2s;
    }

    .fade-in.delay-2.active {
      transition-delay: 0.4s;
    }

    .fade-in.delay-3.active {
      transition-delay: 0.6s;
    }

    .fade-in.delay-4.active {
      transition-delay: 0.8s;
    }

    .fade-in.delay-5.active {
      transition-delay: 1.0s;
    }


.mask {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 3;
  pointer-events: none; /* ←マスクにクリックイベントが届かないように */
}

.sp-only {
  display: block;
}

@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}


.section, .container {
  overflow: visible; /* または overflow を指定しない */
}


.left {
    display: none !important;
  }

  /* 上部固定ヘッダー */
  .mobile-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 60px; /* 高さ固定 */
    background: #fff;
    padding: 20px 20px;
    font-family: 'Times New Roman', Times, serif;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .mobile-header .title {
    font-size: 25px;
    line-height: 1.2;
  }
  .mobile-header .season {
    font-size: 12px;
    margin-top: 2px;
  }

  /* 右カラム全画面 */
  .right {
    position: fixed;
    top: 40px; /* ヘッダーの下 */
    left: 0; right: 0; bottom: 0;
    overflow-y: auto;
    background: #fff;
    padding: 0 0 20px 0;
    box-sizing: border-box;
  }
	


.section img {
  width: 100%;    /* 横幅を80%に縮小 */
  height: auto;  /* 縦横比を維持 */
  object-fit: contain; /* 画像の切れを防ぐ */
  display: block;
  margin: 0 auto;
    background: #fff;

}

.section {
  padding-top: 70px; /* 40pxの高さ + 余裕の20px */
}


	
	
.title-wrapper {
  position: absolute;
  top: 10;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px; /* タイトルと数字の間隔 */
transform: translateY(-30px);
    background: #fff;
	  overflow-x: hidden;
}

.title2 {
  font-family: "Times New Roman", Times, serif;
  font-size: 15px; /* 適宜調整 */
  color: #000;
  line-height: 1;
  margin: 0;
    background: #fff;
	  overflow-x: hidden;

}
	
	.title1 {
  font-family: "Times New Roman", Times, serif;
  font-size: 12px; /* 適宜調整 */
  color: #FF0004;
  line-height: 1;
  margin: 0;
    background: #fff;
	  overflow-x: hidden;

}
	
	

.title-number {
  font-family: "Times New Roman", Times, serif;
  font-size: 15px; /* 数字の大きさを調整 */
  color: #000;
  margin: 0;
    background: #fff;
	  overflow-x: hidden;

}


	
	
	.category {
  display: none;
}

/* スマホのみ表示 */
@media (min-width: 768px) {
  .category {
    display: block;
    /* 必要に応じて配置やスタイルもここで */
  }
}
	
	.title3 {
  display: inline-block; /* 線をテキスト幅に合わせる */
  border-bottom: 1px solid #000;
  padding-bottom: 2px; /* 線と文字の間の隙間 */
  margin-bottom: 6px; /* 下のテキストとの余白 */
    background: #fff;
  overflow-x: hidden;
}
	
	a.btn_04 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 25px;
  position: relative;
  background: #fff;
  border: 1px solid #000;
  box-sizing: border-box;
  padding: 15px 25px 15px 40px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
  margin-left: auto;
		  overflow-x: hidden;
}
	
a.btn_04:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 25px;
  margin-top: -6px;
}
a.btn_04:hover {
  background: #000;
  color: #fff !important;  /* 重要度アップ */
}

a.btn_04:hover:before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
	

.title-row {
  display: flex;
  align-items: center;
  gap: 10px;
	  overflow-x: hidden;
}
	




@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(15px); }
}
	
	html, body {
  overflow-x: hidden !important;
  width: 100%;
}
	
	.right {
  left: 0;
  right: 0;
  overflow-x: hidden;
  max-width: 100vw; /* 画面外にはみ出さない */
}
	
	
.section {
  width: 100%;
  overflow-x: hidden;
}

	
	.wrap {
  overflow-x: hidden;
}
	
	
	
	@media (max-width: 768px) {

  .section {
    padding: 16px 12px;
    box-sizing: border-box;
  }

  .title-wrapper {
    position: static;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 10px;
  }

  .title-number {
    font-size: 15px;
  }

  .title2 {
    font-size: 14px;
    line-height: 1.4;
  }

  .section img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin: 10px 0;
  }

  .title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .divlogo11,
  .divlogo2,
  .divlogo13,
  .divlogo14,
  .divlogo16,
  .divlogo17 {
    padding: 0;
    width: 50%;
    text-align: left;
  }
		
		.divlogo12{
    padding: 0;
    width: 60%;
    text-align: left;
  }
		
		
  .divlogo10 {
    padding: 0;
    width: 70%;
    text-align: left;
  }
		
		
  .divlogo11,
  .divlogo16,
  .divlogo17 {
    padding: 0;
    width: 70%;
    text-align: left;
  }
		
   .divlogo24 {
    padding: 0;
    width: 100%;
    text-align: left;
  }
		
		

  .datail {
    font-size: 10px;
    text-align: right;
    margin: 0;
    padding: 10px 0;
    width: 100%;
    min-width: auto;
  }
		
		

  a.btn_04 {
    width: 100%;
    padding: 10px 12px 10px 30px
   font-size: 14px;
    height: auto;
    text-align: center;
    justify-content: center;
    margin: 10px 0;
  }

  a.btn_04:before {
    left: 12px;
  }

		@media (max-width: 768px) {
  .footer {
    display: none;
  }
}
		
		
		 h1 {
      letter-spacing: 2px;
      font-size: 15px;
      margin-bottom: 40px;
        font-family: 'Times New Roman', Times, serif;
  text-align: center;			 
    }

    .section1 {
      margin-bottom: 50px;
  text-align: center;		

    }

    .section1-title {
      font-weight: bold;
      border-top: 1px solid #000;
      border-bottom: 1px solid #000;
      display: inline-block;
      padding: 5px 80px;
      margin-bottom: 20px;
      font-size: 10px;
       font-family: 'Times New Roman', Times, serif;   

}

    .brand-columns {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
        font-family: 'Times New Roman', Times, serif;
      font-size: 10px;    }

    .column {
      line-height: 1.8;
        font-family: 'Times New Roman', Times, serif;
      font-size: 10px;  
		}
		
		

    .note {
      margin-top: 10px;
      font-style: italic;
      font-size: 12px;
        font-family: 'Times New Roman', Times, serif;
  text-align: center;		
    }

		@media (min-width: 768px) {
  .header {
    display: none !important;
  }
}
		
		h1 {
      letter-spacing: 2px;
      font-size: 24px;
      margin-bottom: 40px;
        font-family: 'Times New Roman', Times, serif;
    }

    .section1 {
      margin-bottom: 50px;
    }

    .section1-title {
      font-weight: bold;
      border-top: 1px solid #000;
      border-bottom: 1px solid #000;
      display: inline-block;
      padding: 5px 300px;
      margin-bottom: 20px;
      font-size: 14px;
        font-family: 'Times New Roman', Times, serif;    }

    .brand-columns {
      display: flex;
      justify-content: center;
      gap: 180px;
      flex-wrap: wrap;
        font-family: 'Times New Roman', Times, serif;
    }

    .column {
      text-align: left;
      line-height: 1.8;
        font-family: 'Times New Roman', Times, serif;
    }

    .note {
      margin-top: 10px;
      font-style: italic;
      font-size: 12px;
        font-family: 'Times New Roman', Times, serif;
    }

@media (min-width: 768px) {
  .header {
    display: none !important;
  }
}

		

.divlogo21 {
	width:	143px;
     height: 77px;
	margin-bottom: 20px;
	}

.divlogo22 {
	width:	140px;
     height: 95px;
	margin-bottom: 20px;
	}




