@charset "utf-8";



.i-content-top{
    position: relative;
}

.i-content-area{
    position: relative;
    z-index: 15;
    max-width: 960px;
    margin:-20vw auto;
    padding: 0 40px;
}

.center-line{
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-back-naname1{
    height: calc(100vw * 0.2867);
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    background-color: #080707;

    clip-path: polygon(0% 0%, 0% 100%, 100% 0%);
    position: relative;
    top: -1px;
}
.item-back-naname2{
    height: calc(100vw * 0.2867);
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    background-color: #080707;

    clip-path: polygon( 0% 100%,100% 100%,100% 0%);
    position: relative;
    bottom: -1px;
}

.product-hero{
    background-image: var(--bg-image);
    background-attachment: local;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
  }


.i-content-bottom{
    border-left: solid 3px #fff;
    padding-left :4vw;
}

.i-content-bottom h5{
    font-size: clamp(20px,calc(5vw - 6px),35px);
    white-space:inherit;
}

.i-first-view{
    width: 100vw;
    height: 100vh;
    position: relative;
    margin: 35px auto 0 auto ;
    padding: 18vmin max(calc( 50vw - 460px ),40px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

@media screen and (orientation: portrait) {
  .i-first-view{
    height: 60vh;
    min-height: 0;
    padding:clamp( 60px , 15vh , 120px ) max(calc( 50vw - 460px ),40px);
  }
}

.product-img img{
    height: auto;
    max-width: 100%;
    margin: 3vmin 0 8vmin 0;
}


.i-first-view h2{
    font-size: clamp(20px,6vmin,60px);
    margin: 0;
}
#pd-page h1{
  font-size: max(12vmin,44px);

}
#pd-page h2{
    font-size: clamp(35px,4.5vmin,52px);
}
#pd-page h3{
  font-size: clamp(30px,4vmin,44px);
}
#pd-page h2,#pd-page h3,#pd-page h4,#pd-page h5,#pd-page h6{
    white-space: wrap;
}


#pd-page h1,#pd-page h2 {
    margin-top:clamp(12px,3vmin,30px);
	}
	
#pd-page h3,#pd-page h4,#pd-page h5,#pd-page h6,#pd-page p,#pd-page ul {
    margin-top:clamp(12px,2.5vmin,25px);
	}


#pd-page .entry-content ul {
	background-color:rgba(245, 245, 245, 1);
	padding: 15px;
}

#pd-page .entry-content ul li::before {
	content: "▶ ";
}

#pd-page .entry-content p a {
	font-weight: normal;
	background: linear-gradient(transparent 70%, #ffdcb8 0%);
  	display: inline-block;
  /*横に余白をつけたり、下にずらしたりするときは以下のpaddingを調整してください*/
  	padding: 0 10px 0 10px;
	}

#pd-page figure {
	margin-top: 30px;
}



.i-btn{
    border-bottom: solid 1px #fff;
    padding: 1px 10px;
    transition:
      background-color 0.8s ease,
      border-color 0.8s ease,
      transform 0.8s ease;
}
.i-btn span{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: clamp( 12px , 3vmin , 25px );
    transition:
      color 0.8s ease,
      transform 0.8s ease;
}
.i-btn:hover {
    background-color: #fff;
}
.i-btn:hover span {
    color: #000;
}




.package-img{
    width: 50vmin;
}

.package-img img{
    filter: drop-shadow(1px 0 10px #000);
    max-width: 100%;
    height: auto ;
}


.i-explanation{
    display: flex;
    gap:4vw;
}


.i-Detaile{
    width: min(60vmin,360px);
    position: static;
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: auto auto;
    border: solid 1px #fff;
    margin-top: 30px;
}
.i-Detaile-text{
    
    border: solid 1px #fff;
    text-align: center;
    padding:  2.5px 0;
    writing-mode: horizontal-tb;
}
.i-Detaile-icon{
    border: solid 1px #fff;
    width: min(20vmin,120px);
    height: min(20vmin,120px);
}
.i-Detaile-icon img{
    width: 100%;
    height: 100%;
}
.i-Detaile-text p{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: clamp(12px,2.5vmin,16px);
    margin-top: 0 !important;
}



/*---------------スマホ用コード----------------------------------------------------*/
@media screen and (max-width: 767px) {
	/* 768px以下に適用されるCSS（スマホ用） */
    .i-explanation{
        flex-direction: column;
        gap:0;
    }
    .size-quantity{
        width: 100%;
    }

}

@media screen and (max-width: 450px) {
	/* 451px以下に適用されるCSS（スマホ用） */
    .product-hero{
        background-image: var(--bg-image-mobile);
        background-attachment: local;
        background-position:right;
      }
}

