:root {
    --key-font: "marydale", sans-serif;
    --text-font: "Zen Kaku Gothic Antique", sans-serif;
    --point-font: "neue-haas-grotesk-display", sans-serif;
}

:root {
    --key-color: #0033FF;
    --secondary-color: #fff;
}

p {
    font-family: var(--text-font);
    font-weight: 400;
    font-style: normal;
    font-size: 11px;
}

.ClassNameBuy .item-d-none {
    display: none;
}

.sp {
    display: block;
}

.pc {
    display: none;
}

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

    .pc {
        display: block;
    }
}

/* mv */
.visual__block {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: fit-content;
    padding-bottom: 64px;
}

@media screen and (min-width:768px) {
    .visual__block.pc {
        display: flex;
        flex-flow: nowrap;
        align-items: center;
        padding-bottom: calc(100 / 1280 * 100vw);
    }

    .visual__block-img {
        width: 100%;
        height: fit-content;
    }
}

.visual__block h1 {
    width: calc(130 / 375 * 100vw);
    position: absolute;
    top: calc(24 / 375 * 100vw);
    left: calc(229 / 375 * 100vw);
    z-index: 100;
}

@media screen and (min-width:768px) {
    .visual__block h1 {
        width: calc(207 / 1280 * 100vw);
        position: absolute;
        top: calc(60 / 1280 * 100vw);
        left: calc(1013 / 1280 * 100vw);
        z-index: 100;
    }
}

.visual__block-logo {
    display: flex;
    flex-flow: column;
    width: calc(87 / 375 * 100vw);
    position: absolute;
    z-index: 100;
    left: calc(276 / 375 * 100vw);
    top: calc(431 / 375 * 100vw);
}

.visual__block-logo li:first-child {
    margin: 0 auto;
    margin-bottom: calc(16 / 375 * 100vw);
    width: calc(53 / 375 * 100vw);
}

.visual__block-logo li:last-child {
    margin: 0 auto;
    margin-top: calc(20 / 375 * 100vw);
    width: calc(64 / 375 * 100vw);
}

@media screen and (min-width:768px) {
    .visual__block-logo {
        display: flex;
        flex-flow: nowrap;
        width: calc(300 / 1280 * 100vw);
        position: absolute;
        z-index: 100;
        left: calc(940 / 1280 * 100vw);
        top: calc(874 / 1280 * 100vw);
        align-items: center;
        justify-content: space-between;
    }

    .visual__block-logo li:first-child {
        margin: 0;
        margin-bottom: 0;
        width: calc(63 / 1280 * 100vw);
    }

    .visual__block-logo li {
        margin: 0;
        margin-bottom: 0;
        width: calc(104 / 1280 * 100vw);
    }

    .visual__block-logo li:last-child {
        margin: 0;
        margin-bottom: 0;
        width: calc(76 / 1280 * 100vw);
    }
}

.swiper {
    width: 100%;
    height: auto;
}

.swiper-slide img {
    width: 100%;
    height: auto;
}

/* fade用 */
.swiper-fade .swiper-slide {
    pointer-events: none;
}

.swiper-fade .swiper-slide-active {
    pointer-events: auto;
}

/* fadeIn */
.fadeIn {
    opacity: 0;
    transform: translateY(0);
}

.fadeIn.animated {
    opacity: 1;
    transform: none;
    transition: opacity 2s ease 0.1s, transform 2s ease 0.1s;
}

/* fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-active {
    opacity: 1;
    transform: translateY(0);
}

.lookBlock02.lookBlock__contents ul.lookBlock__list .fade-in:nth-child(2),
.lookBlock04.lookBlock__contents ul.lookBlock__list .fade-in:nth-child(2) {
    transition-delay: 0.5s;
}

.lookBlock02.lookBlock__contents ul.lookBlock__list .fade-in:nth-child(3),
.lookBlock04.lookBlock__contents ul.lookBlock__list .fade-in:nth-child(3) {
    transition-delay: 1s;
}

.lookBlock02.lookBlock__contents ul.lookBlock__list .fade-in:nth-child(4),
.lookBlock04.lookBlock__contents ul.lookBlock__list .fade-in:nth-child(4) {
    transition-delay: 1.5s;
}

/* sticky */
.lookBlock {
    position: relative;
    min-height: 100vh;
}

.lookBlock__sticky-element {
    position: absolute;
    top: 0;
    z-index: 999;
    height: 152px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-left: calc(355 / 375 * 100vw);
    transition: opacity 0.2s linear;
}

@media screen and (min-width:768px) {
    .lookBlock__sticky-element {
        height: 215px;
        margin-left: calc(1186 / 1280 * 100vw);
        transition: opacity 0.2s linear;
        gap: 24px;
    }
}

.lookBlock__sticky-element.is-fixed {
    position: fixed;
}

.lookBlock__sticky-element.is-stop {
    position: absolute;
    bottom: 0;
    top: 0;
}

.lookBlock__sticky-element.is-hide {
    opacity: 0;
    pointer-events: none;
}

.lookBlock__sticky-element li a {
    writing-mode: vertical-rl;
    font-family: var(--point-font);
    color: var(--key-color);
    font-weight: 500;
    font-size: 10px;
}

@media screen and (min-width:768px) {
    .lookBlock__sticky-element li a {
        font-size: 12px;
    }
}

/* credit */

.lookBlock__creditList {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-right: 30px;
    z-index: 3;
    color: var(--secondary-color);
}

.lookBlock__creditList p {
    font-family: var(--point-font);
    font-weight: 400;
}

.credit__btn {
    margin-top: 6px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
    align-items: center;
}

li.ClassNameLi.custum {
    margin-bottom: 5px;
}

li.ClassNameLi.custum p.ClassNameItem {
    margin-bottom: 0;
    line-height: 100%;
}

li.ClassNameLi.custum .credit__btn {
    margin-top: 0;
    line-height: 100%;
}

li.ClassNameLi.custum p.ClassNamePrice {
    line-height: 100%;
}

.lookBlock__creditList-detail .credit li {
    display: flex;
    flex-flow: nowrap;
    align-items: center;
    gap: 3px;
}

.lookBlock__creditList-detail .credit li p.ClassNameItem {
    margin-top: 0;
    line-height: 100%;
    font-family: var(--point-font);
}

.ClassNameBuy a {
    font-weight: 700;
    border-bottom: solid 1px;
    font-size: 11px;
    font-family: var(--point-font);
}

.credit__btn p.ClassNamePrice {
    margin-top: 0 !important;
    font-family: var(--point-font);
}

.ListItemBuy .item-d-none {
    display: none;
}

.lookBlock__images {
    position: relative;
}

.lookBlock__images img {
    pointer-events: none;
}

.lookBlock__images--noneCredit {
    pointer-events: none;
}

.lookBlock__images.active .lookBlock__credits {
    opacity: 1;
    pointer-events: all;
}

.lookBlock__images.credit::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: url(https://baycrews.jp/src/feature/20260415_lessage/assets/images/plus.svg) center / contain no-repeat;
    transition: 0.5s;
    z-index: 3;
}

@media screen and (min-width:768px) {
    .lookBlock__images.credit::after {
        content: "";
        display: block;
        position: absolute;
        bottom: 20px;
        right: 20px;
        width: 38px;
        height: 38px;
        background: url(https://baycrews.jp/src/feature/20260415_lessage/assets/images/plus.svg) center / contain no-repeat;
        transition: 0.5s;
        z-index: 3;
    }
}

.lookBlock__images.credit.active::after {
    transform: rotate(45deg);
}

.lookBlock__images.lookBlock__images--noneCredit.credit::after {
    content: none;
}

.lookBlock__credits {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: grid;
    align-items: end;
    padding: 10% 5% 5%;
    box-sizing: border-box;
    background: rgba(0, 51, 255, 0.3);
    color: var(--secondary);
    font-size: 11px;
    opacity: 0;
    transition: opacity 0.6s;
    z-index: 2;
    backface-visibility: hidden;
    transform: translateZ(0);
    contain: paint;
    -webkit-tap-highlight-color: transparent;
}

/* content */

.lead__block {
    display: flex;
    flex-flow: nowrap;
    align-items: start;
    width: 90%;
    max-width: 345px;
    margin: 0 auto;
    justify-content: space-between;
    padding-bottom: 80px;
}

@media screen and (min-width:768px) {
    .lead__block {
        max-width: 1000px;
        width: calc(1000 / 1280 * 100vw);
        align-items: flex-end;
        padding-bottom: calc(120 / 1280 * 100vw);
    }
}

.lead__block-text {
    width: calc(235 / 375 * 100vw);
    line-height: 180%;
}

@media screen and (min-width:768px) {
    .lead__block-text {
        width: calc(700 / 1280 * 100vw);
        max-width: 700px;
    }
}

.lead__block-img {
    width: calc(80 / 375 * 100vw);
    max-width: 80px;
}

@media screen and (min-width:768px) {
    .lead__block-img {
        width: calc(160 / 1280 * 100vw);
        max-width: 160px;
    }
}


.lookBlock__contents {
    margin-bottom: calc(100 / 375 * 100vw);
}

@media screen and (min-width:768px) {
    .lookBlock__contents {
        margin-bottom: calc(200 / 1280 * 100vw);
    }
}

@media screen and (min-width:768px) {

    .lookBlock__contents.lookBlock01,
    .lookBlock03.lookBlock__contents,
    .lookBlock04.lookBlock__contents .lookBlock__images.credit,
    .lookBlock05.lookBlock__contents .lookBlock__images.credit {
        max-width: 1000px;
        width: calc(1000 / 1280 * 100vw);
        margin-left: auto;
        margin-right: auto;
    }
}

.lookBlock__contents.lookBlock02 {
    max-width: 97%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width:768px) {
    .lookBlock__contents.lookBlock02 {
        max-width: 100%;
        width: 100%;
    }
}

.lookBlock__contents h2 {
    text-align: right;
    font-family: var(--key-font);
    color: var(--key-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

@media screen and (min-width:768px) {
    .lookBlock__contents h2 {
        font-size: 28px;
    }
}

@media screen and (min-width:768px) {
    .lookBlock__contents h2 {
        width: calc(1000 / 1280* 100vw);
        margin-left: auto;
        margin-right: auto;
        max-width: 1000px;
    }
}

.detail-title {
    font-family: var(--key-font);
    color: var(--key-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.lookBlock__creditList-detail {
    margin-top: 20px;
    width: 84%;
    margin-left: auto;
    margin-right: auto;
}

.lookBlock__contents.lookBlock02 .lookBlock__creditList-detail {
    width: 87%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width:768px) {
    .lookBlock__creditList-detail {
        margin-top: calc(32 / 1280 * 100vw);
    }
}

@media screen and (min-width:768px) {
    .lookBlock__creditList-detail {
        max-width: 550px;
        width: calc(550 / 1280 * 100vw);
        text-align: left;
        margin-right: 100%;
        margin-left: 0;
    }

    .lookBlock__contents.lookBlock02 .lookBlock__creditList-detail,
    .lookBlock__contents.lookBlock04 .lookBlock__creditList-detail,
    .lookBlock__contents.lookBlock05 .lookBlock__creditList-detail {
        max-width: 1000px;
        width: calc(1000 / 1280 * 100vw);
        text-align: left;
        margin: auto;
        margin-top: calc(32 / 1280 * 100vw);
    }
}

.lookBlock__creditList-detail p {
    line-height: 180%;
    margin-bottom: 5px;
}

.credit__btn p.ClassNamePrice {
    margin: 0;
}

.lookBlock__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
}

@media screen and (min-width:768px) {
    .lookBlock__list {
        flex-wrap: nowrap;
        gap: calc(8 / 1280* 100vw);
    }
}

.lookBlock__list li {
    width: calc((100% - 5px) / 2);
}

@media screen and (min-width:768px) {
    .lookBlock__list li {
        width: calc((100% - 5px) / 3);
    }
}

@media screen and (min-width:768px) {
    .lookBlock04.lookBlock__contents .lookBlock__list li {
        width: calc((100% - 5px) / 1);
    }
}

.lookBlock02 .detail-title {
    font-size: 10px;
    color: var(--key-color);
    font-family: var(--point-font);
    margin-top: 16px;
    margin-bottom: 8px;
    font-weight: 450;
}

.lookBlock02 .lookBlock__creditList-detail p {
    line-height: 180%;
    margin-top: 20px;
}

.lookBlock03.lookBlock__contents h2,
.lookBlock06.lookBlock__contents h2 {
    width: 90%;
    margin-inline: auto;
}

@media screen and (min-width:768px) {

    .lookBlock03.lookBlock__contents h2,
    .lookBlock06.lookBlock__contents h2 {
        width: 100%;
        margin-inline: 0;
    }
}

.lookBlock03 .lookBlock__images--noneCredit {
    margin-bottom: 5px;
}


@media screen and (min-width:768px) {
    .lookBlock03 .lookBlock__images--noneCredit {
        margin-bottom: calc(8 / 1280 * 100vw);
    }
}

.lookBlock04 .lookBlock__images--noneCredit {
    width: 345px;
    margin-left: auto;
    margin-bottom: 56px;
}

@media screen and (min-width:768px) {
    .lookBlock04 .lookBlock__images--noneCredit {
        width: calc(908 / 1280 * 100vw);
        max-width: 908px;
        margin-bottom: calc(160 / 1280 * 100vw);
    }
}

.lookBlock05 .lookBlock__images--noneCredit {
    width: 265px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 56px;
}

@media screen and (min-width:768px) {
    .lookBlock05 .lookBlock__images--noneCredit {
        width: calc(600 / 1280 * 100vw);
        max-width: 600px;
        margin-bottom: calc(160 / 1280 * 100vw);
    }
}

.lookBlock06 {
    position: relative;
    height: calc(672 / 375* 100vw);
    max-width: 100%;
}

@media screen and (min-width:768px) {
    .lookBlock06 {
        height: calc(1145 / 1280 * 100vw);
        max-height: 1145px;
        width: calc(800 / 1280 * 100vw);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;

    }
}

.lookBlock06 .lookBlock__image {
    position: relative;
}

.lookBlock06 .lookBlock__image .lookBlock__image01 {
    top: 0;
    left: 0;
    width: calc(200 / 375* 100vw);
    position: absolute;
}

.lookBlock06 .lookBlock__image .lookBlock__image02 {
    top: calc(78 / 375* 100vw);
    right: 0;
    width: calc(150 / 375* 100vw);
    position: absolute;
}

.lookBlock06 .lookBlock__image .lookBlock__image03 {
    top: calc(217 / 375* 100vw);
    left: 0;
    width: calc(205 / 375* 100vw);
    position: absolute;
}

@media screen and (min-width:768px) {
    .lookBlock06 .lookBlock__image .lookBlock__image01 {
        top: 0;
        left: calc(80 / 1280 * 100vw);
        width: calc(360 / 1280 * 100vw);
        max-width: 360px;
    }

    .lookBlock06 .lookBlock__image .lookBlock__image02 {
        top: calc(177 / 1280 * 100vw);
        right: 0;
        width: calc(313 / 1280 * 100vw);
        max-width: 313px;
    }

    .lookBlock06 .lookBlock__image .lookBlock__image03 {
        top: calc(350 / 1280 * 100vw);
        left: 0;
        width: calc(397 / 1280 * 100vw);
        max-width: 397px;
    }

}

.lookBlock06 .lookBlock__image-detail {
    padding-left: 10px;
}

.lookBlock06 .lookBlock__image-detail h2 {
    text-align: left;
    margin: 12px 0 4px;
}

@media screen and (min-width:768px) {
    .lookBlock06 .lookBlock__image-detail h2 {
        font-size: 20px;
    }

}

.lookBlock06 .lookBlock__image-detail p {
    text-align: left;
    font-size: 10px;
    font-weight: 700;
    line-height: 150%;
    font-family: var(--text-font);
}

.lookBlock06 .lookBlock__image03 .lookBlock__image-detail h2 {
    margin-bottom: 10px;
}

.footer img {
    margin-bottom: calc(64 / 375 * 100vw);
}

@media screen and (min-width:768px) {
    .footer img {
        margin-bottom: calc(80 / 1280 * 100vw);
    }
}

.footer {
    margin-bottom: calc(100 / 375 * 100vw);
}

@media screen and (min-width:768px) {

    .footer {
        margin-bottom: calc(100 / 1280 * 100vw);
    }
}

.footer h2 {
    text-align: center;
    color: var(--key-color);
    font-family: var(--key-font);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer h3 {
    font-size: 13px;
    margin-bottom: 5px;
    text-align: center;
    font-weight: 700;
    font-family: var(--text-font);
}

.footer p {
    font-size: 11px;
    text-align: center;
    line-height: 180%;
    font-weight: 400;
}

.footer .logo {
    width: 101px;
    margin: 100px auto 40px;
    display: block;
}

.footer .footer__stuff {
    font-size: 10px;
    font-family: var(--point-font);
    font-weight: 400;
    text-align: center;
    margin-bottom: 66px;
}

.footer .footer__stuff li {
    margin-bottom: 8px;
}

.footer .footer__stuff li:last-child {
    margin-bottom: 0;
}

.footer .footer__stuff span {
    font-size: 12px;
}

.footer .footer__copyRight {
    font-family: var(--point-font);
    font-weight: 400;
    margin-bottom: 100;
    font-size: 9px;
}