/* Main layout wrapper */
.lp-main {
    display: flex;
    height: 100vh; 
    overflow: hidden; 
}

/* LEFT SIDEBAR */
.lp-left-sidebar {
    width: calc((100vw - 400px) / 2); /* auto expand left */
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden; /* no scrolling */
	background-image: url(images/grainy-with-border.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top;
}

/* MIDDLE CONTENT (scrollable) */
.lp-content {
    width: 400px;
    height: 100vh;
    overflow-y: scroll; 
    overflow-x: hidden;
}

/* RIGHT SIDEBAR */
.lp-right-sidebar {
    width: calc((100vw - 400px) / 2); 
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
	background-image: url(images/righ-sidebar-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

/* OPTIONAL — Hide scrollbar for aesthetic */
.lp-content::-webkit-scrollbar {
    width: 0;
}


.sidebar-container {
	width: 100%;
	height: 100%;
}

.sidebar-container .sidebar-details{
	width: 100%;
	height: 100%;
	max-width: 360px;
	margin-left: auto;
	margin-right: auto;
}

.nav-menu {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px; 
	width: 270px;
}

.nav-menu li {
    position: relative;
	padding-bottom: 5px;
}

/* dotted line under each item */
.nav-menu li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: repeating-linear-gradient(
        to right,
        rgba(255,255,255,0.3) 0px,
        rgba(255,255,255,0.3) 2px,
        transparent 2px,
        transparent 6px
    );
}

.nav-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}

.nav-menu li a::after {
    content: "";
    width: 12px;
    height: 12px;
    background-image: url(images/white-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.text-with-slash::before {
    content: "＼";
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%) rotate(20deg);
    color: #ffffff;
    font-size: 25px;
}

.text-with-slash::after {
    content: "／";
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%) rotate(-20deg);
    color: #ffffff;
    font-size: 25px;
}


#number .text-with-slash::before,
#number  .text-with-slash::after,
#detail .text-with-slash::before,
#detail  .text-with-slash::after,
#frame-button  .text-with-slash::before,
#frame-button  .text-with-slash::after{
    font-size: 25px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(
        90deg,
        #FDFDFD 0%,
        #C2C2C2 72%,
        #979797 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#number .text-with-slash::before, #detail .text-with-slash::before {
    content: "＼";
    left: 8px;
    transform: translateY(-50%) rotate(20deg);
}

#number .text-with-slash::after, #detail .text-with-slash::after {
    content: "／";
    right: 8px;
    transform: translateY(-50%) rotate(-20deg);
}

#frame-button .text-with-slash::before {
	left: 28px;
}

#frame-button .text-with-slash::after {
	right: 28px;
}

#frame-button  .text-with-slash::before {
	transform: translateY(-50%) rotate(20deg) !important;
}

#frame-button  .text-with-slash::after {
	transform: translateY(-50%) rotate(-20deg) !important;
}

#detail .gold-slash::before,
#detail .gold-slash::after {
    font-size: 25px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(
        180deg,
        #FDFDFD 60%,
        #EAD394 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#detail .gold-slash::before {
    content: "＼";
    left: 50px;
    transform: translateY(-50%) rotate(20deg);
}

#detail .gold-slash::after {
    content: "／";
    right: 50px;
    transform: translateY(-50%) rotate(-20deg);
}

section.bg-black .text-with-slash::after {
	right: 20px;
}

section.bg-black .text-with-slash::before {
	left: 20px;
}

.btn-gold {
	border-radius: 6px;
	position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-gold::after {
    content: "";
    width: 15px;
    height: 15px;
    background-image: url(images/black-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 20px;
}

.btn-red {
	border-radius: 6px;
	position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-red::after {
    content: "";
    width: 15px;
    height: 15px;
    background-image: url(images/white-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 20px;
}

#hero .section-container {
    background-image: url(images/hero-client.png);
    background-position: right bottom;
    background-size: auto;
    background-repeat: no-repeat;
}

#hero, .achievements-container {
    background-image: url(images/grainy-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#number {
    background-image: url(images/number-bg.png);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

#detail {
    background-image: url(images/detail-bg.png);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

#voice {
    background-image: url(images/voice-bg.png);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

#message {
    background-image: url(images/message-bg.jpg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

#frame-button {
    background-image: url(images/Container.jpg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

#strength {
    background-image: url(images/strength-bg.png);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

.about-have-bg {
	background-image: url(images/about-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.checklist li {
	position: relative;
	padding-bottom: 8px;
	display: flex;
	align-items: center;
}

.checklist {
    list-style-type: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checklist .icon {
    background: var(--base-gold);
    font-size: 10px;
    padding: 0px 3px;
    color: var(--base-black);
    margin-right: 10px;
	line-height: normal;
}

.store-checklist {
    margin-top: -36px;
}

.checklist li::after {
	content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.3) 0px, rgba(255, 255, 255, 0.3) 2px, transparent 2px, transparent 6px);
}

.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  display: inline-block;     
  height: max-content;      
  -webkit-text-size-adjust: 100%;
}

.vertical-line {
  width: 1px;            
  height: 30px;        
  border: none;
  background-color: #fdfdfd; 
  margin: 0 auto;      
}

.text-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px; 
    background: linear-gradient(195deg, #D6B65E 0%, #FBF5E9 51%, #D6B65E 100%);
}

#strength .text-underline::after {
	bottom: 3px;
}

.has-sparkle::after {
    content: "";
    position: absolute;
    right: 3px;
    top: 16%;
    transform: translateY(-50%);
    width: 44px;
    height: 66px;
    background-image: url(images/gold-sprinkle.png);
    background-size: contain;
    background-repeat: no-repeat;
}

#number .has-sparkle::after {
    right: 45px;
    height: 44px;
}

.info-card {
    background-color: #161616;
    clip-path: polygon(0 30px, 20px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 20px) 100%, 0 100%);
}

#number .checklist .icon {
    border-radius: 50%;
    padding: 2px 5px;
    margin-right: 20px;
}

#number .checklist li::after {
    background: var(--base-gold);
    opacity: 0.3;
}

.circle-check-icon {
    background: var(--base-gold);
    font-size: 15px;
    color: var(--base-black);
    border-radius: 50%;
    padding: 3px 7px;
    line-height: normal;
}

.triangle-check-icon {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 29px;
    height: 28px;
    font-size: 20px;
    font-weight: bold;
    color: var(--base-black);
    z-index: 1;
}

.triangle-check-icon::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid var(--base-gold);
    top: -1px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
}


#pricing ul li::marker {
    font-size: 8px;
}


.pricing-container .flex, .pricing-ads .flex {
    border-bottom: 1px solid #fdfdfd63;
}

.gold-polygon {
    clip-path: polygon(0 10px, 10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}


.custom-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
	margin-left: 21px;
}

.carousel-slide {
    min-width: 275px;
    margin: 0 2px;
    opacity: 0.4;
    transform: scale(0.85);
    transition: 0.4s;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Navigation arrows */
.nav {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    background: var(--base-white);
    border: none;
    padding: 1px 14px 5px;
    cursor: pointer;
    font-size: 28px;
    color: var(--base-black);
    z-index: 9;
}

.nav.prev { left: 16px; }
.nav.next { right: 16px; }

/* Pagination dots */
.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dots span {
    width: 8px;
    height: 8px;
    background: var(--base-white);
    border-radius: 50%;
    display: block;
}

.dots span.active {
    background: var(--base-gold);
}

.voice-number {
    padding: 5px 8px;
    border-radius: 99px;
    width: fit-content;
    position: absolute;
    right: 15px;
    top: 15px;
}

.message-client-photo {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.9;
}

.message {
	position: relative;
	z-index: 9;
}

.mizuki-text {
    letter-spacing: 1px;
    color: #FDFDFD4D;
    text-shadow: 0 2px 4px #12121240;
}

.acc-icon {
    font-size: 20px;
    width: 20px;
    transition: opacity 0.25s ease;
}

.acc-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 
		max-height 0.45s ease,
		opacity 0.35s ease;
}

.acc-header {
	border: none;
}

.acc-item.active .acc-content {
    opacity: 1;
	padding: 12px 16px;
}

.acc-item.active .acc-icon {
    opacity: 0;
}

#cta .text-with-slash::before {
    color: var(--base-black);
    left: 14px;
}

#cta .text-with-slash::after {
    color: var(--base-black);
    right: 14px;
}

.leaves-photo-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#number .has-sparkle::before {
    content: "圧倒的な成果";
    position: absolute;
    top: -60px;
    left: 60px;
    transform: translate(29px, 56px) skewX(337deg);
    font-weight: inherit;
    font-family: inherit;
    font-size: 30px;
    letter-spacing: inherit;
    color: rgba(255, 255, 255, 0.07);
    white-space: pre;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

#number .has-ghost-text::before {
    content: "黒瀬式経営の";
    position: absolute;
    top: -60px;
    left: 60px;
    transform: translate(53px, 54px) skewX(325deg);
    font-weight: inherit;
    font-family: inherit;
    font-size: 30px;
    letter-spacing: inherit;
    color: rgba(255, 255, 255, 0.07);
    white-space: pre;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


@media screen and (max-width: 768px) {
    .lp-content {
        width: 100%;
        height: unset;
        overflow-y: scroll;
        overflow-x: unset;
    }

    .lp-main {
        height: unset;    
        overflow-x: unset;      
    }
}

/* ========== 料金セクション非表示 ========== */

/* ①1つ目のコンテンツ：料金部分のみ非表示 */
.img-wrapper + .px-20 .flex.items-center.justify-between.cg-10.mt-15.pb-5 {
  display: none !important;
}

/* ②2つ目のコンテンツ：SNS集客マスタープログラム全体を非表示 */
.pricing-ads.mt-70 {
  display: none !important;
}
