body {
    font-family: system-ui;
}

a {
    color: inherit;

    &:hover {
        color: rgb(100, 100, 100);
        text-decoration: underline;
    }
}

ul {
    padding-inline-start: 30px;
    margin-top: -0.5em;
}
ul li {
    margin: 0 0 0.5em;
}

.maxmin {
    min-width: 300px;
    max-width: 100vw;
}

.spacer {
    margin-bottom: 4em;
}
.spacer__tiny {
    margin-bottom: 2em;
}

@media screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px) {
    .spacer {
        margin-bottom: 3em;
    }
}

.Header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
}

.Header_name {
    font-size: 5vw;
    font-weight: 900;
}

.Header_name a {
    text-decoration: none;
}

.Header_title {
    font-size: clamp(14px, 1vw, 24px);
}

.Header_menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.Header_item {
    font-size: 2.5vw;
    font-weight: 900;
}

@media screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px) {
    .Header {
        padding: 0 16px;
    }
    .Header_name {
        font-size: 40px;
    }
    .Header_item {
        font-size: 20px;
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 768px) {
    .Header {
        flex-direction: column;
        padding: 0 8px;
    }
    .Header_name {
        font-size: clamp(34px, 10vw, 100px);
        text-align: center;
    }
    .Header_item {
        font-size: clamp(17px, 5vw, 100px);
    }
    .Header_title {
        margin-bottom: 1em;
        font-weight: normal;
    }
}

.main {
    display: flex;
    gap: 50px;
    padding: 50px 50px;
}

.mainColumn {
    width: 50%;
}

.sideColumn {
    width: 50%;
}

.sideColumn img {
    display: block;
    width: 100%;
    margin: 0 auto;
}

@media screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px) {
    .main {
        padding: 40px 16px 20px;
        flex-direction: column;
        gap: 0;
    }

    .mainColumn {
        width: 100%;
        order: 2;
    }

    .sideColumn {
        width: 100%;
        order: 1;
    }

    .sideColumn img {
        max-width: 500px;
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 768px) {
    .main {
        padding: 20px 8px 20px;
    }
}

/* ICON */
.icon {
    display: block;
    width: 16px;
    height: 16px;
}
.icon__active {
    cursor: pointer;
}
.icon__active: hover {
    color: #666;
}

/* COPY */
.Copy {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    transition: background-color ease 0.3s;
}
.CopyNotification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 2.5vw;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.CopyNotification.fade-out {
    opacity: 0;
}

@media screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px) {
    .CopyNotification {
        font-size: inherit;
    }
}

/* CUT */
.cut_container {
    display: none;
}
.cut_trigger {
    cursor: pointer;
}

/* PERFUME */
.Perfume {
    display: block;
    margin: 1em 0;
    padding: 0 0 1em;
    /* border-bottom: 1px solid rgb(230, 230, 230); */
    border-bottom: 1px solid black;
}
.Perfume:first-child {
    padding-top: 1em;
    /* border-top: 1px solid rgb(230, 230, 230); */
    border-top: 1px solid black;
}
.Perfume_title {
    display: inline-flex;
    align-items: center;
    margin: 0;
    width: 100%;
}
.Perfume_icon {
    width: 24px;
    height: 24px;
    transform: none;
    transition: transform ease 0.3s;
}
.cut_trigger__opened .Perfume_icon {
    transform: rotate(180deg);
}
.Perfume_icon:hover {
    opacity: 0.7;
}
.Perfume_container {

}
.Perfume_images {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.Perfume_img {
    display: block;
    max-width: 500px;
    width: calc(50% - 4px);
    object-fit: contain;
}
@media screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 768px) {
    .Perfume_images {
        flex-direction: column;
        gap: 1em;
    }
    .Perfume_img {
        width: 100%;
        margin: 0 auto;
    }
}
