/* css/style.css */
html {
  font-size: 62.5%; /* 10px相当 = 1rem */
}

body {
  font-family: 'Helvetica Neue',  yu-gothic-pr6n, sans-serif;
  margin: 0;
  padding: 0;
  background: #f3f3ed;
  color: #333;
font-weight: 400;
font-style: normal;
  font-size: 1.6rem; /* 16px */
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
p{
	font-size: 1.8rem;
	line-height: 2;
}

picture{
	display: block;
	margin-bottom: 100px;
}

picture img{
	width: 100%;
}

.sp-only {
  display: none;
}


/* MVロゴのスタイル */
.marquee-logo {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}


/* タイトル系 */
.point_tit {
	margin: 0 auto 10px;
	width: 35%;
}

.style_tit {
	margin: 0 auto 50px;
	width: 30%;
}

.lineup_tit {
	margin: 0 auto 50px;
	width: 25%;
}

.container {
  padding: 0 16px;
}

.center-text {
  text-align: center;
}

.centered-image {
  display: block;
  margin: 0 auto;
}

.mv img {
  width: 100%;
  height: auto;
  display: block;
}

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

.fade-in-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* リンクのスタイル */
.link-fade {
  display: inline-block;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.link-fade:hover {
  opacity: 0.8;
}

.lead-text{
	margin-top: 50px;
	margin-bottom: 100px;
	line-height: 2.5em;
}

.point{
	margin:0 auto 100px;
  max-width: 900px;
}

.three-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 40px auto 100px auto;
  width: 960px;
}

.look-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.look-item .plus-mark {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 40px; /* 2倍に拡大 */
  font-weight: normal;
  color: #ffffff;
  line-height: 1;
  font-family: Arial, sans-serif;
  z-index: 10;
  background: none;
}

.swiper-container,
.swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.swiper-wrapper {
  display: flex;
  transition-timing-function: ease-in-out;
  transition-duration: 0.6s;
  will-change: transform;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
}

.modal.show {
  display: block;
}

.modal-content {
  max-width: 100%;
  width: 60%;
  margin: 60px auto;
  background: none;
  padding: 0;
  border-radius: 0;
}

.modal-close {
  position: fixed;
  top: 10px;
  right: 40px;
  font-size: 70px;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
}

.modal-slide {
  width: 50%;
  margin: 0 auto 40px auto;
  text-align: center;
}

.modal-slide img {
  /* max-height: 80vh; */
  width: 100%;
  margin: 0 auto;
  display: block;
  border-radius: 0;
}

.modal-credit {
  text-align: right;
  margin-top: 8px;
  color: #fff;
  margin: 20px auto 0 auto;
  width: auto;
	  font-size: 1.4rem;
}


.buy-btn {
  display: inline-block;
  margin-left: 0.5em;
  padding: 0.4em 1em;
  background-color: #000;
  color: #fff;
  text-decoration: none; /* 下線を消す */
  border-radius: 1px;
  font-size: 0.85rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* モーダルBUYボタンのスタイル調整 */
.modal-credit .buy-btn {
  display: inline-block;
  margin-left: 0.5em;
  padding: 0.4em 1em;
  background-color: #000;
  color: #fff;
  text-decoration: none; /* 下線を消す */
  border-radius: 1px;
  font-size: 0.95rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}

 .buy-btn:hover {
  background-color: #333;
}

.modal-credit .buy-btn:hover {
  opacity: 0.7; /* フェード感 */
}

.credit-line {
  margin-bottom: 6px;
}

.grid-3x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 12px;
  margin-bottom: 40px; /* クレジット下の余白追加 */
  max-width: 1200px;	
  margin: 0 auto 60px;
}

.grid-3x3 > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.grid-3x3 img {
  width: 100%;
  height: auto;
}

.grid-3x3 .credit {
  text-align: center;
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.5;
	margin-bottom: 30px;
}

 /* クレジットのリンク設定 */
.credit a {
  color: #000;              /* 通常のリンク色：黒 */
  text-decoration: none;   /* 下線なし（必要なら） */
  transition: color 0.3s;  /* なめらかな色変化 */
}

.credit a:visited {
  color: #000;              /* 訪問済みリンクも黒 */
}

.credit a:hover {
  color: #555;              /* ホバー時：やや明るいグレー */
}


.itemname{
	font-size: 16px;
	margin-top:10px;
	text-align: center;
}

.logo img {
  width: 100px; /* 小さく調整 */
  display: block;
  margin: 0 auto 40px;
}

.logo {
  text-align: center; /* 親要素に適用することで中央寄せ可能 */
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  margin: 20px auto 70px;
	width: 40%;
}

footer{
	margin-bottom: 50px;
	font-size: 1.2rem;
}

@media (max-width: 768px) {
  html {
    font-size: 56.25%; /* 1rem = 9px 相当（可読性維持） */
  }
	
  .three-column {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
	
  .grid-3x3 {
    grid-template-columns: repeat(2, 1fr);
  }
	
  .modal-content {
    width: 90%;
  }
	
.modal-slide {
  width: 100%;
}
	
  .modal-slide img {
    max-width: 100%;
    margin-bottom: 16px;
  }
	
.modal-close {
  position: fixed;
  top: 5px;
  right: 10px;
  font-size: 40px;
  color: #fff;
}
  .look-item .plus-mark {
    bottom: 8px;
    right: 8px;
    font-size: 20px;
  }

/* タイトル系 */
.point_tit {
	margin: 0 auto 10px;
	width: 80%;
}

.style_tit {
	margin: 0 auto 30px;
	width: 70%;
}

.lineup_tit {
	margin: 0 auto 30px;
	width: 60%;
}
.btn{
	display: inline-block;
	width:90%;
	margin: 0 auto;}
	
.sp-only {
    display: inline;
  }
p{
	font-size: 1.6rem;
	line-height: 1.8;
}
.itemname{
	font-size: 12px;}	

.credit{
	font-size: 8px;}	

.lead-text{
	margin-top: 30px;
	margin-bottom: 70px;
}	

.logo img {
  width: 100px; /* 小さく調整 */
  display: block;
  margin: 40px auto;
}
	}

	

@media screen and (min-width: 1200px) {
  html {
    font-size: 68.75%; /* 1rem = 11px 相当 */
  }
}