@charset "UTF-8";

:root {
    --color-font-black: #252320;
    --color-font-gray: #6D6B68;
    --color-font-orange: #E16526;
    --color-bg: #E8E7E2;
    --color-bg-rgb: 232, 231, 226;
    --color-white: #FEFEFE;
    --color-white-rgb: 254, 254, 254;

    --max-width: 2560px;
    --well: 32px;
    --gutter: 5.1cqw;
    --hero-width: min(100cqw, var(--max-width));
    --contents-width: 89.8cqw;
    --cut-in: 5.1cqw;
}

@media (min-width: 1024px) {
    :root {
        --well: 40px;
        --gutter: max(2.8cqw, 50cqw - var(--max-width) * 0.944 * 0.5);
        --contents-width: min(94.4cqw, var(--max-width) * 0.944);
        --cut-in: min(2.8cqw, var(--max-width) * 0.028);
    }
}

html {
    font-size: 62.5%;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    color: var(--color-font-black, #252320);

    background-image: url(../images/bg.jpeg);
    background-color: rgba(var(--color-bg-rgb), 0.9);
    background-blend-mode: lighten;

    width: 100%;
    container-type: size;
}

header,
main,
footer {
    background-image: url(../images/bg.jpeg);
    background-color: rgba(var(--color-bg-rgb), 0.9);
    background-blend-mode: lighten;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* 城 お試し 悪影響あったら声かけてください
a {
    display: block;
}
*/

dt {
    font-weight: 400;
}

.main {
    padding: var(--well) var(--gutter);
}

.ungutter {
    width: 100%;
    margin-left: calc(var(--cut-in) * -1);
    margin-right: calc(var(--cut-in) * -1);
}

/** 親要素をあふれて画面いっぱいの横幅 */
.over-full-width {
    width: 100%;
    margin-left: max(50% - 50cqw, 50% - var(--max-width) * 0.5);
    margin-right: max(50% - 50cqw, 50% - var(--max-width) * 0.5);
}

.full {
    max-width: 2560px;
    margin-left: calc(50% - var(--hero-width) * 0.5);
    margin-right: calc(50% - var(--hero-width) * 0.5);
}

.section {
    position: relative;
}

.link {
    display: inline-block;
    background: url(../images/icon_arrow.png) no-repeat center / cover;
    vertical-align: bottom;
    margin-left: 3%;
    margin-bottom: 1%;
}

.view {
    display: inline-block;
    font-weight: 600;
    position: relative;
    padding: 8px 0 8px 35px;

    &::before {
        display: inline-block;
        content: "";
        background: url(../images/icon_arrow_r.png) no-repeat center / cover;
        width: 28px;
        height: 28px;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto;
    }

    &:hover::before,
    &.active::before {
        background-image: url(../images/icon_arrow_rb.png);
    }
}

li:has(>.view) {
    margin-bottom: 10px;
}


.download {
    font-weight: 600;
    text-decoration: underline;
    position: relative;

    &::after {
        display: inline-block;
        content: "";
        background: url(../images/icon_arrow_r.png) no-repeat center / cover;
        transform: rotate(90deg);
        width: 28px;
        height: 28px;
        position: absolute;
        top: 0;
        bottom: 0;
        right: -2.2em;
        margin: auto;
    }
}

.hidden {
    display: none;
}

.company-info {
    order: 2;
    line-height: 1.4;
    margin-top: 32px;

    & dt {
        margin-top: 20px;
    }
}

.company-info dt,
.sub-nav-item p {
    font-size: 1.3rem;
    color: var(--color-font-gray);
}

.copyright {
    display: block;
    font-size: 1.1rem;
    color: var(--color-font-gray);
    font-weight: 400;
    margin-top: 32px;
    padding: 0 2.8% 2.8%;
}

.sub-nav {
    order: 1;
}

.sub-nav-item li:not(:first-of-type),
.sub-nav-item__list li:not(:first-of-type) {
    margin-top: 10px;
}

.sub-nav-item,
.sub-nav-item__list li {
    display: flex;
}

.sub-nav-item:not(:first-of-type),
li.sub-nav-item__item:not(:first-of-type) {
    margin-top: 32px;
}

.sub-nav-item {
    & p {
        width: 51.5%;
    }

    .link {
        width: min(5.9vw, 22px);
        height: min(5.9vw, 22px);
    }

    & ul {
        width: 48.5%;
    }

    & ul.sub-nav-item__list {
        width: 100%;
    }
}

/* header */
.header-info {
    height: 38px;
    background-color: var(--color-font-black);
    color: var(--color-bg);
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-inner {
    height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-font-black);
    padding-left: 2.8%;
}

.logo {
    display: flex;
    align-items: center;
    width: 123px;
}

.header-btn {
    display: flex;
    align-items: center;
    width: 48px;
    height: 100%;
    border-left: 1px solid var(--color-font-black);
    cursor: pointer;

    & img {
        width: 26px;
        margin: auto;
    }
}

.g-nav {
    display: none;
}

/* drawer */
.drawer {
    transform: translateX(-100%);
    transition-property: transform;
    transition: transform 0.4s;

    &.active {
        transform: translateX(0);
    }

    height: 100dvh;
    width: 100cqw;
    overflow: scroll;
    scrollbar-width: none;
    background-color: var(--color-font-black);
    color: var(--color-bg);
    z-index: 800;
    position: fixed;
    top: 0;
    left: 0;

    .link {
        background: url(../images/icon_arrow_b.png) no-repeat center / cover;
        vertical-align: bottom;
        margin-left: 3%;
        margin-bottom: 1%;
    }

    .drawer_header {
        width: 100%;
        height: 96px;
        display: grid;
        grid-template-rows: 48px 48px;
        grid-template-columns: 1fr 48px;
        grid-template-areas:
            "areaA areaB"
            "areaC areaC";

        & .logo {
            grid-area: areaA;
            width: 123px;
            margin-left: 10px;
        }

        background-color: var(--color-font-black);
        position: sticky;
        top: 0;
        left: 0;
        z-index: 850;
    }

    .drawer-btn-close {
        cursor: pointer;
        grid-area: areaB;
        border-left: 1px solid var(--color-bg);
        display: flex;
        justify-content: center;
        align-items: center;

        & .line {
            display: block;
            width: 100%;
            height: 1px;
            background-color: var(--color-bg);
            transition: transform 0.4s;
        }

        & .line01 {
            transform: rotate(-25deg);
            transform-origin: right top;
        }

        & .line02 {
            transform: rotate(25deg);
            transform-origin: right bottom;
        }
    }

    .drawer-btn-inner {
        width: 22px;
        height: 11px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;

    }

    .drawer-btn-user {
        grid-area: areaC;

        height: 48px;
        border-top: 1px solid var(--color-bg);
        border-bottom: 1px solid var(--color-bg);
        display: flex;
        align-items: center;

        & ul {
            width: 100%;
            height: 100%;
            display: flex;
        }

        & li {
            width: 50%;
        }

        & li:nth-of-type(2) {
            border-left: 1px solid var(--color-bg);
        }

        & li a {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        & img {
            width: 32px;
            margin-right: 4px;
        }
    }

    .drawer-menu {
        display: flex;
        flex-direction: column;
        padding: 10.2% 5.1%;

        & dt,
        & .copyright,
        & .sub-nav-item p,
        & .company-info dt {
            color: var(--color-bg);
        }
    }
}

/* breadcrumb */
.breadcrumb {
    color: var(--color-font-gray);
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.breadcrumb-list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;

    & li {
        white-space: nowrap;
        display: inline;
    }

    & li:nth-of-type(n+2)::before {
        display: inline-block;
        content: "/";
        margin: 0 0.5em;
    }

    & a {
        display: inline-block;
    }
}

/* product */
.section-product-title {
    margin-top: 13px;
    padding: 0 4px;

    & .series {
        margin-right: 0.5em;
    }

    & .series::before {
        display: inline-block;
        content: "|";
        margin: 0 0.5em;
    }
}

.section-product-desc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
    margin-top: 6px;
}

.section-product-price {
    width: 100%;
    color: var(--color-font-gray);
    font-size: 1.2rem;
    font-weight: 400;

    & .section-product-price-number {
        font-family: "Inter", sans-serif;
        color: var(--color-font-black);
        font-size: min(4.4vw, 1.9rem);
        margin: 0 0.1rem;
    }
}

.section-product-color {
    display: flex;

    & li {
        width: min(4.8vw, 22px);
        margin-left: 5%;

        & img {
            display: block;
        }
    }
}

/* info */
.info {
    padding: 12% 5.1% 4.3%;
    position: relative;
}

.info::before {
    display: inline-block;
    content: "";
    background: url(../images/line_sp.png) no-repeat top / cover;
    width: 100%;
    height: 3vw;
    position: absolute;
    top: 0;
    left: 0;
}

.info-title {
    font-size: min(10.25vw, 6.4rem);
    writing-mode: vertical-rl;
    margin-left: auto;
    font-weight: 500;
}

.point-list {
    margin-top: 8%;

    & .point-item {
        font-weight: 600;
        display: flex;
        align-items: center;
        border-top: 1px solid var(--color-font-black);
        padding: 5.8% 0;

        & img {
            width: min(13.4vw, 56px);
        }

        & p {
            margin-left: 3%;
        }
    }
}

.method-item {
    border-top: 1px solid var(--color-font-black);
    padding: 5% 0;

    & .method-title {
        font-size: min(6vw, 2.4rem);
        font-weight: 600;
        position: relative;
        margin-top: 10px;
    }

    & .link {
        width: min(7.5vw, 30px);
        height: min(7.5vw, 30px);
    }

    & p {
        font-weight: 300;
        margin-top: 10px;
    }
}

.method-img {
    display: block;
    position: relative;
}

.method-img::after {
    display: block;
    content: "";
    width: min(12.3vw, 56px);
    height: min(12.3vw, 56px);
    position: absolute;
    top: 4.8%;
    right: 2.9%;
}

.method-img.point01::after {
    background: url(../images/top/chr_s01.png) no-repeat center / cover;
}

.method-img.point02::after {
    background: url(../images/top/chr_s02.png) no-repeat center / cover;
}

.method-img.point03::after {
    background: url(../images/top/chr_s03.png) no-repeat center / cover;
}

.method-img.point04::after {
    background: url(../images/top/chr_s04.png) no-repeat center / cover;
}

/* footer */
/* shopping-guide */
.shopping-guide-item {
    border-top: 1px solid var(--color-font-black);
    position: relative;

    a {
        display: block;
        padding: 23% 10.3% 8.2%;
        width: 100%;
        height: 100%;
    }

    & .header {
        text-align: center;
        font-size: 2rem;
        font-weight: 600;
    }

    & p {
        font-weight: 300;
        margin-top: 5%;
    }
}

.shopping-guide-item::before {
    display: block;
    content: "";
    background: url(../images/icon_sg01.png) no-repeat center / cover;
    width: 15vw;
    height: 15vw;
    position: absolute;
    top: 11%;
    left: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
}

.shopping-guide-item:nth-of-type(2)::before {
    background-image: url(../images/icon_sg02.png);
}

.shopping-guide-item:nth-of-type(3)::before {
    background-image: url(../images/icon_sg03.png);
}

.shopping-guide-item:nth-of-type(4)::before {
    background-image: url(../images/icon_sg04.png);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--color-font-black);
    padding: 10.2% 5.1%;
    position: relative;
}


.g-nav {
    & *:not(:hover)>.dropdown-menu {
        display: none;
    }

    & li {
        cursor: pointer;
    }

    & .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 500;
        white-space: nowrap;
        line-height: 2.5em;
        border: 1px solid var(--color-font-black);
        background-color: var(--color-font-black);
        min-width: 160px;

        & p {
            color: var(--color-font-gray);
        }

        & li {
            color: #fff;

            & a {
                padding: 0 10px 20px;
            }
        }
    }

    & *:has(>.dropdown-menu) {
        position: relative;
    }
}


@media (width < 1024px) {
    .pc {
        display: none;
    }
}

@media (min-width: 1024px) {
    .sp {
        display: none;
    }

    /* header */
    .header-info {
        height: 46px;
        font-size: 1.5rem;
    }

    .header-inner {
        height: 72px;
        justify-content: flex-start;

        & .logo {
            width: 157px;
        }
    }

    .header-btn {
        display: none;
    }

    .g-nav {
        display: block;
        width: 100%;
        height: 100%;
        position: static;
        margin-left: 2%;

        &>ul {
            height: 100%;
            display: flex;
            align-items: center;

            &>li {
                display: flex;
                align-items: center;
                height: 100%;
                margin-left: 2.6%;
                position: relative;

                & img {
                    width: 32px;
                }
            }

            &>li:nth-of-type(n+6) {
                width: 96px;
                font-size: 1.1rem;
                border-left: 1px solid var(--color-font-black);
                margin-left: 0;

                & a {
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                }
            }

            &>li:nth-last-of-type(2) {
                margin-left: auto;
            }
        }
    }

    /* product */
    .section-product-title {
        margin-top: 15px;
    }

    .section-product-inner {
        display: flex;
        justify-content: space-between;
    }

    .section-product-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 3%;
    }

    .section-product-item {
        margin-top: 0;
    }

    .section-product-desc {
        margin-top: 10px;
    }

    /* info */
    .info {
        padding: 4% 1.4% 0;
        display: flex;
        justify-content: center;
    }

    .info::before {
        background: url(../images/line.png) no-repeat center / contain;
    }

    .info-title {
        font-size: min(4.4vw, 6.4rem);
        margin: 0 auto;
    }

    .info-inner,
    .method-list {
        width: 33.3%;
        border-left: 1px solid var(--color-font-black);
        padding: 0 1.4%;
    }

    .point-list {
        margin-top: 15%;
        border-bottom: 1px solid var(--color-font-black);
    }

    .method-list {
        & .method-item:first-of-type {
            border-top: none;
            padding-top: 0;
        }
    }

    .method-list:last-of-type {
        border-right: 1px solid var(--color-font-black);
    }

    /* footer */
    /* shopping-guide */
    .shopping-guide-list {
        display: flex;
    }

    .shopping-guide-item {
        width: 25%;

        & a {
            padding: 90px 11.1% 11.1%;
            padding: 85px 11.1% 11.1%;
        }


        & dt {
            font-size: 1.7rem;
        }
    }

    .shopping-guide-item:not(:first-of-type) {
        border-left: 1px solid var(--color-font-black);
    }

    .shopping-guide-item::before {
        width: min(34.8vw, 50px);
        height: min(34.8vw, 50px);
    }

    .footer-inner {
        padding: 2.8%;
        flex-direction: row;
        justify-content: space-between;
    }

    .company-info {
        order: 1;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        & dt {
            margin-top: 2px;
        }

        & dl>div+div {
            margin-top: 8.5%;
        }
    }

    .sub-nav-list {
        display: flex;

        & .sub-nav-item,
        & .sub-nav-item__list li {
            display: flex;
            flex-direction: column;
        }

        & .sub-nav-item {
            width: 200px;
            margin-left: 30px;

            & ul,
            & p {
                width: 100%;
            }
        }

        & .sub-nav-item li {
            margin-top: 5%;
        }

        & .sub-nav-item li.sub-nav-item__item {
            margin-top: 10%;
        }

        & .sub-nav-item li.sub-nav-item__item:first-of-type,
        & .sub-nav-item:not(:first-of-type) {
            margin-top: 0;
        }
    }
}

.ml-40 {
    margin-left: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-0 {
    margin-top: 0px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-0 {
    margin-bottom: 0px;
}

.w-full {
    width: 100%;
}

.alignC {
    text-align: center;
}

.alignR {
    text-align: right;
}


@media (min-width: 768px) {

    & .tow-column {
        display: flex;
        justify-content: space-between;
    }

    & .tow-column>* {
        margin-top: 0px;
        width: 48%;
    }
}

@media (max-width: 767px) {
    & .tow-column>*:first-child {
        margin-bottom: 10px;
    }
}


.odd-white-container>*:nth-of-type(odd),
.odd-white-2col-container>*:nth-of-type(odd) {
    background-color: rgba(var(--color-white-rgb), 0.5);
}

.odd-white-2col-container>* {
    display: flex;
    justify-content: space-between;
    padding: 0.67em 0.8em;
}

.contact {
    font-weight: 700;
    text-decoration: underline;
}

.attention {
    color: var(--color-font-orange);
    font-weight: 700;
}

.notice {
    color: var(--color-font-orange);
}

.message_area {
    border: 2px solid #EEE;
    border-radius: 10px;
    padding: 1.5em 2em;

    & h3 {
        font-weight: 600;
        position: relative;
    }

    & h3::before {
        display: block;
        position: absolute;
        font-size: 0.5em;
        top: 0.7em;
        left: -1.7em;
        content: "●";
        color: var(--color-font-orange);
    }
}

.page-title,
.page-article h1 {
    line-height: 1.6;
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 20px;
}

li.dot-list {
    margin-top: 0.4em;
    margin-bottom: 0.4em;
    margin-left: 1.5em;
    list-style: initial;
}

.page-article {
    line-height: 1.6;

    & h2 {
        font-size: 2rem;
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 20px;

        & span {
            display: block;
            font-size: 1.3rem;
            font-weight: 400;
            line-height: 1.6;
            color: var(--color-font-gray);
            margin-bottom: 12px;
        }
    }

    & a {
        text-decoration: underline;
    }

    & figcaption {
        text-align: center;
    }

    & section {
        margin-top: 20px;

        &:has(>h2:first-child) {
            margin-top: 32px;
        }
    }

    & p {
        line-height: 1.6;

        &:not(:first-child) {
            margin-top: 12px;
        }

        &:first-child {
            margin-top: 0;
        }
    }
}

a.btn_black,
a.btn_gray {
    text-decoration: none;
}

.btn_black {
    display: inline-block;
    border: 0;
    background-color: var(--color-font-black);
    border-radius: 0.5em;
    color: var(--color-white);
    padding: 0.8em;
    text-align: center;
    text-decoration: none;
    width: 12em;
}

.btn_gray {
    display: inline-block;
    border: 0;
    background-color: var(--color-font-gray);
    border-radius: 0.5em;
    color: var(--color-white);
    padding: 0.8em;
    text-align: center;
    text-decoration: none;
    width: 12em;
}

.footer-left-content {
    order: 1;
    display: flex;
}

/* ===============================================
▼カレンダー
=============================================== */
.calendar {
    background-color: transparent;
    border: none;
    order: 1;
    margin-left: 30px;
    max-width: 200px;
}

.calendar dt {
    font-size: 1.3rem;
    color: var(--color-font-gray);
    margin-top: 2px;
}

.calendar p {
    font-size: 1.3rem;
    margin-top: 5%;
}


.calendar table {
    background: #fff;
    border: none;
    font-size: 90%;
    width: 100%;
}

.calendar table td {
    padding: 1px 3px;
    border-top: 1px solid #ccc;
    border-right: none;
    text-align: center;
}

.calendar th {
    padding: 1px 3px;
    background: #fff;
    border: none;
    text-align: center;
}

.calendar table .month {
    margin-bottom: 5px;
    padding-left: 12px;
    font-size: 1.5rem;
    margin-top: 5%;
    font-weight: bold;
}

.calendar .off,
.calendar .sun {
    color: #f00;
}

.calendar .information {
    margin-left: 10px;
    font-size: 90%;
}

@media (max-width: 768px) {
    .footer-left-content {
        order: 2;
        flex-direction: column;
    }

    .calendar {
        background-color: transparent;
        border: none;
        order: 1;
        max-width: 100%;
        margin: 32px auto 0;
    }

    .calendar table {
        width: 200px;
        margin: auto;
    }

    .calendar p {
        margin-top: 5px;
    }
}

.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.d-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}
.js-scroll {
    cursor: pointer;
}