@charset "utf-8";

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
/*視覚には表示しないが、HTML構造上セクション見出しを確保（SEO/アクセシビリティ対応）*/


#lp_wrap {
    width: 100%;
	max-width: 600px;
    margin: 0 auto;
/*    font-family: "Lato", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;*/
     font-family:  "Yu Gothic", "游ゴシック", "YuGothic", sans-serif; 
    letter-spacing: .2em;
    padding-bottom: 100px;
    color: #1e1e1e;
	background-color: #e3dcd2;
    padding-top: 150px;
    line-height: 2;
    font-weight: 200;
}
#lp_wrap a {
/*    color: #878787;*/
    transition: .3s;
    display: block;
}
#lp_wrap a:hover {
    opacity: .7;
}
#lp_wrap ul {
    list-style: none;
}
#lp_wrap img {
    vertical-align: bottom;
}
section{
	margin-bottom: 30%;
}

.category{
	margin-bottom: 15%;
}
.bg_gray {
    background: #f5f5f5;
}
.lp_wrap_content {
    padding: 50px 0;
}
.lp_wrap_inner {
    max-width: 540px;
    width: 85%;
    margin: 0 auto;
}


/*ココから↓矢印*/
.cp_arrows {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px; /* ← ここで動くための基準高さを確保 */
  margin-top: 20%;
}
.cp_arrows .cp_arrow {/*矢印を配置するベースの設定*/
  position: absolute;
  top: 0;
  left: 50%;
  width: 50px;
  height: 10px;
  opacity: 0;
  animation: arrow-move08 1.5s ease-in-out infinite alternate;
  transform: translate(-50%, 0);
}
.cp_arrows .cp_arrow:first-child {
  animation: arrow-move08 2s ease-in-out infinite;
}
.cp_arrows .cp_arrow:nth-child(2)  {
  animation: arrow-move08 2s 1s ease-in-out infinite;
}
.cp_arrows .cp_arrow:before,
.cp_arrows .cp_arrow:after {/*矢印全体の設定*/
  position: absolute;
  content: '';
  top: 0;
  width: 25px;
  height: 1px;
  background: #202020;
}
.cp_arrows .cp_arrow:before {/*矢印左の線の位置と傾斜*/
  left: 2px;
  transform: rotate(30deg);
}
.cp_arrows .cp_arrow:after {/*矢印左の線の位置と傾斜*/
  right: 2px;
  transform: rotate(-30deg);
}
@keyframes arrow-move08 {
  0%   { opacity: 0; transform: translate(-50%, 0); }
  100% { opacity: 1; transform: translate(-50%, 10px); }
}

.markdown{
	width: 80%;
	margin: 0 auto;
	display: block;
}

/*↓↓↓ここからFV*/
.fv_inner {
  text-align: center;
}

/* ▼ 画像ラップ */
.fv_image-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
	letter-spacing: 0.09rem
}
.fv_image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  opacity: 0;
  transition: filter 3s ease-out, opacity 3s ease-out;
}
.fv_image-wrapper img.loaded {
  filter: grayscale(0%);
  opacity: 1;
}
/* ▼ タイトルを中央上部に重ねる */
.fv_title {
  position: absolute;
  top: -23%;
  left: 50%;
  transform: translateX(-50%);
  color: #1d1d1d;
  text-align: center;
}
.fv_title p{
	font-size: 4rem;
letter-spacing: 0.01em;
line-height: 0.9;
white-space: nowrap;
transform: scaleY(1.05);
display: inline-block;
/* transformを効かせるために必要 */
}
.fv_title span {
  font-size: 3rem;
}
/* ▼ ハッシュタグを左下に重ねる */

.fv_hashtags{
	width: 50%;
	position: absolute;
	bottom:-18%;
	left: 15%;
	z-index: 3;
}

.fv_hashtags img{
		 opacity: 1 !important;
  filter: none !important;
}

/* ▼ 下部説明文（重ねない） */
.fv_text {
  font-size: 1.4rem;
 margin: 30% auto 20%;
}

/*↑↑↑ここまでFV*/



/*ここからindex*/
.index_list_wrap {
  display: flex;
  gap: 2%;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  justify-content: center;
}

.index_wrap {
	 display: flex;
  gap: 2%;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
}
.index_list {
  text-align: center;
  width: 30%;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.img-wrap {
  position: relative;
  overflow: hidden;
}

.img-wrap img {
  width: 100%;
  display: block;
  transition: filter 0.3s ease;
}

.hover-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(0);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;

}

.index_list:hover .img-wrap > img {
  filter: brightness(55%);
}

.index_list:hover .hover-label {
  opacity: 1;
}

.category-name{
	color: #000;
	background-color: #fff;
	font-size: 12px;
	 letter-spacing: 0.08rem;
}
.category-name span{
	font-size: 12px;
	font-weight: bolder;
}
.index_title {
    width: 70%;
    margin: 0 auto 10px;
}
/*indexここまで*/

.mb_10 {
    margin-bottom: 10px;
}
.mb_100 {
    margin-bottom: 100px;
}

.font{
	font-family: "kudryashev-d-contrast", sans-serif;
font-weight: 400;
font-style: normal;
	letter-spacing: 0.2rem
}

.coordinate_staff {
    margin-bottom: 35px;
}
.coordinate_main_image {
	width: 80%;
	margin: 0 auto 10px;
}
.coordinate_main_image .slick-dots li {
    width: auto;
    margin: 0 5px;
}
.coordinate_main_image .slick-dots li.slick-active button:before {
    background: #1e7fb6;
}

.slick-prev:before, .slick-next:before {
  display: none;
  content: none;
}

/*ココから金額↓*/

.product{
	width: 100%;
	text-align: center;
	padding-top: 4%;
	letter-spacing: 0.2rem;
}
.product h3{
	font-size: 18px;
}
.price{
	width: 63%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.price p{
	font-size: 18px;
}
.tax{
	font-size: 14px;
}
.btn {
	max-width: 95px;
	padding-top: 3px;
}


.comment {
	margin: 28% 0 0;
	height: 390px;
}
.cm_bk01{
	background-color: rgba(40, 117, 161, 0.4);
}
.cm_bk02{
	background-color: rgba(166, 123, 91, 0.4);
}
.cm_bk03{
	background-color: rgba(76, 68, 77, 0.4);
}

.comment p{
  position: relative;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.8;
  padding: 20px;
	letter-spacing: 0.09rem;
  z-index: 1;
}


/* 背景の“”マーク画像を重ねる */
.comment p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 500px;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

/* 各背景画像をクラス別に指定 */
.cm_bk01 p::before {
  background-image: url('https://img.titivate.jp/cc/project/knit/2025-basicknit/img/bk01.png');
}

.cm_bk02 p::before {
  background-image: url('https://img.titivate.jp/cc/project/knit/2025-basicknit/img/bk02.png');
}

.cm_bk03 p::before {
  background-image: url('https://img.titivate.jp/cc/project/knit/2025-basicknit/img/bk03.png');
}
.icon {
	width: 35%;
	max-width: 140px;
	margin: 0 auto 10px;
}

.icon img {
	margin-top: -50%;
}

.point{
	width: 90%;
	max-width: 540px;
	margin: 30% auto 22%;
}


.details{
	width: 50%;
	margin: 10px auto 0;
	  position: relative;
  height: 400px; /* 高さは調整 */
  overflow: hidden;
	z-index: 2;
}

.details img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0.5; /* 非アクティブ時に薄く表示（透けさせる） */
  transition: opacity 0.6s ease;
  z-index: 1;
  pointer-events: none; /* 重なっても操作不可に */
}

.details .img.active {
  opacity: 1;
  z-index: 2;
}

.item_line_up p,
.index_title p{
	font-size: 2.2rem;
	text-align: center;
}

.line_up_inner p{
	font-size: 12px;
	letter-spacing: 0.09rem
}
.line_up{
	display: flex;
	justify-content: space-between;
	 flex-wrap: wrap; /* ← 折り返しを有効にする */
  gap: 20px; /* 任意：アイテム間の余白 */
}
.line_up_inner{
	width: 46%;
}


/*ここからページ下部接客*/

.end{
	margin-bottom: 100px;
}

.end_comment p{
	font-size: 1.6rem;
	text-align: center;
	letter-spacing: 0.08rem;
}
.end_comment p span{
	font-size: 1.4rem;
}
.end_butu{
	width: 85%;
	margin: 10% auto;
	transform-origin: center bottom;
	
/*    animation: yurayura 3s linear infinite;*/
}
/*
@keyframes yurayura {
  0% , 100%{
      transform: rotate(0.7deg);
  }
  50%{
      transform: rotate(-0.7deg);
  }
}
*/

.bottom {
  width: 80%;
  margin: 0 auto 100px;
  text-align: center; /* 中央寄せしたい場合 */
}

.bottom_link a {
 width: 50%;
	margin: 0 auto;
	text-align: center;
  display: inline-block; /* aタグをボタン風に */
  padding: 0.3em 1em;
  text-decoration: none;
  color: #1e1613;
  border: solid 1px #1e1613;
  border-radius: 3px;
  transition: .4s;
}

.bottom_link a:hover {
  background: #1e1613;
  color: white;
}

.bottom_link {
        margin: 0 auto 30px;
    }
    




@media screen and (min-width: 576px) {
	
.fv_text,
.comment p{
        font-size: 1.7rem;
    }
	
.index_list {
  width: 29%;
}

.bottom_link {
        margin: 0 auto 30px;
    }
    

}











	
@media screen and (min-width: 768px) {

    #lp_wrap {
        padding-top: 250px;
    }
    .lp_wrap_content {
        width: 100%;
        margin: 0 auto;
    }
    .lp_wrap_inner {
        margin: 0 auto 60px;
    }
	.cp_arrows .cp_arrow {
		width: 60px;
	}
	
	.cp_arrows .cp_arrow:before,
	.cp_arrows .cp_arrow:after{
		width: 30px;
	}
	.fv_title p{
	font-size: 6.5rem;
	}
	.fv_title span {
  font-size: 5rem;
}
.fv_hashtags p{
	 font-size: 2rem;
	 text-align: left;
	line-height: 3rem;
}
	
 .fv_text,.comment p {
        font-size: 19px;
    }
	
.btn {
	max-width: 110px;
	padding-top: 8px;
}
	.coordinate_staff {
    margin-bottom: 50px;
}
	
.icon {
	width: 50%;
	max-width: 150px;
	margin: 0 auto 20px;
}
.comment {
	height: 470px;
}
.coordinate_main_image {
	width: 80%;
}
.category-name{
	font-size: 16px;
	letter-spacing: 0.2em;
}
.category-name span{
	font-size: 16px;

}
.item_line_up p,
.index_title p{
	font-size: 3.2rem;
}
.line_up_inner p{
		font-size: 17px;
	}

.product h3{
	font-size: 25px;
}
.price{
	width: 50%;
	}
.price p{
	font-size: 25px;
}
.point{
	width: 85%;
	margin: 42% auto 20%;
	}
	
.tax{
	font-size: 18px;
}
	
.end_comment p{
	font-size: 2rem;
}
	.end_butu{
		width: 80%;
	}
    
    
    
}


