/***************************************************************
Root (Global Theme #1)
****************************************************************/
:root {
    --bg: #f8f8f8;
    --card: #ffffff;
    --text: #0e141d;
    --muted: #6b7280;
    --shadow: 0 6px 16px rgba(16, 24, 40, .08);
    --shadow-hover: 0 10px 24px rgba(16, 24, 40, .12);
    --radius: 16px;
    --gap: 2rem;
    --kira-text: (90deg, #acdff8 0%, #58a6ff 40%, rgb(242, 93, 255) 80%);
}

/***************************************************************
Reset / Base
****************************************************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    color: var(--text);
    background: #292929;
}

a {
    color: var(--text);
    text-decoration: none;
}

/***************************************************************
Banner
****************************************************************/
.lr-banner {
    position: relative;
    width: 100%;
    height: 425px;
    z-index: 1;
}

.lr-banner img {
    filter: blur(2px);
}

.lr-banner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 101%;
    z-index: 2;
    background-color: rgb(53 53 53 / 70%);
}

.lr-title {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    text-shadow: 0 0 2px #000000b4;
    z-index: 3;
}

.lr-title h1 {
    font-weight: bold;
}

.lr-title a {
    position: relative;
    padding: 1rem 2.5rem;
    /* font-size: 1.1rem; */
    color: #fff;
    display: block;
    background: #1D4ED8;
    width: 350px;
    margin: 35px auto 0;
    transition: 0.4s;
    font-weight: bold;
    border-radius: 9999px
}

.lr-title p {
    margin-top: 15px;
    font-weight: bold;
}

.main-title {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(90deg, #acdff8 0%, #58a6ff 40%, rgb(242, 93, 255) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: .02em;
    margin-top: 35px;
    margin-bottom: 15px;
    text-align: center;
}

.sub-title {
    font-size: 18px;
    font-weight: 400;
    background: linear-gradient(90deg, #acdff8 0%, #58a6ff 40%, rgb(242, 93, 255) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: .02em;
    line-height: 200%;
}

.lr__kv {
    width: 1000px;
    margin: auto;
}

.lr__kv img {
    width: 100%;
}

/***************************************************************
Intro Section
****************************************************************/
.intro-section {
    margin: 75px auto;
    width: 100%;
    max-width: 800px;
    text-align: initial;
}

/***************************************************************
Concern Section
****************************************************************/
.concern-section {
    padding: 3rem 0;
    margin-top: 75px;
}

.concern-section .container {
    width: min(1120px, 92vw);
    margin: 0 auto;
    padding: 0 1rem;
}

.lr-wrapper h2 {
    font-size: clamp(2.5rem, 1.2rem + 1vw, 2rem);
    font-weight: 800;
    text-align: center;
    background: linear-gradient(90deg, #acdff8 0%, #58a6ff 40%, rgb(242, 93, 255) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: .02em;
    margin: 0 0 3rem;
}

.lr-wrapper h2 span {
    display: block;
    margin-top: 10px;
    font-size: 21px;
    line-height: 175%;
}

.concern-section .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 35px;
}

/* CTA */
.cta a {
    position: relative;
    padding: 2rem 2.5rem;
    font-size: 1.4rem;
    color: #fff;
    display: block;
    background: linear-gradient(90deg, #C084FC 0%, #FF6BD6 40%, #FF40B4 80%);
    width: max-content;
    margin: 75px auto 35px;
    font-weight: bold;
    border-radius: 9999px;
    overflow: hidden;
}

.cta.second a {
    position: relative;
    padding: 2rem 2.5rem;
    font-size: 1.4rem;
    color: #fff;
    display: block;
    background: linear-gradient(270deg, #fa4fb6 0%, #58a6ff 35%, #75cbf7 100%);
    width: max-content;
    margin: 75px auto 35px;
    font-weight: bold;
    border-radius: 9999px;
    overflow: hidden;
}

.cta a::before,
.cta.second a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.2) 100%);
    transform: skewX(-20deg);
    animation: shine 2.5s ease-in-out infinite;
}

.cta.second a::before {
    animation: shine 3s ease-in-out infinite;
}

/* Concern Items */
.concern-item {
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0px 0px 6px 4px #7a95ff;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}

.concern-item .icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
}

.concern-item .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .08));
}

.concern-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #70b6fd;
    margin: .25rem 0 1.5rem;
    line-height: 1.4;
}

.concern-item p {
    color: #aabbde;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/***************************************************************
Solution Section
****************************************************************/
.solution-section {
    background: var(--bg);
    padding: 5rem 0;
}

.solution-section .container {
    width: min(1120px, 92vw);
    margin: 0 auto;
    padding: 0 1rem;
}

.solution-section h2 {
    font-size: clamp(3.5rem, 1.2rem + 1vw, 2rem);
    font-weight: 800;
    color: var(--text);
    text-align: center;
    margin: 0 0 1rem;
}

.solution-section .lead {
    color: var(--text);
    text-align: center;
    margin: 2rem auto 3rem;
    max-width: 60ch;
    line-height: 2;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.feature-item {
    display: flex;
    gap: 7px;
    align-items: flex-start;
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
    box-shadow: var(--shadow);
}

.feature-item strong {
    font-size: 24px;
    display: block;
    color: #284b7c;
    line-height: 1.5;
}

.feature-item p {
    color: var(--muted);
    margin: .25rem 0 0;
    line-height: 1.7;
}

.icon-check {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    margin-top: .35rem;
}

.icon-check svg {
    width: 100%;
    height: 100%;
    fill: #FF66A6;
}

/***************************************************************
Step by Step
****************************************************************/
.rental-flow {
    background: var(--bg);
    padding: 2rem 15px 7rem;
}

.steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: var(--gap);
    grid-template-columns: 1fr;
}

.step-card {
    position: relative;
    background: var(--card);
    border-radius: var(--radius);
    padding: 1rem 1rem 1.1rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.step-card .step-head {
    display: flex;
    align-items: center;
    gap: .5rem;
    justify-content: center;
    margin-bottom: .5rem;
}

.step-num {
    width: 35px;
    height: 35px;
    display: inline-grid;
    place-items: center;
    background: rgb(255 255 255 / 10%);
    color: #FF66A6;
    border-radius: 999px;
    font-weight: 700;
    background: #FF66A6;
    font-size: 21px;
    color: #fff;
    /* border: 1px solid; */
}

.step-card h3 {
    font-size: 2rem;
    color: #284b7c;
    font-weight: bold;
}

.step-icon {
    width: 65px;
    height: 65px;
    margin: .95rem auto .35rem;
}

.step-icon img {
    width: 100%;
}

.step-card p {
    color: var(--muted);
    line-height: 1.5;
    margin-top: 15px;
}

.rental-period {
    margin-top: 50px;
}

.rental-period .lead {
    color: var(--text);
    text-align: center;
    margin: 2rem auto 3rem;
    max-width: 60ch;
    line-height: 2;
}

.timeline-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: auto;
    height: 180px;
}

.date-label {
    position: absolute;
    font-size: 18px;
    font-weight: bold;
}

.start-date {
    left: -50px;
    top: -35px;
    background: #ffffff;
    border-radius: 20px;
    padding: 5px 20px;
    border: 2px solid #333;
}

.end-date {
    right: -50px;
    top: -35px;
    text-align: right;
    color: #fff;
    background: #e850b0;
    border-radius: 20px;
    padding: 5px 20px;
}

.date-marker {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    top: -7px;
}

.start-marker {
    left: -7px;
    top: 9px;
    border-top: 10px solid #333;
}

.end-marker {
    right: -8px;
    top: 5px;
    border-top: 10px solid #e850b0;
}

.rental-bar {
    position: absolute;
    left: 0;
    right: 0;
    top: 25px;
    gap: 25px;
    height: 125px;
    background-color: #e6e6e6;
    text-align: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    display: flex;
    align-items: center;
}

.rental-bar::before {
    position: absolute;
    content: "";
    background-color: #333;
    width: 100%;
    height: 1px;
    top: -5px;
}

.rental-bar::after {
    position: absolute;
    content: "";
    background-color: #333;
    width: 100%;
    height: 1px;
    bottom: -5px;
}

.note-box {
    display: inline-block;
    background-color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    padding: 10px 15px;
    margin-left: 10px;
    vertical-align: middle;
    text-align: left;
    border-radius: 15px;
}

.day-number {
    position: absolute;
    font-size: 18px;
    font-weight: bold;
    bottom: -5px;
}

.start-day {
    left: -15px;
}

.end-day {
    right: -15px;
}


.rp-attention {
    width: 100%;
    max-width: 700px;
    margin: 35px auto 0;
    line-height: 200%;
    text-align: center;
    /* border: 1px solid #333; */
    padding: 25px 0;
}

.rp-attention-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.rp-attention p {}

.rp-attention span {
    font-weight: bold;
    color: #284b7c;
    text-decoration: underline;
}

/***************************************************************
Pricing
****************************************************************/
/* セクション全体 */
.pricing-section {
    padding: 64px 16px;
}

.pricing-section h2 {
    background: linear-gradient(90deg, #acdff8 0%, #58a6ff 40%, rgb(242, 93, 255) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* レイアウト */
.price-inner {
    width: min(1120px, 92vw);
    margin: 0 auto;
    padding: 3rem 3rem;
    background: #fff;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 5%;
}

.price-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pi-item-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 9999px;
}

/* 行 */
.price-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.price-row .label {
    color: #333;
    font-weight: 600;
}

.price-row .value {
    color: #222;
    text-align: end;
}

.price-row .tax {
    color: #888;
    font-size: 12px;
}

.price-main {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .02em;
}

.price-unit {
    font-size: 18px;
    font-weight: 700;
    margin-left: 2px;
}

/* お得計算ボックス */
.calc-box {
    margin: 6px 0 10px;
    padding: 12px 14px;
    background: #f7f8ff;
    border-radius: 12px;
    border: 1px solid #e6e9ff;
}

.calc-line {
    display: flex;
    justify-content: space-between;
    color: #333;
    font-size: 14px;
}

.calc-line.total {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px dashed #cfd6ff;
    font-weight: 800;
}

.calc-line.total span:last-child {
    font-size: 18px;
}

/* CTA（きらめき付き） */
.highlight {
    align-self: flex-end;
    display: inline-block;
    margin-top: 8px;
    padding: 14px 28px;
    border-radius: 9999px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(90deg, #FF40B4 0%, #58a6ff 50%, #acdff8 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
    transition: transform .25s ease;
}

.highlight:hover {
    transform: translateY(-1px) scale(1.03);
}

.highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, .15) 0%, rgba(255, 255, 255, .6) 50%, rgba(255, 255, 255, .15) 100%);
    transform: skewX(-20deg);
    animation: shine 3s ease-in-out infinite;
}

.price-card .highlight:hover {
    color: #fff;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

.fineprint {
    color: #777;
    font-size: 12px;
    margin: 8px 0 0;
    text-align: end;
}
.youtube-sec {
    margin: 35px auto;
    padding: 3rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.youtube-sec iframe{
    width: 100%;
    margin: auto;
    max-width: 640px;
    height: 360px;
}


/* レスポンシブ */
@media (max-width:980px) {
    .pricing-section {
        padding: 25px 0;
    }

    .price-inner {
        grid-template-columns: 1fr;
        padding: 22px;
        width: 100%;
        gap: 0;
    }

    .highlight {
        align-self: stretch;
        text-align: center;
    }

    .price-main {
        font-size: 34px;
    }
}

@media (max-width:798px) {
   .youtube-sec {
    padding: 0;
}
}

/***************************************************************
FAQ
****************************************************************/
.faq {
    background: var(--bg);
}

.faq .container {
    padding: 5rem 0 3rem;
    border-radius: var(--radius);
}

.faq-container {
    margin-top: 0 !important;
}

.faq-item {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 15px;
}

.faq-item:before,
.faq-item:after {
    right: 25px !important;
    width: 20px !important;
}

.faq-item__ans {
    border-top: none !important;
    border-radius: 15px !important;
    background: #fff !important;
}

.faq-item__question {
    width: 98%;
}

/***************************************************************
Animations
****************************************************************/
@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

/***************************************************************
Responsiveまとめ
****************************************************************/

/* --- max-width:798px --- */
@media (max-width: 798px) {

    /* Banner */
    .lr-banner {
        margin-bottom: 50px;
    }

    .lr-title {
        width: 100%;
        padding: 0 15px;
        top: 15%;
    }

    .lr-title h1 {
        font-size: 3rem;
        background: linear-gradient(90deg, #acdff8 0%, #58a6ff 40%, rgb(242, 93, 255) 80%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        color: initial;
        font-weight: bold;
        text-shadow: none;
    }

    .lr-title h1 br {
        display: none;
    }

    .lr-title p {
        font-size: 16px;
    }

    .lr-container {
        padding: 0 15px;
    }

    .sub-title br {
        display: none;
    }

    /* Main Title */
    .main-title {
        margin-top: 15px;
        font-size: 28px;
    }

    /* Intro */
    .intro-section {
        margin: 15px auto;
    }

    /* Concern */
    .concern-section {
        padding: 2rem 0 0;
        margin-top: 0;
    }

    .lr-wrapper h2 {
        line-height: initial !important;
    }

    .concern-section .container {
        padding: 0;
    }

    .concern-item {
        box-shadow: none;
    }

    /* Solution */
    .solution-section {
        background: initial;
        padding: 2rem 0;
    }

    .solution-section .container {
        padding: 0;
    }

    .solution-section h2 {
        font-size: 28px;
    }

    .feature-item strong {
        font-size: 21px;
    }

    .solution-section .lead {
        background: linear-gradient(90deg, #acdff8 0%, #58a6ff 40%, rgb(242, 93, 255) 80%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .solution-section .lead br {
        display: none;
    }

    .cta a {
        padding: 2rem 1.5rem;
        font-size: 1.3rem;
        text-align: center;
        width: initial;
        margin: 35px auto 35px;
    }

    /* Step by Step */
    .rental-flow {
        background: initial;
        padding-bottom: 4rem;
        padding-left: 0px;
        padding-right: 0;
    }

    .lr-wrapper h2 {
        margin-bottom: 25px;
        font-size: 28px;
    }

    .steps {
        gap: 2.2rem;
    }

    .step-card:not(:last-child)::after {
        bottom: -30px;
    }

    .step-icon {
        width: 55px;
        height: 55px;
        margin: .5rem auto .5rem;
    }

    .step-card br {
        display: none;
    }

    .timeline-container {
        margin: 50px auto 15px;
    }

    .rental-bar {
        background-color: #fff;
    }

    .rental-bar::before {
        background-color: #fff;
        top: -7px;
    }

    .rental-bar::after {
        background-color: #fff;
        bottom: -7px;
    }

    .rental-period .lead {
        background: linear-gradient(90deg, #acdff8 0%, #58a6ff 40%, rgb(242, 93, 255) 80%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-align: center;
    }

    .rp-attention {
        padding: 25px 0 0;
    }

    .rp-attention-title {
        background: linear-gradient(90deg, #acdff8 0%, #58a6ff 40%, rgb(242, 93, 255) 80%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .rp-attention p {
        background: linear-gradient(90deg, #acdff8 0%, #58a6ff 40%, rgb(242, 93, 255) 80%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .rp-attention span {
        font-size: 21px;
    }

    .note-box {
        background-color: #ffffff;
        border: 1px solid #343b41;
        background: #f8fcff;
    }

    .start-date {
        left: -20px;
    }

    .start-day {
        left: -5px;
        color: #fff;
    }

    .start-marker {
        left: -6px;
        top: 7px;
        border-top: 10px solid #ffffff;
    }

    .end-date {
        right: -20px;
    }

    .end-day {
        color: #fff;
    }

    .end-marker {
        right: -6px;
        top: 4px;
    }

    /* Pricing */

    .price-card {
        width: 100%;
    }

    .price-row {
        padding: .9rem 0rem;
        flex-direction: column;
        display: flex;
        text-align: center;
    }

    .price-item {
        width: 100%;
    }

    /* FAQ */
    .faq {
        background: initial;
    }

    .faq-container {
        padding: 0 !important;
    }

    .faq .container {
        padding: 3rem 0 3rem;
    }

    .faq-item__question {
        border-bottom: none !important;
    }

    .faq-item.open .faq-item__ans {
        padding: 0px 30px 15px 49px !important;
        border-top: 1px solid #d9d3d3;
    }
}

@media (max-width: 598px) {
    .rental-bar {
        flex-direction: column;
        gap: 7px;
        font-size: 18px;
    }

    .note-box {
        font-size: 16px;
        padding: 5px 15px;
    }
}

@media (max-width: 320px) {
    .lr-title a {
        width: initial !important;
    }
}

/* --- min-width:798px --- */
@media (min-width: 798px) {
    .concern-section .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- min-width:980px --- */
@media (min-width:980px) {
    .steps {
        grid-template-columns: repeat(5, 1fr);
    }

    .step-card:not(:last-child)::after {
        content: "→";
        position: absolute;
        top: 50%;
        right: -20px;
        transform: translateY(-50%);
        color: #94a3b8;
        font-size: 20px;
        font-weight: 700;
    }
}

/* --- max-width:979.98px --- */
@media (max-width:979.98px) {
    .step-card:not(:last-child)::after {
        content: "▼";
        position: absolute;
        bottom: -23px;
        left: 50%;
        transform: translateX(-50%);
        color: #eaeaea;
        font-size: 15px;
        font-weight: 700;
    }
}