/* 汎用CSS */
html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
    scroll-padding-top: 100px;
}

img {
    width: 100%;
    vertical-align: middle;
}

body {
    background-color: #dcdcdc;
    font-family: "Forevs", serif;
    font-weight: 400;
}

.wrapper {
    padding: 0;
}

.pane-contents {
    background-color: #dcdcdc;
}

.block-header {
    background: #fff;
}

.pane-main {
    margin: 160px auto 0;
    background-color: #530201;
}

.l_contents {
    max-width: 600px;
    overflow-x: clip;
}

.l_contents h2 {
    border-bottom: none;
}

.l_contents a:hover {
    text-decoration: none;
    opacity: .7;
}

.mincho {
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0 !important;
}

.gothic {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0 !important;
}

/* side-fixed */
.pcOnly {
    display: block;
}

.side-fixed {
    position: fixed;
    top: 0px;
    left: 50%;
    translate: -50%;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.fixed-left {
    display: grid;
    width: calc(50% - 300px);
    height: 100vh;
    margin-top: 9rem;
    place-items: center;
    text-align: center;
}

.fixed-left,
.fixed_nav {
    background-color: #270202;
}

.fixed-left .inner {
    width: 70%;
    max-width: 500px;
    color: #fff;
}

.fixed-left .inner .ttl {
    font-family: "Forevs", serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 30px;
    text-align: center;
}

.fixed-left .inner .sub {
    margin: 25px auto 40px;
    font-size: 20px;
}

.fixed-left .inner .txt {
    font-size: 20px;
    line-height: 1.5;
}

.fixed_nav {
    display: grid;
    width: calc(50% - 300px);
    height: 100vh;
    margin-top: 9rem;
    place-items: center;
}

.fixed_nav a:hover {
    opacity: 0.7;
}

.color_list {
    width: 60%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.color_list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.color-img {
    display: block;
    max-width: 150px;
    width: 70%;
}

.color-name {
    display: block;
    width: 90%;
    padding: 0 4%;
    position: relative;
    color: #fff;
    font-size: 18px;
}

/* mainImg */
.mainImg {
    position: relative;
    height: auto;
    top: 0;
    margin: 0px auto;
}

.mainImg img {
    width: 100%;
    height: auto;
}

/* mainHead */
.mainHead {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mainHead .logo-img {
    position: absolute;
    bottom: 43%;
    left: 4%;
    width: 25%;
    display: flex;
    flex-direction: column;
}

.mainHead .txt {
    position: absolute;
    left: 83.33%;
    top: 50%;
    width: 181.11px;
    margin-left: calc(-90.555px + 3px);
    margin-top: -40px;
    text-align: center;
    color: #fff;
}

.mainHead .txt p {
    font-family: "Forevs", serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.mainHead .txt p:nth-child(1) {
    font-size: 16px;
    line-height: 1.5;
}

.mainHead .txt p:nth-child(2) {
    font-size: 20px;
    margin-top: 10px;
}

/* main */
.main {
    background-color: #530201;
    position: relative;
    z-index: 1;
    letter-spacing: 0.22em;
    color: #fff;
}

.pane-footer {
    background-color: #fff;
}

@media screen and (max-width: 768px) {
    html {
        scroll-padding-top: 50px;
    }

    body {
        background-color: #ededed;
    }

    .pcOnly {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .pane-main {
        margin-top: 0px;
        padding-bottom: 1px;
    }
}

/*アニメーション*/

/*下から上に*/
.slideUp {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.slideUp.js-actived {
    opacity: 1;
    transform: translateY(0);
}

/*左から右に*/
.slideRight {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slideRight.js-actived {
    opacity: 1;
    transform: translateX(0);
}

/* ふわっと表示用 */
.fadeIn {
    opacity: 0;
    transform: scale(0.95);
    /* 少し小さくしておく */
    transition: all 0.8s ease;
}

.fadeIn.js-actived {
    opacity: 1;
    transform: scale(1);
}

/* 子要素 下からふわっと表示 */
.fadeInChild {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.fadeInChild.js-actived {
    opacity: 1;
    transform: translateY(0);
    /* 元の位置に移動 */
}

/*右を先に、右が完全に表示されてから左を表示*/
.fadeRightStart,
.fadeLeftStart {
    opacity: 0;
    transition: all 0.8s ease;
}

.fadeRightStart {
    margin-left: 40px;
}

.fadeLeftStart {
    margin-right: 40px;
}

.fadeActive {
    opacity: 1;
    margin-left: 0;
    margin-right: 0;
}

.fadeActive {
    opacity: 1;
    margin-left: 0;
    margin-right: 0;
}

.fadeCol {
    opacity: 0;
    transition: all 0.8s ease;
}

.fadeColActive {
    opacity: 1;
}

.zoomDown {
    opacity: 0;
}

.zoomDown.js-actived {
    transform: scale(1.05);
    -webkit-animation: zoomDown 1s ease-in-out forwards;
    animation: zoomDown 1s ease-in-out forwards;
}

@keyframes zoomDown {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/*汎用CSS ここまで */
.fadeBgWrapper {
    position: relative;
    overflow: hidden;
}

.fadeBg306,
.fadeBg307,
.fadeBg308,
.fadeBg606,
.fadeBg607 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.0s ease;
    z-index: -1;
}

.fadeBg306 {
    background-image: url('../img/butter-beige-bg.png');
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
}

.fadeBg307 {
    background-image: url('../img/cinnmon-beige-bg.png');
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
}

.fadeBg308 {
    background-image: url('../img/chai-beige-bg.png');
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
}

.fadeBg606 {
    background-image: url('../img/fluffy-pink-bg.png');
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
}

.fadeBg607 {
    background-image: url('../img/glassy-clear-bg.png');
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
}

.fadeBgWrapper .fadeBgWrapper-content {
    position: relative;
    z-index: 1;
    padding: 3%;
    color: #fff;
}

.fadeBg306.js-actived,
.fadeBg307.js-actived,
.fadeBg308.js-actived,
.fadeBg606.js-actived,
.fadeBg607.js-actived {
    opacity: 1;
    transform: translateY(0);
}

.arrow {
    width: 12%;
}

.sticky-area {
    position: sticky;
    top: -547px;
    margin: 0px auto;
    background-color: #530201;
}

.ttl-area {
    padding: 60px 10px 80px 10px;
    background-color: #530201;
    color: #fff;

}

.ttl-area .ttl p {
    font-family: "Forevs", serif;
    line-height: 1.6;
}

.ttl-area .ttl p:nth-child(1) {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.ttl-area .ttl p:nth-child(2) {
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.ttl-area .txt p {
    font-size: 18px;
}

.image-container {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.overlay-text {
    position: absolute;
    padding: 5px;
    right: 0;
    bottom: clamp(5%, 8vw, 10%);
    width: 50%;
    text-align: center;
    line-height: 1.4;
}

.overlay-text p {
    font-family: "Forevs", serif;
    font-weight: 400;
}

.mlr .overlay-text {
    color: #fff;
}

.pog .overlay-text {
    color: #5E5E5E;
}

.overlay-text p {
    font-size: 16px;
}

.overlay-text .arrow img {
    display: block;
    margin: 10px auto 0;
    width: 30px;
}

.overlay-text .arrow._g img {
    transform: rotate(360deg);
}

.prd-link {
    margin: 20px 0 80px;
    letter-spacing: 0.05em;
}

.makeup-look .prd-link {
    font-family: 'DM Sans', sans-serif;
}

.prd-link .btn-circle {
    font-size: clamp(16px, 5vw, 30px);
    display: inline-block;
    padding: 5px 80px;
    border: 1px solid #fff;
    border-radius: 9999px;
    color: #fff;
    transition: 0.3s;
}

.makeup-look .prd-link .btn-circle {
    font-size: clamp(10px, 2vw, 16px);
}

.prd-ttl-area {
    padding: 10% 1.67% 10% 1.67%;
    color: #fff;
}

.glassy-clear .prd-ttl-area {
    color: #530201;
}

.prd-ttl-area .prd-ttl p {
    font-family: "Forevs", serif;
    line-height: 1.6;
}

.prd-ttl-area .prd-ttl p:nth-child(1) {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
    letter-spacing: 0.05em;
}

.prd-ttl-area .prd-ttl p:nth-child(2) {
    font-size: clamp(26px, 5vw, 40px);
    font-weight: 400;
    margin: 2.5% 0 7.5% 0;
    letter-spacing: 0.05em;
}

.prd-ttl-area .prd-txt p {
    font-size: clamp(14px, 2vw, 20px);
    font-family: 'Zen Old Mincho', serif;
}

.mdl {
    padding: 0 7%;
}

a img:hover {
    opacity: 1 !important;
    /* ホバーしても薄くならない */
}

.buy-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 9999px;
    background-color: transparent;
    box-sizing: border-box;
    font-size: clamp(10px, 2vw, 16px);
    margin-top: 10px;
    cursor: pointer;
}

.buy-link .buy-text {
    flex: 1;
    color: #fff;
    letter-spacing: 0.05em;
}

.buy-link .btn-buy {
    display: inline-block;
    padding: 1% 10% 1% 10%;
    border-radius: 9999px;
    background-color: #fff;
    color: #530201;
    transition: 0.3s;
    margin: -2px;
    font-size: clamp(12px, 2vw, 18px);
}

.prd-desc {
    font-size: clamp(10px, 2.5vw, 18px);
    padding: 6.67% 3.33%;
    font-family: 'Zen Old Mincho', serif;
    white-space: nowrap;
}

.howto {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 2%;
    margin-top: 5%;
    gap: 20px;
}

.howto p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.howto-item {
    flex: 1;
    text-align: center;
    min-width: 0;
}

.howto-item img {
    width: 100%;
    height: auto;
    border: 2px solid #fff;
    margin-bottom: 10px;
    display: block;
}

.howto-item p {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(12px, 2vw, 18px);
    color: #fff;
    margin: 0;
    width: 100%;
    gap: 20px;
}

.howto-item p::before,
.howto-item p::after {
    content: "";
    flex: 1;
    height: 0.8px;
    background-color: #fff;
    margin: 0 -10px;
}

.howto-item:first-child p::before,
.howto-item:last-child p::after {
    background-color: transparent;
}

.oil-gloss .txt-eye::after {
    width: 170%;
}

.how-to-guide {
    margin-top: 40px;
}

.how-to-guide p.ttl {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 4%;
}

.guide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0 30px;
    align-items: stretch;
    margin-bottom: 10px;
    width: 100%;
}

.products.clm3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0 30px;
    align-items: stretch;
    margin-bottom: 10%;
}

.products.clm2 {
    width: 69.3%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 30px;
    align-items: stretch;
    margin-bottom: 10%;
}

.guide-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.guide-item p {
    color: #fff;
}

.guide-item .desc {
    font-family: "Noto Sans", sans-serif;
    font-size: clamp(7px, 1vw, 10px);
    display: flex;
    align-items: start;
    justify-content: center;
    text-align: center;
    line-height: 1.8;
}

.butter-beige .guide-item .desc {
    min-height: 8em;
}

.cinnamon-beige .guide-item .desc {
    min-height: 10em;
}

.chai-beige .guide-item .desc {
    min-height: 9em;
}

.butter-beige,
.cinnamon-beige,
.chai-beige,
.fluffy-pink,
.glassy-clear {
    margin-bottom: 80px;
}

.guide .guide-item img {
    width: 100%;
    height: auto;
    margin-bottom: 5%;
}

p.guide-title,
p.guide-text,
p.desc {
    font-size: clamp(8px, 2vw, 12px);
    font-family: "Forevs", sans-serif;
    letter-spacing: 0.1em;
}

p.guide-title {
    margin-bottom: 1%;
}

p.guide-text {
    white-space: nowrap;
}

.check-link {
    margin-top: 8%;
}

.check-link .btn-circle {
    background-color: #fff;
    font-size: clamp(12px, 3vw, 14px);
    display: inline-block;
    padding: 1% 2%;
    border: 2px solid #fff;
    border-radius: 9999px;
    color: #530201;
    transition: 0.3s;
    width: 80%;
    letter-spacing: 0.1em;
}

a.back {
    color: #fff;
    font-size: clamp(10px, 5vw, 14px);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.makeup-look {
    margin-bottom: 80px;
}

.makeup-look .look-ttl {
    margin: 120px 0 40px 0;
}

.makeup-look .look-ttl p {
    font-family: "Forevs", serif;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.makeup-look .look-ttl p:nth-child(1) {
    font-size: clamp(20px, 5vw, 30px);
}

.makeup-look .look-ttl p:nth-child(2) {
    font-size: clamp(26px, 5vw, 38px);
}

/* swiper */
.swiper-container {
    position: relative;
    width: 100%;
    margin-bottom: 80px;
}

.swiper-slide {
    width: 55% !important;
    max-width: 430px;
}

.swiper-slide img {
    width: 100%;
    height: auto;
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: opacity 0.3s;
    transform: translate3d(0, 0, 0);
    z-index: 10 !important;
    bottom: -30px !important;
    left: 0;
    width: 100%;
}

.swiper-pagination-bullet {
    margin: 0 3px !important;
    width: 12% !important;
    max-width: 84px;
    height: 4px !important;
    background: #fff !important;
    border-radius: 0 !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: #848484 !important;
    opacity: 1;
}

.bread {
    font-size: 8px;
    letter-spacing: 0.05em;
    margin-bottom: 100px;
    color: #fff;
    line-height: 1.8;
    font-family: 'DM Sans', sans-serif;
    width: 100vw;
    max-width: 100vw;
    overflow-x: auto;
}

.bread ol {
    display: flex;
    flex-wrap: nowrap;
    padding: 0 16px;
    margin: 0;
    width: max-content;
    min-width: 100%;
}

.bread li a {
    color: #fff;
}

.mdl a:hover {
    opacity: 1;
}

.mdl a:nth-of-type(2):hover {
    opacity: 0.7;
}

@media screen and (max-width: 768px) {
    .pcOnly {
        display: none;
    }

    .mainHead .txt {
        right: clamp(1%, 3vw, 3%);
    }
}

@media (max-width: 600px) {
    .mainHead .txt p:nth-child(1) {
        font-size: clamp(8px, 2vw, 12px);
        line-height: 1.5;
    }

    .mainHead .txt p:nth-child(2) {
        font-size: clamp(12px, 3vw, 16px);
        margin-top: 4%;
        line-height: 1.5;
    }

    .overlay-text p {
        font-size: clamp(12px, 3vw, 16px);
    }

    .overlay-text .arrow img {
        width: clamp(20px, 5vw, 30px);
        margin-top: clamp(5px, 1vw, 10px);
    }

    .guide,
    .products.clm2 {
        padding: 0 10px;
    }

    .products.clm2 {
        width: 67.5%;
    }

    .prd-desc {
        padding: 20px 10px
    }

    .check-link .btn-circle {
        width: 100%;
    }

    .howto {
        gap: 10px;
    }
}