@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*:focus {
  outline: none;
}
#ap_wrap, #ap_wrap *{
	box-sizing: content-box!important;
}

#ap_wrap{
    width: 100%;
	text-align: center;
	margin: 0% auto;
	color: #333333;
    display: block;
    font-weight: 400;
    overflow: hidden;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-animation: fadein 1.2s forwards ease;
    animation: fadein 1.2s forwards ease;
    letter-spacing: 1px;
	background: #efefef;
}

@keyframes fadein {
      0% {
          opacity: 0;
      }
      100% {
          opacity: 1;
          transform: translate(0);
      }
}

.inner{
	background: #ffffff;
	padding-bottom: 1%;
}

#ap_wrap ul{
	padding: 0;
	margin: 0;
	overflow: hidden;
}
#ap_wrap li{
	list-style: none;
}
#ap_wrap a{
    text-decoration: none;
}
#ap_wrap a:hover{
    text-decoration: none;
}
#ap_wrap a:link{
    opacity: 1;
}

#ap_wrap img{
    width: 100%;
    line-height:0;
    vertical-align: bottom;
    border: none;
}

.inner{
	max-width: 650px;
	margin: 0 auto;
}

.head_img{
	animation: blurFadeIn 1.8s ease-out forwards;
}

@keyframes blurFadeIn {
    0% {
        filter: blur(15px);
        opacity: 0;
    }
    100% {
        filter: blur(0px);
        opacity: 1;
    }
}

#ap_wrap .lead{
    width: 100%;
    font-size: 18px;
    text-align: center;
    display: inline-block;
    margin: 2% auto;
    position: relative;
    line-height: 2em;
	font-weight: 500;
}

.main_lead{
	font-size: 15px;
	text-align: center;
	margin: 5% 0 0;
	line-height: 2;
}

.main_lead img{
	width: 40%!important;
	margin-bottom: 5px;
}

.txt_about{
	font-family: "avenir-lt-pro", sans-serif;
	font-size: 18px;
	font-weight: 500;
	margin: 5% 0 3%;
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.ig_wrap{
	margin: 5% auto 15%;
}

.ig_wrap .ig{
	display: flex;
	justify-content: center;
	align-items: center;
    gap: 5px;
}

.ig_wrap .ig_img{
	width: 20px!important;
	display: flex;
}

.ig_wrap .ig_link{
	font-size: 14px;
}

.ig_wrap .ig_link a{
	color: #333333;
}

.ig_wrap .ig_link span{
	text-decoration: underline;
}

.product-card {
    width: 100%;
    max-width: 458px;
	margin: 0 auto 10%;
		
}

/* ラジオボタン本体は非表示 */
input[type="radio"] {
    display: none;
}

.gallery {
    display: flex;
    gap: 10px;
    height: 480px;
}

/* 左側：メイン大画像エリア */
.main-view {
    position: relative;
    flex: 1;
    height: 100%;
    overflow: hidden;
    background-color: #2b1d1d;
}

.main-view img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* 右側：4枚の縦並びサムネイル */
.thumbnails {
    display: grid;
	grid-template-rows: repeat(4, 1fr);
    gap: 8px;
    width: 88px;
    height: 100%;
}

.thumbnails label {
    flex: 1;
    min-height: 0;
    cursor: pointer;
    overflow: hidden;
    background-color: #333333;
    opacity: 0.5;
    transition: opacity 0.2s ease, outline-color 0.2s ease, transform 0.1s ease;
}

.thumbnails label:hover {
    opacity: 0.85;
}

.thumbnails label:active {
    transform: scale(0.96);
}

.thumbnails label img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.r-1:checked ~ .gallery .main-view img:nth-child(1),
.r-2:checked ~ .gallery .main-view img:nth-child(2),
.r-3:checked ~ .gallery .main-view img:nth-child(3),
.r-4:checked ~ .gallery .main-view img:nth-child(4) {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.r-1:checked ~ .gallery .thumbnails label:nth-child(1),
.r-2:checked ~ .gallery .thumbnails label:nth-child(2),
.r-3:checked ~ .gallery .thumbnails label:nth-child(3),
.r-4:checked ~ .gallery .thumbnails label:nth-child(4) {
  opacity: 1;
  outline-color: #111111;
}

.item_title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #222;
	margin-top: 5px;
}

.colors {
	font-family: "avenir-lt-pro", sans-serif;
    font-size: 10px;
    color: #737373;
    margin: 4px 0 12px;
}

.size-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
	justify-content: center;
}

.btn-size {
	font-family: "avenir-lt-pro", sans-serif;
	letter-spacing: 1.2px;
    background-color: #333333;
    color: #ffffff;
    border: none;
    font-size: 12px;
    font-weight: 400;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.btn-size:hover {
    background-color: #1f1f1f;
}


/************************************************************
               ボタン
************************************************************/
.btn_01 a{
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
    width: 100%;
	margin: 3% 0;
    padding: 2% 0%;
    background: #333333;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 400;
	transition: 0.5s;
    line-height: 1.5em;
    border: #333333 1px solid;
    font-family: "Poppins", sans-serif;
    border-radius: 2px;

}

.sp {
	display:none;
}
.pc{
    display: block;
}

.btn_all a {
    background: #ffffff;
    color: #333333;
	border: 1px solid #333333;
    font-size: 14px;
    font-weight: 500;
    width: 90%;
    line-height: 2em;
    letter-spacing: 1px;
    margin: 15% auto 10%;
    display: inline-block;
    border-radius: 3px;
    padding: 4.5% 0
}

/************************************************************
                SP
************************************************************/

@media only screen and (max-width:768px){
	#ap_wrap {
		width: 100%;
        margin: 0% auto;
		text-align: center;
    }
    #ap_wrap .item_title{
        font-size: 18px;
    }
	
	#ap_wrap .item_title span{
		top: -3px;
	}
	
    #ap_wrap .lead{
        font-size: 14px;
        margin: 4% auto;
    }
	
    #ap_wrap .logo{
        width: 20%;
        
    }
	
    .main_lead {
        font-size: 13px;
        line-height: 1.8;
        padding: 0 5%;
		margin: 10% 0 0;
    }
	
	.main_lead img {
        width: 50% !important;
    }
	
	.txt_about {
        font-size: 16px;
    }
	
	.ig_wrap .ig_img {
        width: 18px !important;
    }

	.ig_wrap .ig_link {
        font-size: 13px;
    }	
	
	.product-card {
        width: 95%;
    }
	
    .gallery {
        gap: 5px;
    }	
	
    .thumbnails {
        gap: 5px;
    }	
	
    .btn-size {
        font-size: 13px;
        padding: 10px 20px;
    }
	
    .btn_01 a{
        margin: 5% 0;
        padding: 3% 0;
        font-size: 12px;
    }
    
    .pc {
		display: none;
	}
	.sp {
		display: block;
		width: 100%;
	}
   
    .Left{
        float: none;
    }
    .Right{
        float: none;
    }
	
	.footer {
        font-size: 11px;
        padding: 3% 0;
    }
}	
