/* ====================================
   Base
==================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "AXIS Std";
    src: url("./AXIS_Std_woff/axisstd-ultralight.woff") format("woff");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "AXIS Std";
    src: url("./AXIS_Std_woff/axisstd-extralight.woff") format("woff");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "AXIS Std";
    src: url("./AXIS_Std_woff/axisstd-light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "AXIS Std";
    src: url("./AXIS_Std_woff/axisstd-regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "AXIS Std";
    src: url("./AXIS_Std_woff/axisstd-medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "AXIS Std";
    src: url("./AXIS_Std_woff/axisstd-bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "AXIS Std";
    src: url("./AXIS_Std_woff/axisstd-heavy.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

.sp_none{
    display: none;
}
body {
    font-family:
        "AXIS Std",
        "HiraKakuProN-W3",
        "HiraKakuPro-W3",
        "Hiragino Kaku Gothic ProN",
        "Hiragino Kaku Gothic Pro",
        "Yu Gothic",
        "YuGothic",
        sans-serif;
    color: #222;
    line-height: 1.8;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 20px 80px;
}

/* ====================================
   Intro
==================================== */

.intro {
    font-family: "AXIS Std";
    text-align: center;
    margin-top: 45px;
    margin-bottom: 60px;
    padding-top: 40px;
    border-top: 1px solid #000;
}

.sub-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #B5B5B6;
    letter-spacing: 0.03em;
    line-height: 1.5;
    margin-bottom: 0;
}

.intro h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #2d2626;
    line-height: 1;
    margin-bottom: 22px;
}

.lead {
    max-width: 740px;
    margin: auto;
    font-size: 18px;
    text-align: left;
}

/* ====================================
   Wash Area
==================================== */

.wash-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
}

.wash-item {
    display: flex;
    gap: 20px;
    position: relative;
    align-items: flex-start;
}

.wash-item img {
    width: 150px;
    flex-shrink: 0;
}

.wash-item h3 {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 10px;
    font-weight: 700;
}

.wash-item p {
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
}

.num {
    position: absolute;
    left: -12px;
    top: -12px;

    width: 28px;
    height: 28px;

    background: #4caf50;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: bold;
}

/* ⑤だけ左側配置 */

.wash-item:last-child {
    grid-column: 1;
}

/* ====================================
   Action
==================================== */

.action-section {
    margin-top: 100px;
}

.action-section h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 50px;
}

.action-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
}

.products {
    display: flex;
    gap: 20px;
    order: 2;
}

.action-text {
    width: 40%;
    text-align: center;
    order: 1;
}

.action-text p {
    font-size: 16px;
    padding:20px 0;
}

.qr {
    width: 60%;
    margin: 10px auto;
}

.product {
    width: 220px;
}

.product img {
    width: 100%;
    margin-bottom: 10px;
}

.product h3 {
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.product p {
    font-size: 13px;
    line-height: 1.6;
}

/* ====================================
   Tablet
==================================== */

@media screen and (max-width: 900px) {

    .wash-grid {
        gap: 30px;
    }

    .wash-item {
        gap: 15px;
    }

    .wash-item img {
        width: 130px;
    }

    .action-wrap {
        gap: 0;
    }

    .product {
        width: 180px;
    }

}

/* ====================================
   Smartphone
==================================== */

@media screen and (max-width: 768px) {
    .sp_none{
    display: block;
}

    .container {
        padding: 40px 20px 60px;
    }

    .wash-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .wash-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    .wash-item img {
        width: 42%;
        flex-shrink: 0;
    }

    .wash-item>div:last-child {
        width: 58%;
    }

    .wash-item h3 {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .wash-item p {
        font-size: 13px;
        line-height: 1.6;
    }

    .action-section {
        margin-top: 70px;
    }

    .action-section h2 {
        font-size: 24px;
        line-height: 1.5;
    }

    .action-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .product h3 {
    font-size: 14px;
}
    .products {
        display: flex;
        gap: 15px;
        width: 100%;
    }

    .product {
        width: 50%;
        max-width: none;
    }

    .action-text {
        width: 100%;
        margin-top: 0;
        text-align: center;
    }

    .products .product {
        width: calc(50% - 8px);
        max-width: none;
    }

    .qr {
        width:65%;
        margin: 20px auto 0;
    }

    .action-wrap {
        flex-direction: column;
    }

    .action-text {
        order: 99;
    }

}

/* ====================================
   Small Smartphone
==================================== */

@media screen and (max-width: 480px) {

    .intro h1 {
        font-size: 24px;
    }

    .sub-title {
        font-size: 12px;
    }

    .lead {
        font-size: 13px;
    }

    .action-section h2 {
        font-size: 20px;
    }

}