/*
Theme Name: Lightning Child
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.0
*/

/*  こちらに追加用のCSSをまとめてます */
/* 追加用CSS */

/* ==========================================================
   C&R / ORDER TAILOR LP
   Lightning Child Theme
========================================================== */


/* ==========================================================
   VARIABLES
========================================================== */

:root {
    --cr-black: #171717;
    --cr-dark: #202020;
    --cr-text: #242424;
    --cr-gray: #77736d;
    --cr-beige: #f2efe8;
    --cr-light: #f7f6f2;
    --cr-line: #d8d5cf;
    --cr-white: #ffffff;

    --cr-width: 1240px;
    --cr-narrow: 900px;
}

.site-header {
    background-color: #fff;
    height: 0px;
}

/* ==========================================================
   BASE
========================================================== */

html {
    scroll-behavior: smooth;
}

body {
    color: var(--cr-text);
    background: var(--cr-white);

    font-family:
        "Noto Sans JP",
        "Hiragino Kaku Gothic ProN",
        "Yu Gothic",
        YuGothic,
        sans-serif;

    font-size: 16px;
    line-height: 1.8;
}

.cr-lp,
.cr-lp * {
    box-sizing: border-box;
}

.cr-lp {
    width: 100%;
    overflow: hidden;
}

.cr-lp img {
    display: block;
    width: 100%;
    height: auto;
}

.cr-lp a {
    color: inherit;
    text-decoration: none;
}

.cr-container {
    width: min(var(--cr-width), calc(100% - 80px));
    margin-right: auto;
    margin-left: auto;
}

.cr-section {
    padding-top: 130px;
    padding-bottom: 130px;
}

.cr-label {
    display: block;

    margin-bottom: 20px;

    font-family:
        "Helvetica Neue",
        Arial,
        sans-serif;

    font-size: 11px;
    font-weight: 500;

    line-height: 1.5;

    letter-spacing: .22em;

    text-transform: uppercase;
}

.cr-center {
    margin-top: 60px;
    text-align: center;
}



/* ==========================================================
   TYPOGRAPHY
========================================================== */

.cr-section-heading h2,
.cr-collection__intro h2,
.cr-casual__intro h2,
.cr-process__intro h2,
.cr-contact h2 {

    margin: 0;

    font-family:
        "Noto Serif JP",
        "Yu Mincho",
        YuMincho,
        serif;

    font-size: clamp(38px, 5vw, 70px);
    font-weight: 400;

    line-height: 1.35;

    letter-spacing: .02em;
}



/* ==========================================================
   BUTTON
========================================================== */

.cr-button {
    display: inline-flex;

    min-width: 300px;
    min-height: 64px;

    align-items: center;
    justify-content: center;

    padding: 15px 35px;

    color: var(--cr-white) !important;
    background: var(--cr-black);

    font-size: 13px;
    letter-spacing: .1em;

    transition:
        background .3s,
        color .3s,
        transform .3s;
}

.cr-button:hover {
    color: var(--cr-black) !important;
    background: var(--cr-white);

    transform: translateY(-3px);
}

.cr-arrow-link {
    display: inline-flex;
    align-items: center;

    gap: 25px;

    margin-top: 30px;

    padding-bottom: 7px;

    border-bottom: 1px solid currentColor;

    font-size: 13px;
    letter-spacing: .08em;
}

.cr-arrow-link::after {
    content: "→";

    transition: transform .3s;
}

.cr-arrow-link:hover::after {
    transform: translateX(7px);
}



/* ==========================================================
   01 MAIN VISUAL
========================================================== */

.cr-mv {
    position: relative;

    min-height: 900px;

    color: var(--cr-white);
    background: var(--cr-black);
}

.cr-mv__visual {
    display: grid;

    grid-template-columns:
        minmax(0, 60fr)
        minmax(0, 40fr);

    height: 100vh;
    min-height: 800px;
}

.cr-mv__photo,
.cr-mv__design {
    position: relative;
    overflow: hidden;
}

.cr-mv__photo::after,
.cr-mv__design::after {
    position: absolute;
    inset: 0;

    content: "";

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.04) 40%,
            rgba(0,0,0,.35) 100%
        );
}

.cr-mv__photo img,
.cr-mv__design img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.cr-mv__copy {
    position: absolute;

    z-index: 5;

    left: clamp(30px, 7vw, 120px);
    bottom: 9%;

    max-width: 680px;
}

.cr-mv__copy h1 {
    margin: 0 0 28px;

    color: inherit;

    font-family:
        "Noto Serif JP",
        "Yu Mincho",
        YuMincho,
        serif;

    font-size: clamp(48px, 6vw, 88px);
    font-weight: 400;

    line-height: 1.22;

    letter-spacing: .02em;
}

.cr-mv__copy p {
    margin: 0;

    font-size: clamp(14px, 1.3vw, 17px);

    line-height: 2.1;

    letter-spacing: .05em;
}

.cr-scroll {
    position: absolute;

    z-index: 6;

    right: 35px;
    bottom: 40px;

    font-size: 9px;

    letter-spacing: .25em;

    writing-mode: vertical-rl;
}

.cr-scroll::after {
    display: block;

    width: 1px;
    height: 50px;

    margin: 15px auto 0;

    content: "";

    background: rgba(255,255,255,.6);
}



/* ==========================================================
   02 CONCEPT
========================================================== */

.cr-concept {
    background: var(--cr-light);
}

.cr-concept__inner {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, .7fr);

    gap: clamp(60px, 9vw, 140px);

    align-items: end;
}

.cr-concept__text {
    max-width: 520px;
}

.cr-concept__text p {
    margin: 0 0 28px;

    font-size: 15px;

    line-height: 2.4;
}



/* ==========================================================
   03 COLLECTION
========================================================== */

.cr-collection {
    background: var(--cr-white);
}

.cr-collection__intro {
    padding-top: 140px;
    padding-bottom: 110px;
}

.cr-collection__intro p {
    max-width: 600px;

    margin-top: 35px;
    margin-bottom: 0;

    line-height: 2.2;
}

.cr-look {
    display: grid;

    grid-template-columns:
        minmax(0, 58fr)
        minmax(0, 42fr);

    min-height: 760px;
}

.cr-look__image {
    overflow: hidden;
}

.cr-look__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 1.2s ease;
}

.cr-look:hover .cr-look__image img {
    transform: scale(1.025);
}

.cr-look__content {
    display: flex;

    flex-direction: column;
    justify-content: center;

    padding:
        clamp(60px, 8vw, 130px)
        clamp(40px, 7vw, 110px);
}

.cr-look__number {
    display: block;

    margin-bottom: 60px;

    font-family: Georgia, serif;

    font-size: 76px;
    font-weight: 400;

    line-height: 1;

    opacity: .12;
}

.cr-look__content h3 {
    margin: 5px 0 35px;

    font-family:
        "Noto Serif JP",
        "Yu Mincho",
        serif;

    font-size: clamp(36px, 4vw, 60px);
    font-weight: 400;

    line-height: 1.3;
}

.cr-look__content p {
    max-width: 460px;

    margin: 0 0 20px;

    font-size: 14px;

    line-height: 2.2;
}

.cr-look--reverse {
    grid-template-columns:
        minmax(0, 42fr)
        minmax(0, 58fr);
}

.cr-look--reverse .cr-look__image {
    order: 2;
}

.cr-look--reverse .cr-look__content {
    order: 1;
}

.cr-look--dark {
    color: var(--cr-white);
    background: var(--cr-black);
}



/* ==========================================================
   04 PRICE
========================================================== */

.cr-price {
    background: var(--cr-beige);
}

.cr-price__grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 30px;

    margin-top: 70px;
}

.cr-price-card {
    position: relative;

    overflow: hidden;
}

.cr-price-card__image img {
    width: 100%;

    aspect-ratio: 4 / 5;

    object-fit: cover;
}

.cr-price-card__body {
    position: absolute;

    right: 25px;
    bottom: 25px;
    left: 25px;

    padding: 28px 32px;

    background: rgba(255,255,255,.9);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cr-price-card__body span,
.cr-price-card__body small {
    display: block;

    font-size: 10px;

    letter-spacing: .15em;
}

.cr-price-card__body strong {
    display: block;

    margin: 6px 0;

    font-family: Georgia, serif;

    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 400;

    line-height: 1.2;
}

.cr-price-list {
    margin-top: 50px;

    border-top: 1px solid var(--cr-line);
}

.cr-price-list > div {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 22px 5px;

    border-bottom: 1px solid var(--cr-line);
}

.cr-price-list span {
    font-size: 11px;

    letter-spacing: .15em;
}

.cr-price-list strong {
    font-family: Georgia, serif;

    font-size: 22px;
    font-weight: 400;
}



/* ==========================================================
   05 CASUAL / C&R
========================================================== */

.cr-casual {
    background: #e8e4da;
}

.cr-casual__hero {
    position: relative;

    height: min(900px, 90vh);
    min-height: 650px;

    overflow: hidden;

    color: var(--cr-white);
}

.cr-casual__hero::after {
    position: absolute;
    inset: 0;

    content: "";

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.55),
            rgba(0,0,0,.05) 65%
        );
}

.cr-casual__hero > img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.cr-casual__hero-copy {
    position: absolute;

    z-index: 2;

    top: 50%;
    left: max(40px, calc((100% - var(--cr-width)) / 2));

    transform: translateY(-50%);
}

.cr-casual__hero-copy h2 {
    margin: 0 0 25px;

    font-family: Georgia, serif;

    font-size: clamp(55px, 7vw, 105px);
    font-weight: 400;

    line-height: .98;

    letter-spacing: -.03em;
}

.cr-casual__hero-copy p {
    font-family:
        "Noto Serif JP",
        serif;

    font-size: 17px;

    letter-spacing: .08em;
}

.cr-casual__intro {
    max-width: 800px;
}

.cr-casual__intro p {
    max-width: 650px;

    margin-top: 35px;

    line-height: 2.2;
}

.cr-casual-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: clamp(25px, 5vw, 70px);

    margin-top: 80px;
}

.cr-casual-item:nth-child(2) {
    margin-top: 130px;
}

.cr-casual-item img {
    width: 100%;

    aspect-ratio: 4 / 5;

    margin-bottom: 25px;

    object-fit: cover;
}

.cr-casual-item > span {
    font-size: 10px;

    letter-spacing: .16em;
}

.cr-casual-item h3 {
    margin: 13px 0 0;

    font-family:
        "Noto Serif JP",
        serif;

    font-size: clamp(24px, 3vw, 40px);
    font-weight: 400;

    line-height: 1.5;
}

.cr-mini-price {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    margin-top: 100px;

    border-top: 1px solid rgba(0,0,0,.2);
}

.cr-mini-price > div {
    padding: 30px;

    border-right: 1px solid rgba(0,0,0,.2);
    border-bottom: 1px solid rgba(0,0,0,.2);
}

.cr-mini-price > div:first-child {
    border-left: 1px solid rgba(0,0,0,.2);
}

.cr-mini-price span,
.cr-mini-price strong {
    display: block;
}

.cr-mini-price span {
    margin-bottom: 8px;

    font-size: 10px;

    letter-spacing: .14em;
}

.cr-mini-price strong {
    font-family: Georgia, serif;

    font-size: 25px;
    font-weight: 400;
}



/* ==========================================================
   06 REPAIR
========================================================== */

.cr-repair {
    background: var(--cr-white);
}

.cr-repair__movie {
    position: relative;

    height: min(900px, 90vh);
    min-height: 650px;

    overflow: hidden;

    background: #111;
}

.cr-repair__movie::after {
    position: absolute;
    inset: 0;

    z-index: 1;

    content: "";

    background: rgba(0,0,0,.28);
}

.cr-repair__movie video {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.cr-repair__movie-copy {
    position: absolute;

    z-index: 2;

    left: max(40px, calc((100% - var(--cr-width)) / 2));
    bottom: 12%;

    color: var(--cr-white);
}

.cr-repair__movie-copy h2 {
    margin: 0 0 20px;

    font-family:
        "Noto Serif JP",
        serif;

    font-size: clamp(50px, 7vw, 95px);
    font-weight: 400;

    line-height: 1.15;
}

.cr-before-after {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;

    margin-top: 70px;
}

.cr-before-after figure {
    margin: 0;
}

.cr-ba-image {
    position: relative;
}

.cr-ba-image img {
    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;
}

.cr-ba-image span {
    position: absolute;

    top: 18px;
    left: 18px;

    padding: 7px 12px;

    color: var(--cr-white);
    background: var(--cr-black);

    font-size: 9px;

    letter-spacing: .18em;
}

.cr-repair-price {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    margin-top: 35px;

    padding: 30px 5px;

    border-top: 1px solid var(--cr-line);
    border-bottom: 1px solid var(--cr-line);
}

.cr-repair-price span {
    font-size: 10px;

    letter-spacing: .16em;
}

.cr-repair-price p {
    margin: 4px 0 0;
}

.cr-repair-price strong {
    flex: 0 0 auto;

    font-family: Georgia, serif;

    font-size: clamp(25px, 3vw, 38px);
    font-weight: 400;
}

.cr-repair-message {
    padding-top: 100px;
    padding-bottom: 20px;

    text-align: center;
}

.cr-repair-message p {
    margin: 0;

    font-family:
        "Noto Serif JP",
        serif;

    font-size: clamp(38px, 5vw, 68px);
    font-weight: 400;

    line-height: 1.45;
}



/* ==========================================================
   07 PROCESS
========================================================== */

.cr-process {
    background: var(--cr-light);
}

.cr-process__intro p {
    max-width: 600px;

    margin-top: 35px;

    line-height: 2.2;
}

.cr-process-item {
    display: grid;

    grid-template-columns:
        minmax(0, 62fr)
        minmax(0, 38fr);

    min-height: 760px;
}

.cr-process-item__image {
    overflow: hidden;
}

.cr-process-item__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.cr-process-item__content {
    display: flex;

    flex-direction: column;
    justify-content: center;

    padding:
        clamp(50px, 7vw, 110px);
}

.cr-process-item__number {
    margin-bottom: 55px;

    font-family: Georgia, serif;

    font-size: 70px;

    line-height: 1;

    opacity: .12;
}

.cr-process-item__content h3 {
    margin: 0 0 30px;

    font-family:
        "Noto Serif JP",
        serif;

    font-size: clamp(44px, 5vw, 76px);
    font-weight: 400;
}

.cr-process-item__content p {
    max-width: 420px;

    line-height: 2.2;
}

.cr-process-item--reverse {
    grid-template-columns:
        minmax(0, 38fr)
        minmax(0, 62fr);
}

.cr-process-item--reverse .cr-process-item__image {
    order: 2;
}

.cr-process-item--reverse .cr-process-item__content {
    order: 1;
}

.cr-process-item--dark {
    color: var(--cr-white);
    background: var(--cr-black);
}



/* ==========================================================
   08 GARAGE
========================================================== */

.cr-garage {
    background: var(--cr-white);
}

.cr-garage__visual {
    position: relative;

    height: min(900px, 90vh);
    min-height: 650px;

    overflow: hidden;

    color: var(--cr-white);
}

.cr-garage__visual::after {
    position: absolute;
    inset: 0;

    z-index: 1;

    content: "";

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.05),
            rgba(0,0,0,.55)
        );
}

.cr-garage__visual img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.cr-garage__copy {
    position: absolute;

    z-index: 2;

    left: max(40px, calc((100% - var(--cr-width)) / 2));
    bottom: 10%;
}

.cr-garage__copy h2 {
    margin: 0;

    font-family:
        "Noto Serif JP",
        serif;

    font-size: clamp(46px, 6vw, 85px);
    font-weight: 400;

    line-height: 1.3;
}

.cr-floor-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    border-top: 1px solid var(--cr-line);
}

.cr-floor-grid article {
    min-height: 420px;

    padding: clamp(40px, 6vw, 80px);

    border-bottom: 1px solid var(--cr-line);
}

.cr-floor-grid article + article {
    border-left: 1px solid var(--cr-line);
}

.cr-floor-number {
    display: block;

    margin-bottom: 60px;

    font-family: Georgia, serif;

    font-size: 60px;

    line-height: 1;
}

.cr-floor-grid h3 {
    margin: 10px 0 25px;

    font-family:
        "Noto Serif JP",
        serif;

    font-size: clamp(30px, 3vw, 44px);
    font-weight: 400;
}

.cr-floor-grid p {
    max-width: 450px;

    line-height: 2.1;
}



/* ==========================================================
   09 ACCESS
========================================================== */

.cr-access {
    background: var(--cr-light);
}

.cr-access__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 40fr)
        minmax(0, 60fr);

    gap: clamp(50px, 8vw, 120px);
}

.cr-access__info h2 {
    margin: 0 0 60px;

    font-family: Georgia, serif;

    font-size: clamp(45px, 5vw, 75px);
    font-weight: 400;

    line-height: 1.05;
}

.cr-access__info dl {
    margin: 0;
}

.cr-access__info dl > div {
    display: grid;

    grid-template-columns: 100px 1fr;

    padding: 20px 0;

    border-top: 1px solid var(--cr-line);
}

.cr-access__info dl > div:last-child {
    border-bottom: 1px solid var(--cr-line);
}

.cr-access__info dt {
    font-size: 9px;

    letter-spacing: .15em;
}

.cr-access__info dd {
    margin: 0;

    font-size: 14px;

    line-height: 1.9;
}

.cr-access__map {
    min-height: 600px;
}

.cr-access__map iframe {
    display: block;

    width: 100%;
    height: 100%;
    min-height: 600px;
}



/* ==========================================================
   10 CONTACT
========================================================== */

.cr-contact {
    padding-top: 150px;
    padding-bottom: 150px;

    color: var(--cr-white);
    background: var(--cr-black);
}

.cr-contact > .cr-container > p {
    margin-top: 35px;

    color: rgba(255,255,255,.7);

    line-height: 2.2;
}

.cr-contact__buttons {
    margin-top: 80px;

    border-top: 1px solid rgba(255,255,255,.25);
}

.cr-contact-button {
    display: flex;

    align-items: center;
    justify-content: space-between;

    min-height: 110px;

    padding: 25px 30px;

    color: var(--cr-white) !important;

    border-bottom: 1px solid rgba(255,255,255,.25);

    transition:
        padding .3s,
        background .3s,
        color .3s;
}

.cr-contact-button span {
    font-family: Georgia, serif;

    font-size: 20px;

    letter-spacing: .08em;
}

.cr-contact-button small {
    display: block;

    margin-top: 5px;

    font-family:
        "Noto Sans JP",
        sans-serif;

    font-size: 11px;

    letter-spacing: .08em;

    opacity: .65;
}

.cr-contact-button b {
    font-size: 24px;
    font-weight: 400;

    transition: transform .3s;
}

.cr-contact-button:hover {
    padding-right: 40px;
    padding-left: 40px;

    color: var(--cr-black) !important;
    background: var(--cr-white);
}

.cr-contact-button:hover b {
    transform: translateX(7px);
}



/* ==========================================================
   TABLET
   768 - 1024
========================================================== */

@media (max-width: 1024px) {

    .cr-container {
        width: calc(100% - 60px);
    }

    .cr-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }


    /* MV */

    .cr-mv__visual {
        grid-template-columns: 55% 45%;
    }


    /* Collection */

    .cr-look,
    .cr-process-item {
        min-height: 620px;
    }


    /* Access */

    .cr-access__grid {
        grid-template-columns: 1fr;
    }

    .cr-access__map {
        min-height: 450px;
    }

    .cr-access__map iframe {
        min-height: 450px;
    }

}



/* ==========================================================
   SMARTPHONE
   <= 767
========================================================== */

@media (max-width: 767px) {

    body {
        font-size: 14px;
    }

    .cr-container {
        width: calc(100% - 40px);
    }

    .cr-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .cr-pc {
        display: none;
    }



    /* ------------------------------------------
       TYPOGRAPHY
    ------------------------------------------ */

    .cr-label {
        margin-bottom: 13px;

        font-size: 9px;

        letter-spacing: .2em;
    }

    .cr-section-heading h2,
    .cr-collection__intro h2,
    .cr-casual__intro h2,
    .cr-process__intro h2,
    .cr-contact h2 {

        font-size: 34px;

        line-height: 1.4;
    }



    /* ------------------------------------------
       MAIN VISUAL
    ------------------------------------------ */

    .cr-mv {
        min-height: 0;

        background: var(--cr-white);

        color: var(--cr-black);
    }

    .cr-mv__visual {
        display: flex;

        height: auto;
        min-height: 0;

        flex-direction: column;
    }

    .cr-mv__photo {
        height: 66svh;
        min-height: 470px;
    }

    .cr-mv__design {
        height: 52svh;
        min-height: 360px;
    }

    .cr-mv__photo img,
    .cr-mv__design img {
        object-position: center center;
    }

    .cr-mv__photo::after,
    .cr-mv__design::after {
        display: none;
    }

    .cr-mv__copy {
        position: relative;

        left: auto;
        bottom: auto;

        max-width: none;

        padding: 50px 20px 60px;

        color: var(--cr-black);
        background: var(--cr-white);
    }

    .cr-mv__copy h1 {
        margin-bottom: 20px;

        font-size: clamp(38px, 11vw, 50px);

        line-height: 1.3;
    }

    .cr-mv__copy p {
        font-size: 13px;

        line-height: 2;
    }

    .cr-scroll {
        display: none;
    }



    /* ------------------------------------------
       CONCEPT
    ------------------------------------------ */

    .cr-concept__inner {
        display: block;
    }

    .cr-concept__text {
        margin-top: 45px;
    }

    .cr-concept__text p {
        font-size: 14px;

        line-height: 2.2;
    }



    /* ------------------------------------------
       COLLECTION
    ------------------------------------------ */

    .cr-collection__intro {
        padding-top: 80px;
        padding-bottom: 65px;
    }

    .cr-collection__intro p {
        margin-top: 25px;

        font-size: 13px;

        line-height: 2;
    }

    .cr-look,
    .cr-look--reverse {
        display: flex;

        min-height: 0;

        flex-direction: column;

        grid-template-columns: none;
    }

    .cr-look--reverse .cr-look__image,
    .cr-look--reverse .cr-look__content {
        order: initial;
    }

    .cr-look__image {
        height: 65svh;
        min-height: 430px;
    }

    .cr-look__content {
        padding: 50px 20px 65px;
    }

    .cr-look__number {
        margin-bottom: 35px;

        font-size: 50px;
    }

    .cr-look__content h3 {
        margin-bottom: 25px;

        font-size: 36px;
    }

    .cr-look__content p {
        font-size: 13px;

        line-height: 2;
    }



    /* ------------------------------------------
       PRICE
    ------------------------------------------ */

    .cr-price__grid {
        grid-template-columns: 1fr;

        gap: 15px;

        margin-top: 50px;
    }

    .cr-price-card__body {
        right: 12px;
        bottom: 12px;
        left: 12px;

        padding: 20px;
    }

    .cr-price-card__body strong {
        font-size: 30px;
    }

    .cr-price-list {
        margin-top: 35px;
    }

    .cr-price-list > div {
        padding: 18px 3px;
    }

    .cr-price-list strong {
        font-size: 19px;
    }

    .cr-center {
        margin-top: 45px;
    }

    .cr-button {
        width: 100%;
        min-width: 0;
    }



    /* ------------------------------------------
       C&R
    ------------------------------------------ */

    .cr-casual__hero {
        height: 75svh;
        min-height: 520px;
    }

    .cr-casual__hero::after {
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,.05) 30%,
                rgba(0,0,0,.6) 100%
            );
    }

    .cr-casual__hero-copy {
        top: auto;
        right: 20px;
        bottom: 45px;
        left: 20px;

        transform: none;
    }

    .cr-casual__hero-copy h2 {
        font-size: clamp(46px, 14vw, 68px);
    }

    .cr-casual__hero-copy p {
        font-size: 13px;
    }

    .cr-casual__intro p {
        margin-top: 25px;

        line-height: 2;
    }

    .cr-casual-grid {
        grid-template-columns: 1fr;

        gap: 60px;

        margin-top: 55px;
    }

    .cr-casual-item:nth-child(2) {
        margin-top: 0;
    }

    .cr-casual-item h3 {
        font-size: 29px;
    }

    .cr-mini-price {
        grid-template-columns: 1fr;

        margin-top: 65px;
    }

    .cr-mini-price > div {
        padding: 20px 5px;

        border-right: 0;
    }

    .cr-mini-price > div:first-child {
        border-left: 0;
    }



    /* ------------------------------------------
       REPAIR
    ------------------------------------------ */

    .cr-repair__movie {
        height: 70svh;
        min-height: 500px;
    }

    .cr-repair__movie-copy {
        right: 20px;
        bottom: 45px;
        left: 20px;
    }

    .cr-repair__movie-copy h2 {
        font-size: 48px;
    }

    .cr-repair__movie-copy p {
        font-size: 12px;
    }

    .cr-before-after {
        gap: 7px;

        margin-top: 45px;
    }

    .cr-ba-image span {
        top: 7px;
        left: 7px;

        padding: 4px 7px;

        font-size: 7px;
    }

    .cr-repair-price {
        align-items: flex-end;

        gap: 20px;

        padding: 22px 2px;
    }

    .cr-repair-price p {
        font-size: 12px;
    }

    .cr-repair-price strong {
        font-size: 22px;
    }

    .cr-repair-message {
        padding-top: 70px;
    }

    .cr-repair-message p {
        font-size: 35px;
    }



    /* ------------------------------------------
       PROCESS
    ------------------------------------------ */

    .cr-process-item,
    .cr-process-item--reverse {
        display: flex;

        min-height: 0;

        flex-direction: column;

        grid-template-columns: none;
    }

    .cr-process-item--reverse .cr-process-item__image,
    .cr-process-item--reverse .cr-process-item__content {
        order: initial;
    }

    .cr-process-item__image {
        height: 62svh;
        min-height: 420px;
    }

    .cr-process-item__content {
        padding: 45px 20px 65px;
    }

    .cr-process-item__number {
        margin-bottom: 30px;

        font-size: 48px;
    }

    .cr-process-item__content h3 {
        margin-bottom: 20px;

        font-size: 45px;
    }

    .cr-process-item__content p {
        font-size: 13px;

        line-height: 2;
    }



    /* ------------------------------------------
       GARAGE
    ------------------------------------------ */

    .cr-garage__visual {
        height: 72svh;
        min-height: 520px;
    }

    .cr-garage__copy {
        right: 20px;
        bottom: 45px;
        left: 20px;
    }

    .cr-garage__copy h2 {
        font-size: 40px;
    }

    .cr-floor-grid {
        grid-template-columns: 1fr;
    }

    .cr-floor-grid article {
        min-height: 0;

        padding: 45px 5px;
    }

    .cr-floor-grid article + article {
        border-left: 0;
    }

    .cr-floor-number {
        margin-bottom: 35px;

        font-size: 45px;
    }

    .cr-floor-grid h3 {
        font-size: 28px;
    }

    .cr-floor-grid p {
        font-size: 13px;

        line-height: 2;
    }



    /* ------------------------------------------
       ACCESS
    ------------------------------------------ */

    .cr-access__grid {
        display: block;
    }

    .cr-access__info h2 {
        margin-bottom: 45px;

        font-size: 43px;
    }

    .cr-access__info dl > div {
        grid-template-columns: 78px 1fr;

        padding: 16px 0;
    }

    .cr-access__map {
        min-height: 380px;

        margin-top: 60px;
    }

    .cr-access__map iframe {
        min-height: 380px;
    }



    /* ------------------------------------------
       CONTACT
    ------------------------------------------ */

    .cr-contact {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .cr-contact > .cr-container > p {
        margin-top: 25px;

        font-size: 13px;
    }

    .cr-contact__buttons {
        margin-top: 55px;
    }

    .cr-contact-button {
        min-height: 90px;

        padding: 20px 5px;
    }

    .cr-contact-button:hover {
        padding-right: 12px;
        padding-left: 12px;
    }

    .cr-contact-button span {
        font-size: 17px;
    }

    .cr-contact-button small {
        font-size: 9px;
    }

}



/* ==========================================================
   VERY SMALL SMARTPHONE
========================================================== */

@media (max-width: 390px) {

    .cr-container {
        width: calc(100% - 30px);
    }

    .cr-mv__copy {
        padding-right: 15px;
        padding-left: 15px;
    }

    .cr-look__content,
    .cr-process-item__content {
        padding-right: 15px;
        padding-left: 15px;
    }

    .cr-section-heading h2,
    .cr-collection__intro h2,
    .cr-casual__intro h2,
    .cr-process__intro h2,
    .cr-contact h2 {
        font-size: 31px;
    }

}



/* ==========================================================
   LIGHTNING ADJUSTMENT
========================================================== */

/*
Lightningの固定ページをLPとして使用する場合の
余白・コンテンツ幅調整
*/

body.page .site-body {
    padding-top: 0;
}

body.page .site-body-container {
    max-width: none;
    padding-right: 0;
    padding-left: 0;
}

body.page .main-section {
    width: 100%;
}

body.page .entry-body {
    margin: 0;
}

/*
固定ページタイトルを非表示にする場合
LP専用ページにのみ適用するのが理想
*/

/*
body.page-id-123 .page-header {
    display: none;
}

body.page-id-123 .breadcrumb {
    display: none;
}
*/

/* リキャプチャ削除 */
.grecaptcha-badge { 
  visibility: hidden; 
}
/* 日付時間非表示 （更新頻度が下がってもわかりにくいように）*/
.entry-meta, .postListText_date,.vk_post_title_new{
  display: none;
}


