@charset "UTF-8";

#main-contents {
    padding: 100px 0 30px;
}

.container {
    width: 100% !important;
}

.maam-float-nav {
    transition: opacity .45s ease, visibility .45s ease;
}

.maam-float-nav.is-hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.slick-slideshow {
    display: none;
}


#maam-summer-lp {
    --bg: #f7f8f4;
    --paper: #ffffff;
    --ink: #24322e;
    --sub: #66746e;
    --line: rgba(36, 50, 46, 0.18);
    --mist: #dfece8;
    --blue: #d8e9ef;
    --green: #dfe9d8;
    --accent: #8aa79c;
    --max: 1120px;
    color: var(--ink);
    background: var(--bg);
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
    letter-spacing: 0.06em;
    overflow: hidden;
}

#maam-summer-lp * {
    box-sizing: border-box;
}

#maam-summer-lp img {
    width: 100%;
    display: block;
}

#maam-summer-lp a {
    color: inherit;
    text-decoration: none;
}

.maam-inner {
    width: min(92%, var(--max));
    margin: 0 auto;
}

.maam-en {
    font-family: math;
    letter-spacing: 0.16em;
    font-size: 11px;
    color: var(--accent);
    text-transform: uppercase;
}

.maam-fade {
    opacity: 0;
    transform: translateY(42px);
    transition: opacity 1.15s ease, transform 1.15s cubic-bezier(.19, 1, .22, 1);
}

.maam-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.maam-hero {
    min-height: 100svh;
    position: relative;
    display: grid;
    place-items: center;
    padding: 80px 0 90px;
    background:
        radial-gradient(circle at 20% 20%, rgba(216, 233, 239, .95), transparent 32%),
        radial-gradient(circle at 78% 14%, rgba(223, 236, 232, .95), transparent 30%),
        linear-gradient(180deg, #fbfcf9 0%, var(--bg) 100%);
}

.maam-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .3;
    background-image:
        linear-gradient(120deg, transparent 0 48%, rgba(138, 167, 156, .22) 49%, transparent 50%),
        linear-gradient(60deg, transparent 0 47%, rgba(255, 255, 255, .65) 49%, transparent 50%);
    background-size: 180px 180px, 240px 240px;
    animation: maamMist 18s linear infinite;
}

@keyframes maamMist {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-80px, -60px, 0);
    }
}


.maam-hero__video {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.maam-hero__video video {
    height: 100%;
    object-fit: cover;
    filter:
        saturate(.8) brightness(1.05) blur(.3px);
    transform: scale(1.05);
}

/* 上から白っぽい光を重ねる */
.maam-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .38) 0%,
            rgba(247, 248, 244, .22) 40%,
            rgba(247, 248, 244, .72) 100%);
    z-index: 0;
    pointer-events: none;
}




.maam-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: min(88%, 760px);
}

.maam-hero__date {
    font-size: .9rem;
    margin-bottom: 18px;
    font-family: math;
}

.maam-hero__title {
    font-size: 4.5rem;
    color: #34879bed;
}

.maam-hero__title span {
    display: inline-block;
    overflow: hidden;
}

.maam-hero__title i {
    display: inline-block;
    font-style: normal;
    transform: translateY(105%);
    animation: maamTitleUp 1.2s cubic-bezier(.19, 1, .22, 1) forwards;
}

.maam-hero__title span:nth-child(2) i {
    animation-delay: .18s;
}

@keyframes maamTitleUp {
    to {
        transform: translateY(0);
    }
}

.maam-hero__lead {
    margin: 35px auto 0;
    line-height: 2.5;
    font-size: 1rem;
    color: #161f31;
    max-width: 560px;
    opacity: 0;
    animation: maamFadeIn 1.2s ease 1s forwards;
}

@keyframes maamFadeIn {
    to {
        opacity: 1;
    }
}

.maam-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: var(--accent);
    writing-mode: vertical-rl;
    letter-spacing: .18em;
    z-index: 99;
}

.maam-scroll::after {
    content: "";
    display: block;
    width: 1px;
    height: 58px;
    margin: 14px auto 0;
    background: var(--accent);
    transform-origin: top;
    animation: maamScrollLine 1.8s ease-in-out infinite;
}

@keyframes maamScrollLine {

    0%,
    100% {
        transform: scaleY(.3);
        opacity: .35;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.maam-intro {
    padding: 120px 0 78px;
    text-align: center;
}

.maam-intro h2 {
    font-size: clamp(22px, 3.6vw, 42px);
    font-weight: 400;
    line-height: 1.7;
    margin: 18px 0 28px;
}

.maam-intro p {
    max-width: 660px;
    margin: 0 auto;
    line-height: 2.3;
    color: var(--sub);
    font-size: 14px;
}

.maam-category-nav {
    padding: 34px 0 110px;
}

.maam-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.maam-category-card {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    background: var(--mist);
}

.maam-category-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s cubic-bezier(.19, 1, .22, 1);
}

.maam-category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .36));
}

.maam-category-card:hover img {
    transform: scale(1.055);
}

.maam-category-card__text {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    z-index: 1;
    color: #fff;
}

.maam-category-card__text .maam-en {
    color: rgba(255, 255, 255, .78);
}

.maam-category-card__text h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    margin: 10px 0 12px;
}

.maam-category-card__text p {
    font-size: 13px;
    line-height: 2;
    margin: 0;
}

.maam-category-section {
    padding: 120px 0;
}

.maam-category-section--wear {
    background: var(--paper);
}

.maam-category-section--ket {
    background: linear-gradient(180deg, #eef4f1 0%, var(--bg) 100%);
}

.maam-section-layout {
    display: grid;
    grid-template-columns: 34% 1fr;
    gap: 7vw;
    align-items: start;
}

.maam-section-copy {
    position: sticky;
    top: 80px;
    padding-top: 24px;
}

.maam-section-copy h2 {
    font-size: 2rem;
    line-height: 1.42;
    font-weight: 400;
    margin: 18px 0 26px;
}

.maam-section-copy p {
    line-height: 2.25;
    color: var(--sub);
    font-size: 14px;
    margin: 0 0 28px;
}

.maam-mini-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    letter-spacing: .16em;
    color: var(--accent);
}

.maam-mini-link:hover {
    color: #d15400 !important;
}

.maam-mini-link::after {
    content: "";
    width: 56px;
    height: 1px;
    background: currentColor;
    transition: width .35s ease;
}

.maam-mini-link:hover::after {
    width: 90px;
}

.maam-item-list {
    display: grid;
    gap: 34px;
}

.maam-item-card {
    display: grid;
    grid-template-columns: 42% 1fr;
    gap: 28px;
    align-items: center;
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--line);
    padding: 16px;
}

.maam-category-section--ket .maam-item-card {
    background: rgba(255, 255, 255, .58);
}

.maam-item-card__img {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--blue);
}

.maam-item-card__img img {
    height: 100%;
    object-fit: cover;
    transition: transform 1.3s cubic-bezier(.19, 1, .22, 1);
}

.maam-item-card:hover img {
    transform: scale(1.045);
}

.maam-item-card__num {
    display: block;
    font-size: 11px;
    color: var(--accent);
    margin-bottom: 16px;
    letter-spacing: .16em;
}

.maam-item-card h3 {
    font-size: clamp(20px, 2.4vw, 30px);
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 14px;
}

.maam-item-card p {
    font-size: 13px;
    color: var(--sub);
    line-height: 2;
    margin: 0 0 18px;
}

.maam-item-card__name {
    font-size: 12px;
    color: var(--ink);
    letter-spacing: .12em;
}

.maam-cta {
    padding: 130px 0 150px;
    text-align: center;
    background: linear-gradient(rgba(247, 248, 244, .78), rgba(247, 248, 244, .92)), url('https://gigaplus.makeshop.jp/maam/img/sample/summer-bg.jpg') center/cover no-repeat;
}

.maam-cta h2 {
    font-size: 2.5rem;
    line-height: 2;
    font-weight: 400;
    margin: 0 0 28px;
    color: #34879bed;
}

.maam-cta p {
    color: var(--sub);
    line-height: 2.2;
    margin-bottom: 200px;
    font-size: 14px;
}


.maam-float-nav {
    position: fixed;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: grid;
    gap: 12px;
}

.maam-float-nav a {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    background: transparent;
    transition: background .3s ease, transform .3s ease;
}

.maam-float-nav a:hover,
.maam-float-nav a.is-current {
    background: var(--accent);
    transform: scale(1.3);
}




/* ------ ホームへ戻る button ------ */
.circle_btn05 {
    position: relative;
    display: flex;
    justify-content: center;
    /* 真ん中配置 */
    align-items: center;
    width: fit-content;
    margin: 50px auto 100px;
    /* 中央寄せ */
    cursor: pointer;
}

/* リンク全体をクリック可能に */
.circle_btn05 .circle_btn05-txt {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 72px 0 0;
    text-decoration: none;
    z-index: 2;
}

/* アイコン位置を固定 */
.circle_btn05 .circle_btn05-icon {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
}

.circle_btn05 .circle_btn05-icon .circle_btn05-circle {
    transition: transform 1s cubic-bezier(.23, 1, .32, 1);
    height: 48px;
}

.circle_btn05 .circle_btn05-icon .circle_btn05-circle svg {
    transition: transform .75s cubic-bezier(.215, .61, .355, 1);
    width: 100%;
    height: 100%;
    position: relative;
}

.circle_btn05 .circle_btn05-icon .circle_btn05-circle svg path {
    stroke-width: 2;
    transition: stroke-width .75s cubic-bezier(.215, .61, .355, 1);
}

.circle_btn05 .circle_btn05-icon .circle_btn05-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
}

.circle_btn05 .circle_btn05-icon .circle_btn05-arrow svg path {
    stroke-width: 2;
    stroke: #5e5e5e;
}

.circle_btn05 .circle_btn05-circle-itm {
    background-color: #5e5e5e;
    height: 48px;
}

/* hover */
.circle_btn05:hover .circle_btn05-txt {
    transform: translateX(-12px);
    transition: transform .5s cubic-bezier(.39, .575, .565, 1);
}

.circle_btn05:hover .circle_btn05-icon .circle_btn05-circle {
    transform: rotate(1turn);
    transition: transform .75s cubic-bezier(.23, 1, .32, 1);
}

.circle_btn05:hover .circle_btn05-icon .circle_btn05-circle svg {
    transform: scale(1.5);
}




@media (max-width: 780px) {
    .maam-hero {
        min-height: 80svh;
        padding: 70px 0 80px;
    }

    .maam-hero__lead {
        font-size: .8rem;
        line-height: 2.05;
    }

    .maam-hero__title {
        font-size: 2.3rem;
    }

    .maam-scroll {
        bottom: 50px;
    }

    .maam-intro {
        padding: 100px 0;
    }

    .maam-intro h2 {
        margin: 30px 0 50px;
    }

    .maam-category-grid {
        grid-template-columns: 1fr;
    }

    .maam-category-card {
        min-height: 360px;
    }

    .maam-section-layout {
        display: block;
    }

    .maam-section-copy {
        position: relative;
        top: auto;
        padding-top: 0;
        margin-bottom: 42px;
    }

    .maam-item-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .maam-float-nav {
        display: none;
    }

    .maam-cta {
        padding: 94px 0 110px;
    }

    .maam-cta h2 {
        font-size: 1.7rem;

    }
}