@charset "UTF-8";
/* CSS Document */

/* 全体共通設定 */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* 横スクロール防止 */
 font-family: vinyl, "Helvetica Neue", Arial, sans-serif;
font-weight: 400;
font-style: normal;
}

/* ヘッダー */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  /*box-shadow: 0 1px 2px rgba(0,0,0,0.1);*/
}

header img{ margin-left: 20px;}

/* メインエリア */
.content {
  padding-top: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

/* カルーセルコンテナ */
.carousel-container {
  margin: 60px auto;
  max-width: 800px;
  width: 60%;
  position: relative; /* ← 追加！これがないと矢印が表示されない */
}

.fade-carousel{
position: relative;}

/* フェードカルーセル内の画像 */
.fade-carousel img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: auto; /* 画像上でドラッグ不可にする */
  user-select: none;
	position: relative;
}

.credit {
  color: black;
  font-size: 20px;
  display: flex;
  align-items: center;
  margin-top: 10px;
  justify-content: flex-end; /* ← 追加ポイント */
  text-align: right;         /* ← テキスト右寄せ */
}


.credit .buy-btn {
  margin-left: 1em; /* ← BUYを右にズラす */
  text-decoration: none;
  color: black;
  border-bottom: 1px solid black;
  padding-bottom: 1px;
  transition: border-color 0.3s;
}

.credit .buy-btn:hover {
  border-color: transparent;
}

/* 矢印のカスタムボタン */
.custom-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  font-weight: bold;
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 9999; /* 最前面に表示 */
  opacity: 0.8;
  transition: opacity 0.2s ease;
  padding: 0 10px;
  line-height: 1;
}

.custom-arrow:hover {
  opacity: 1;
}

.cap{
	font-size:13px;
	text-align: right;
}

.slick-prev {
  left: -30px;
}

/*.slick-next {
  right: -30px;
}*/

.slick-next {
    right: 10px; /* お好みで調整 */
    z-index: 1;
}

.slick-next:before {
    content: '';
    display: block;
    width: 40px; /* 画像サイズに合わせて調整 */
    height: 40px;
    background-image: url('/img/arrow-right.svg');
    background-size: contain;
    background-repeat: no-repeat;
}


/* Slick関連 */
.slick-slide {
  outline: none;
}

.slick-prev, .slick-next {
  z-index: 1;
}

/* フッター */
footer {
  text-align: center;
  padding: 40px 20px 20px;
  background: white;
  border-top: 1px solid #ccc;
}

.footer-links {
  margin: 10px 0 40px;
}

.footer-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
}

.footer-logo img {
  max-width: 150px;
  height: auto;
	margin-top: 50px;
	margin-bottom: 50px;
}


/* ヘッダーマーキー */
.marquee {
  width: 100%;
  height: 50px;
  background: #000;
  color: #fff;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee-scroll 17s linear infinite;
  will-change: transform;
}

.marquee-content {
  display: flex;
}

.marquee-item {
  display: flex;
  align-items: center;
  margin-right: 40px;
  font-size: 30px;
  white-space: nowrap;
}

.marquee-logo {
  height: 24px;
  width: auto;
  margin-left: 40px;
  filter: brightness(0) invert(1);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}




/* レスポンシブ対応 */
@media (max-width: 768px) {
  .fade-carousel img {
    width: 100%;  /* ← これに変更！ */
  }
  .carousel-container {
    margin:  40px auto;
  width: 90%;
  }
	
.footer-logo img {
  max-width: 100px;
  height: auto;
	margin-top: 30px;
	margin-bottom: 50px;
}
.credit {
  font-size: 16px;
}
 .custom-arrow {
    font-size: 28px;
  }

  .slick-prev {
    left: -20px;
  }

  .slick-next {
    right: -20px;
  }	
  .slick-prev img,
  .slick-next img {
    width: 100px;
	  height: 9px;}

}
