/* =========================================
RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        "Noto Sans JP",
        sans-serif;

    color: #10262b;

    background: #fff;

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

/* =========================================
VARIABLES
========================================= */

:root {

    --sns-main: #08b4c1;
    --sns-deep: #079ba8;
    --sns-light: #dff7f7;
    --sns-pale: #effafa;
    --sns-accent: #9fd4c7;
    --sns-yellow: #f0d66a;

}

/* =========================================
HEADER
========================================= */

.sns-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    padding: 28px 4vw;

    display: flex;
    justify-content: space-between;
    align-items: center;

    z-index: 1000;
}

.sns-logo {

    font-size: 40px;

    font-weight: 500;

    letter-spacing: .25em;
}

.sns-menu {

    width: 170px;
    height: 42px;

    display: flex;
    align-items: center;

    padding: 0 18px;

    border: none;
    border-radius: 999px;

    background:
        linear-gradient(100deg,
            #0db8c2,
            #9cc68e);

    color: #fff;

    cursor: pointer;
}

.sns-menu-icon {

    width: 24px;

    margin-right: auto;

    display: flex;
    flex-direction: column;

    gap: 5px;
}

.sns-menu-icon i {

    display: block;

    width: 23px;
    height: 1px;

    background: #fff;
}

.sns-menu > span:last-child {

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .16em;
}

/* =========================================
NAV
========================================= */

.sns-nav {

    position: fixed;

    inset: 0;

    z-index: 900;

    background:
        linear-gradient(135deg,
            #ffffff,
            #eefbfa);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-20px);

    transition:
        opacity .4s ease,
        visibility .4s ease,
        transform .4s ease;
}

.sns-nav.active {

    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.sns-nav-inner {

    width: min(900px, 88%);
}

.sns-nav-inner > p {

    margin-bottom: 40px;

    color: #777;

    letter-spacing: .25em;
}

.sns-nav-inner a {

    display: block;

    padding: 20px 0;

    border-bottom:
        1px solid rgba(0, 0, 0, .08);

    font-size: 38px;

    font-weight: 600;

    letter-spacing: .06em;

    transition:
        color .3s ease,
        padding-left .3s ease;
}

.sns-nav-inner a:hover {

    color: var(--sns-main);

    padding-left: 15px;
}

/* =========================================
COMMON
========================================= */

.sns-section-inner {

    position: relative;

    width: min(1160px, 88%);

    margin: 0 auto;
}

.section-label {

    margin-bottom: 18px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .25em;

    color: var(--sns-main);
}

/* =========================================
REVEAL
========================================= */

.reveal {
    transform: translateY(50px);

    transition:
        opacity 1s cubic-bezier(.22, 1, .36, 1),
        transform 1s cubic-bezier(.22, 1, .36, 1);
}

.reveal.is-visible {

    opacity: 1;

    transform: translateY(0);
}

/* =========================================
HERO
========================================= */

.sns-hero {

    position: relative;
    min-height: 130svh;
    padding-bottom: 200px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(135deg,
            #ffffff 0%,
            #eefbfa 55%,
            #f6ffff 100%);
}

.sns-hero-inner {

    position: relative;
    z-index: 5;

    width: min(1160px, 88%);

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr .85fr;

    gap: 80px;

    align-items: center;
}

.sns-label {

    margin-bottom: 25px;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: .28em;

    color: var(--sns-main);
}

.sns-hero-copy h1 {

    font-size: 60px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: .04em;
}

.sns-hero-description {
    margin-top: 35px;
    font-size: 16px;
    line-height: 2.3;
    letter-spacing: .08em;
    color: #506065;
}

/* =========================================
HERO GLOW
========================================= */

.sns-glow {

    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
}

.sns-glow-blue {

    width: 650px;
    height: 650px;

    left: -280px;
    bottom: -250px;

    background:
        radial-gradient(circle,
            rgba(9, 180, 193, .40) 0%,
            rgba(9, 180, 193, .16) 40%,
            transparent 72%);

    animation:
        snsBlueFloat 12s ease-in-out infinite;
}

.sns-glow-teal {

    width: 580px;
    height: 580px;

    right: -180px;
    top: -220px;

    background:
        radial-gradient(circle,
            rgba(133, 215, 201, .35) 0%,
            rgba(133, 215, 201, .12) 45%,
            transparent 72%);

    animation:
        snsTealFloat 15s ease-in-out infinite;
}

@keyframes snsBlueFloat {

    0%,
    100% {

        transform:
            translate(0, 0) scale(1);
    }

    50% {

        transform:
            translate(100px, -50px) scale(1.15);
    }

}

@keyframes snsTealFloat {

    0%,
    100% {

        transform:
            translate(0, 0) scale(1);
    }

    50% {

        transform:
            translate(-80px, 60px) scale(.9);
    }

}

/* =========================================
HERO VISUAL
========================================= */

.sns-hero-visual {

    position: relative;

    height: 560px;

    display: flex;

    justify-content: center;

    align-items: center;
}

/* =========================================
PHONE
========================================= */

.phone-phone {
    position: relative;

    width: 285px;
    height: 560px;

    border: 8px solid #18363b;

    border-radius: 38px;

    background: #fff;

    box-shadow:
        0 35px 80px rgba(0, 0, 0, .10);

    overflow: hidden;
}

.phone-top {
    position: absolute;

    z-index: 20;

    width: 88px;
    height: 23px;

    left: 50%;
    top: 7px;

    transform:
        translateX(-50%);

    border-radius: 20px;

    background: #18363b;
}

/* =========================================
SCREEN
========================================= */

.phone-screen {
    position: absolute;

    inset:
        38px 8px 8px;

    border-radius: 26px;

    overflow: hidden;

    background: #fff;

    color: #222;

    font-family:
        Arial,
        sans-serif;
}

/* =========================================
HEADER
========================================= */

.mock-sns-header {

    height: 48px;

    padding:
        0 13px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border-bottom:
        1px solid #eee;

    background: #fff;
}

.mock-logo {

    font-size: 17px;

    font-weight: 700;

    font-style: italic;

    letter-spacing: -.03em;
}

.mock-header-icons {

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 19px;
}

/* =========================================
STORIES
========================================= */

.mock-stories {

    height: 82px;

    display: flex;

    gap: 9px;

    padding:
        9px 10px;

    overflow: hidden;

    border-bottom:
        1px solid #eee;
}

.mock-story {

    flex: 0 0 auto;

    width: 52px;

    text-align: center;
}

.story-ring {

    width: 46px;
    height: 46px;

    margin: 0 auto 4px;

    padding: 2px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #0bb4bf,
            #6fd9cf,
            #f0d66a);
}

.story-ring img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border:
        2px solid #fff;

    border-radius: 50%;
}

.mock-story span {

    display: block;

    overflow: hidden;

    font-size: 7px;

    text-overflow: ellipsis;

    white-space: nowrap;
}

/* =========================================
POST USER
========================================= */

.mock-post-user {

    height: 47px;

    padding:
        6px 10px;

    display: flex;

    align-items: center;
}

.mock-avatar {

    width: 32px;
    height: 32px;

    border-radius: 50%;

    overflow: hidden;

    flex-shrink: 0;
}

.mock-avatar img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.mock-user-name {

    margin-left: 8px;

    display: flex;

    flex-direction: column;

    line-height: 1.3;
}

.mock-user-name strong {

    font-size: 9px;
}

.mock-user-name span {

    font-size: 6px;

    color: #777;
}

.mock-more {

    margin-left: auto;

    font-size: 15px;
}

/* =========================================
POST IMAGE
========================================= */

.mock-post-image {

    position: relative;

    width: 100%;

    aspect-ratio: 1 / .88;

    overflow: hidden;

    background:
        #e9f7f7;
}

.mock-post-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

/* =========================================
ACTIONS
========================================= */

.mock-actions {

    padding:
        8px 10px 4px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 18px;
}

.mock-actions > div {

    display: flex;

    gap: 12px;
}

/* =========================================
TEXT
========================================= */

.mock-likes {

    padding:
        0 10px;

    font-size: 8px;

    font-weight: 700;
}

.mock-caption {

    padding:
        5px 10px;

    font-size: 7px;

    line-height: 1.5;
}

.mock-caption strong {

    margin-right: 4px;
}

/* =========================================
BOTTOM NAV
========================================= */

.mock-bottom-nav {

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 42px;

    padding:
        0 14px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border-top:
        1px solid #eee;

    background:
        rgba(255, 255, 255, .98);

    font-size: 18px;
}

.mock-profile-dot {

    width: 20px;
    height: 20px;

    display: block;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #0bb4bf,
            #90d9cd);
}

.screen-card {

    position: absolute;

    border-radius: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 30px;
}

.card-main {

    left: 20px;
    right: 20px;

    top: 35px;

    height: 230px;

    background:
        linear-gradient(145deg,
            #17c3cf,
            #7bd7d0);
}

.card-sub {

    left: 20px;

    width: 105px;

    bottom: 35px;

    height: 120px;

    background:
        #079ba8;
}

.card-small {

    right: 20px;

    width: 95px;

    bottom: 35px;

    height: 120px;

    background:
        #f0d66a;

    color: #17343b;
}

/* floating icons */

.floating-icon {

    position: absolute;

    width: 72px;
    height: 72px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 26px;

    font-weight: 700;

    box-shadow:
        0 18px 35px rgba(0, 0, 0, .08);

    animation:
        snsIconFloat 5s ease-in-out infinite;
}

.icon-play {

    left: -7%;
    top: 17%;
    background: var(--sns-main);
    color: #fff;
}

.icon-heart {

    right: -8%;
    top: 66%;
    background: #fff;
    color: var(--sns-main);
    animation-delay: -1.5s;
}

.icon-comment {

    left: 4%;
    bottom: 55%;
    background: var(--sns-yellow);
    color: #17343b;
    animation-delay: -2.5s;
}

.icon-share {

    right: 4%;
    bottom: 7%;
    background: #fff;
    color: var(--sns-deep);
    animation-delay: -3.5s;
}

@keyframes snsIconFloat {

    0%,
    100% {

        transform:
            translateY(0) rotate(0deg);
    }

    50% {

        transform:
            translateY(-12px) rotate(3deg);
    }

}

/* =========================================
ORBS
========================================= */

.sns-orb {

    position: absolute;

    border-radius: 50%;

    background:
        var(--sns-main);

    opacity: .45;

    filter: blur(2px);

    animation:
        snsOrbFloat 7s ease-in-out infinite;
}

.orb-1 {

    width: 13px;
    height: 13px;

    left: 12%;
    top: 18%;
}

.orb-2 {

    width: 20px;
    height: 20px;

    right: 15%;
    top: 38%;

    background: var(--sns-yellow);

    animation-delay: -2s;
}

.orb-3 {

    width: 10px;
    height: 10px;

    left: 42%;
    bottom: 18%;

    animation-delay: -4s;
}

@keyframes snsOrbFloat {

    0%,
    100% {

        transform:
            translate(0, 0) scale(1);

    }

    50% {

        transform:
            translate(15px, -10px) scale(1.25);

    }

}

/* =========================================
RESULT SECTION
========================================= */

.sns-result {
    position: relative;

    margin-top: 100px;

    padding:
        160px 0 150px;

    background: #e8f7f8;

    overflow: visible;

    z-index: 2;
}

/* =========================================
RESULT 上円
========================================= */

.sns-result::before {
    content: "";

    position: absolute;

    left: 50%;
    top: -160px;

    width: 170%;
    height: 320px;

    transform: translateX(-50%);

    background: #e8f7f8;

    border-radius:
        50% 50% 0 0;

    z-index: -1;

    pointer-events: none;
}

/* 中身を前面に */
.sns-result-inner,
.sns-result .sns-section-inner {
    position: relative;

    z-index: 2;
}

/* =========================================
INNER
========================================= */

.sns-result-inner {
    position: relative;

    z-index: 2;

    width: min(1120px, 88%);

    margin: 0 auto;
}

/* =========================================
TOP
========================================= */

.result-top {
    text-align: center;

    margin-bottom: 70px;
}

.section-label {
    margin-bottom: 15px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .25em;

    color: #0ab3bd;
}

.result-top h2 {
    font-size:
        clamp(36px, 4vw, 58px);

    font-weight: 700;

    letter-spacing: .06em;

    color: #163137;
}

/* =========================================
MAIN RESULT
========================================= */

.result-main {
    margin-top: 55px;
}

.result-small {
    font-size: 11px;

    font-weight: 700;

    letter-spacing: .25em;

    color: #0ab3bd;
}

.result-big-number {
    display: flex;

    align-items: baseline;
    justify-content: center;

    margin-top: 10px;

    color: #0bb4bf;
}

.result-big-number .plus {
    margin-right: 7px;

    font-size: 45px;

    font-weight: 500;
}

.result-big-number strong {
    font-size:
        clamp(80px, 12vw, 160px);

    font-weight: 800;

    line-height: 1;

    letter-spacing: -.04em;
}

.result-caption {
    margin-top: 25px;

    font-size: 14px;

    line-height: 2;

    letter-spacing: .05em;

    color: #56696d;
}

/* =========================================
RESULT BOX
========================================= */

.result-box {
    position: relative;

    padding:
        50px 45px 55px;

    background: #fff;

    border-top:
        2px solid #0bb4bf;

    border-bottom:
        2px solid #0bb4bf;

    /*
    参考画像の細かい柄
    */
    background-image:
        linear-gradient(rgba(8, 180, 193, .045) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(8, 180, 193, .045) 1px,
            transparent 1px);

    background-size:
        8px 8px;
}

.result-box > h3 {
    margin-bottom: 50px;

    text-align: center;

    font-size: 18px;

    letter-spacing: .08em;

    color: #26363a;
}

/* =========================================
GRID
========================================= */

.result-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 50px;
}

/* =========================================
CARD
========================================= */

.result-card {
    position: relative;

    text-align: center;
}

.result-card h4 {
    margin-top: 22px;

    font-size: 17px;

    font-weight: 700;

    letter-spacing: .05em;

    color: #25383c;
}

.result-card p {
    margin-top: 15px;

    text-align: left;

    font-size: 12px;

    line-height: 2;

    letter-spacing: .04em;

    color: #58686b;
}

/* =========================================
MEDAL
========================================= */

.result-medal {
    position: relative;

    width: 68px;
    height: 68px;

    margin: 0 auto;

    border:
        3px solid #0bb4bf;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff;

    color: #0bb4bf;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .08em;
}

/* リボン部分 */

.result-medal::before,
.result-medal::after {
    content: "";

    position: absolute;

    bottom: -16px;

    width: 20px;
    height: 26px;

    border:
        2px solid #0bb4bf;

    background: #fff;

    z-index: -1;
}

.result-medal::before {
    left: 4px;

    transform:
        rotate(17deg);
}

.result-medal::after {
    right: 4px;

    transform:
        rotate(-17deg);
}

/* =========================================
SMALL ICON
========================================= */

.result-icon {
    width: 44px;
    height: 44px;

    margin:
        25px auto 0;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        #d8f4f3;

    color:
        #0ab3bd;

    font-size: 20px;
}

/* =========================================
HOVER
========================================= */

.result-card {
    transition:
        transform .4s cubic-bezier(.22, 1, .36, 1);
}

.result-card:hover {
    transform:
        translateY(-8px);
}

.result-card:hover .result-medal {
    background:
        #0bb4bf;

    color: #fff;
}

/* =========================================
MOBILE
========================================= */

@media (max-width: 800px) {

    .sns-result {
        padding:
            120px 0 110px;
    }

    .sns-result::before {
        top: -100px;

        width: 200%;

        height: 210px;
    }

    .result-big-number strong {
        font-size: 72px;
    }

    .result-big-number .plus {
        font-size: 30px;
    }

    .result-caption {
        font-size: 12px;
    }

    .result-box {
        padding:
            40px 22px 45px;
    }

    .result-grid {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .result-card {
        max-width: 400px;

        margin: 0 auto;
    }

    .result-card p {
        text-align: center;
    }

}

/* =========================================
SNS PURPOSE
========================================= */

.sns-purpose {
    position: relative;

    background: #fff;

    padding:
        125px 0 150px;

    color: #26383b;

    overflow: visible;
}

/* =========================================
上の半円
========================================= */

.purpose-bump {
    position: absolute;

    left: 50%;
    top: 0;

    width: 190px;
    height: 95px;

    transform:
        translate(-50%, -100%);

    background: #fff;

    border-radius:
        190px 190px 0 0;

    z-index: 2;
}

/* =========================================
半円の中の装飾
========================================= */

.purpose-decoration {
    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -35%);

    display: flex;

    align-items: center;

    gap: 13px;
}

.purpose-icon {
    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        2px solid #0bb4bf;

    border-radius: 50%;

    color: #0bb4bf;

    font-size: 27px;

    background: #fff;
}

/* =========================================
INNER
========================================= */

.purpose-inner {
    width: min(1100px, 88%);

    margin: 0 auto;
}

/* =========================================
HEADING
========================================= */

.purpose-heading {
    text-align: center;

    margin-bottom: 90px;
}

.purpose-en {
    margin-bottom: 15px;

    color: #0bb4bf;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .25em;
}

.purpose-heading h2 {
    margin: 0;

    font-size:
        clamp(30px, 3.5vw, 48px);

    line-height: 1.45;

    letter-spacing: .06em;

    font-weight: 700;
}

.purpose-lead {
    margin-top: 30px;

    font-size: 14px;

    line-height: 2.2;

    letter-spacing: .05em;

    color: #637174;
}

/* =========================================
3 COLUMN
========================================= */

.purpose-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 65px;
}

/* =========================================
CARD
========================================= */

.purpose-card {
    position: relative;

    text-align: center;

    padding:
        0 10px;
}

/* カード間の線 */

.purpose-card:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 25px;
    right: -33px;

    width: 1px;
    height: 82%;

    background:
        rgba(11, 180, 191, .18);
}

/* =========================================
MEDAL
========================================= */

.purpose-medal {
    position: relative;

    width: 72px;
    height: 72px;

    margin:
        0 auto 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        3px solid #0bb4bf;

    border-radius: 50%;

    background: #fff;

    color: #0bb4bf;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .08em;

    z-index: 1;
}

/* 内側の点線 */

.purpose-medal span {
    width: 56px;
    height: 56px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px dashed #0bb4bf;

    border-radius: 50%;
}

.purpose-medal::before {
    left: 7px;

    transform:
        rotate(18deg);
}

.purpose-medal::after {
    right: 7px;

    transform:
        rotate(-18deg);
}

/* =========================================
CARD TEXT
========================================= */

.purpose-card-en {
    margin-bottom: 8px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .2em;

    color: #0bb4bf;
}

.purpose-card h3 {
    margin: 0;

    font-size: 19px;

    letter-spacing: .06em;
}

.purpose-text {
    margin:
        20px auto 0;

    max-width: 270px;

    text-align: left;

    font-size: 12px;

    line-height: 2;

    letter-spacing: .04em;

    color: #5c6a6d;
}

/* =========================================
MOBILE
========================================= */

.sp-only {
    display: none;
}

@media (max-width: 800px) {

    .sns-purpose {
        padding:
            100px 0 100px;
    }

    .purpose-bump {
        width: 140px;
        height: 70px;
    }

    .purpose-icon {
        width: 48px;
        height: 48px;

        font-size: 21px;
    }

    .purpose-heading {
        margin-bottom: 65px;
    }

    .purpose-heading h2 {
        font-size: 28px;
    }

    .purpose-lead {
        font-size: 12px;

        line-height: 2;
    }

    .purpose-grid {
        grid-template-columns: 1fr;

        gap: 80px;
    }

    .purpose-card {
        max-width: 360px;

        margin: 0 auto;
    }

    .purpose-card:not(:last-child)::after {
        top: auto;

        bottom: -40px;
        right: 10%;

        width: 80%;
        height: 1px;
    }

    .purpose-text {
        text-align: center;
    }

    .sp-only {
        display: block;
    }

}

/* =========================================
上部の「下向き円」
========================================= */

.sns-fan::before {
    content: "";

    position: absolute;

    left: 50%;
    top: -230px;

    width: 160%;
    height: 420px;

    transform: translateX(-50%);

    background: #fff;

    border-radius: 0 0 50% 50%;

    z-index: 0;
}

/* コンテンツを前面へ */

.sns-fan-inner {
    position: relative;
    z-index: 2;

    width: min(1100px, 88%);

    margin: 0 auto;
}

/* =========================================
FAN
========================================= */

.sns-fan {
    position: relative;

    padding: 180px 0;

    background: #fff;

    overflow: hidden;
}

.sns-fan-inner {
    width: min(1180px, 88%);

    margin: 0 auto;

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 80px;

    align-items: center;
}

/* =========================================
LEFT COPY
========================================= */

.fan-copy {
    position: relative;
}

.fan-small {
    margin-bottom: 8px;

    font-size: 24px;

    font-weight: 600;

    letter-spacing: .08em;

    color: #5f6b6f;
}

.fan-copy h2 {
    margin: 0;

    font-size: 52px;

    line-height: 1.2;

    letter-spacing: .05em;

    color: #0bb4bf;
}

.fan-description {
    margin-top: 35px;

    max-width: 500px;

    font-size: 14px;

    line-height: 2.2;

    letter-spacing: .05em;

    color: #667377;
}

/* 左側の淡い光 */

.fan-copy::before {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    left: -80px;
    top: -70px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(10, 180, 191, .12),
            transparent 70%);

    filter: blur(25px);

    z-index: -1;
}

/* =========================================
5 STEP AREA
========================================= */

.fan-steps-5 {
    position: relative;

    width: 650px;
    height: 520px;

    margin-left: auto;
}

/* =========================================
CIRCLE
========================================= */

.fan-steps-5 .fan-step {
    position: absolute;
}

.fan-steps-5 .fan-step-circle {
    position: relative;

    width: 165px;
    height: 165px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 2px solid #0bb4bf;

    border-radius: 50%;

    background: #fff;
}

.fan-steps-5 .fan-step-circle span {
    font-size: 20px;

    font-weight: 600;

    line-height: 1.5;

    letter-spacing: .05em;

    text-align: center;

    color: #657276;
}

/* 円についている小さな点 */

.fan-steps-5 .fan-step-circle::after {
    content: "";

    position: absolute;

    width: 11px;
    height: 11px;

    border-radius: 50%;

    background: #0bb4bf;

    right: 15px;
    bottom: 24px;
    display: none;
}

/* =========================================
STEP NUMBER
========================================= */

.fan-steps-5 .fan-step-number {
    position: absolute;

    display: flex;

    align-items: flex-start;

    color: #0bb4bf;

    white-space: nowrap;

    z-index: 3;
}

.fan-steps-5 .fan-step-number small {
    margin-top: 8px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .08em;
}

.fan-steps-5 .fan-step-number strong {
    font-size: 48px;

    font-weight: 400;

    line-height: .9;

    color: #fff;

    -webkit-text-stroke: 1.5px #0bb4bf;
}

/* =========================================
5個の配置
========================================= */

/* 01：上中央 */

.fan-steps-5 .fan-step-1 {
    top: 76px;
    left: 177px;
}

.fan-steps-5 .fan-step-1 .fan-step-number {
    left: -32px;
    top: -43px;
}

/* 02：左中 */

.fan-steps-5 .fan-step-2 {
    top: 186px;
    left: 245px;
}

.fan-steps-5 .fan-step-2 .fan-step-number {
    left: 40px;
    bottom: 341px;
}

/* 03：中央 */

.fan-steps-5 .fan-step-3 {
    top: 156px;
    left: 437px;
}

.fan-steps-5 .fan-step-3 .fan-step-number {
    right: 40px;
    top: -40px;
}

/* 04：右中 */

.fan-steps-5 .fan-step-4 {
    top: 315px;
    right: 380px;
}

.fan-steps-5 .fan-step-4 .fan-step-number {
    right: 161px;
    bottom: 114px;
}

/* 05：下中央 */

.fan-steps-5 .fan-step-5 {
    bottom: 27px;
    left: 375px;
}

.fan-steps-5 .fan-step-5 .fan-step-number {
    left: 140px;
    bottom: 128px;
}

/* =========================================
STEP NUMBER
========================================= */

.fan-step-number {
    position: absolute;

    display: flex;

    align-items: flex-start;

    gap: 5px;

    color: #0bb4bf;

    white-space: nowrap;
}

.fan-step-number small {
    margin-top: 6px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .12em;
}

.fan-step-number strong {
    font-size: 58px;

    font-weight: 300;

    line-height: 1;

    -webkit-text-stroke:
        1px #0bb4bf;

    color: #fff;
}

/* =========================================
POSITION
========================================= */

/* 上 */

.fan-step-1 {
    top: 0;

    left: 50%;

    transform:
        translateX(-50%);
}

.fan-step-1 .fan-step-number {
    left: -20px;

    top: -15px;
}

/* 左下 */

.fan-step-2 {
    left: 0;

    bottom: 0;
}

.fan-step-2 .fan-step-number {
    left: -35px;

    bottom: -5px;
}

/* 右下 */

.fan-step-3 {
    right: 0;

    bottom: 0;
}

.fan-step-3 .fan-step-number {
    right: -35px;

    bottom: -5px;
}

/* =========================================
ほんの少し動かす
========================================= */

.fan-step-1 {
    animation:
        fanFloat1 6s ease-in-out infinite;
}

.fan-step-2 {
    animation:
        fanFloat2 7s ease-in-out infinite;
}

.fan-step-3 {
    animation:
        fanFloat3 6.5s ease-in-out infinite;
}

@keyframes fanFloat1 {

    0%,
    100% {
        transform:
            translateX(-50%) translateY(0);
    }

    50% {
        transform:
            translateX(-50%) translateY(-8px);
    }

}

@keyframes fanFloat2 {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(7px);
    }

}

@keyframes fanFloat3 {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-6px);
    }

}

/* =========================================
MOBILE
========================================= */

@media (max-width: 800px) {

    .sns-fan {
        padding: 120px 0;
    }

    .sns-fan-inner {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .fan-copy {
        text-align: center;
    }

    .fan-small {
        font-size: 18px;
    }

    .fan-copy h2 {
        font-size: 44px;
    }

    .fan-description {
        margin:
            25px auto 0;

        font-size: 12px;
    }

    .fan-steps {
        width: 330px;
        height: 340px;

        margin: 0 auto;
    }

    .fan-step-circle {
        width: 125px;
        height: 125px;
    }

    .fan-step-circle span {
        font-size: 16px;
    }

    .fan-step-number strong {
        font-size: 40px;
    }

    .fan-step-number small {
        font-size: 8px;
    }

    .fan-step-2 .fan-step-number {
        left: -18px;
    }

    .fan-step-3 .fan-step-number {
        right: -18px;
    }

}

/* =========================================
FOOTER
========================================= */

.sns-footer {

    padding: 70px 20px 30px;

    background: #10262b;

    color: #fff;
}

.sns-footer-inner {

    width: min(1000px, 88%);

    margin: 0 auto;

    text-align: center;
}

.sns-footer-inner > a {

    font-size: 34px;

    letter-spacing: .2em;
}

.sns-footer-inner p {

    margin-top: 18px;

    font-size: 11px;

    line-height: 2;

    letter-spacing: .14em;

    color: #a9b6b9;
}

.sns-footer-inner small {

    display: block;

    margin-top: 45px;

    font-size: 9px;

    color: #6e7c7f;
}

/* =========================================
MOBILE
========================================= */

@media (max-width: 800px) {

    .sns-header {

        padding:
            20px;
    }

    .sns-logo {

        font-size: 28px;
    }

    .sns-menu {

        width: 125px;

        height: 38px;
    }

    .sns-nav-inner a {

        font-size: 27px;
    }

    .sns-hero {

        min-height: 900px;

        padding-top: 120px;

        align-items: flex-start;
    }

    .sns-hero-inner {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .sns-hero-copy h1 {

        font-size: 44px;
    }

    .sns-hero-description {

        font-size: 13px;
    }

    .sns-hero-visual {

        height: 420px;
    }

    .phone-phone {

        width: 220px;
        height: 420px;

        border-width: 6px;
    }

    .floating-icon {

        width: 56px;
        height: 56px;

        font-size: 20px;
    }

    .result-number {

        margin-top: 60px;
    }

    .result-value {

        font-size: 90px;
    }

    .result-plus {

        font-size: 36px;
    }

    .result-unit {

        font-size: 9px;

        margin-left: 8px;
    }

    .result-platforms {

        grid-template-columns: 1fr;
    }

    .result-platforms div {

        border-right: none;

        border-bottom:
            1px solid rgba(8, 180, 193, .25);
    }

    .result-platforms div:last-child {

        border-bottom: none;
    }

    .purpose-grid {

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .platform-list {

        grid-template-columns: 1fr;
    }

    .platform-card {

        min-height: 430px;
    }

    .method-flow {

        flex-direction: column;

        align-items: center;

        gap: 22px;
    }

    .method-line {

        width: 1px;

        height: 40px;

        margin: 0;
    }

    .sns-fan .sns-section-inner {

        grid-template-columns: 1fr;

        gap: 70px;
    }

    .fan-circle {

        width: 330px;
        height: 330px;
    }

    .fan-step {

        width: 80px;
        height: 80px;

        font-size: 11px;
    }

    .step-2 {
        right: 8px;
        top: 65px;
    }

    .step-3 {
        right: 20px;
        bottom: 20px;
    }

    .step-4 {
        left: 20px;
        bottom: 20px;
    }

    .step-5 {
        left: 8px;
        top: 65px;
    }

    .sns-contact-inner h2 {

        font-size: 60px;
    }

}

.site-footer::before {
    background-color: #fff;
}


/* =========================================
NAV FINAL FIX
========================================= */

.sns-nav {
    z-index: 9998;
    pointer-events: none;
}

.sns-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.sns-menu {
    position: relative;
    z-index: 9999;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .sns-hero-visual,
body.menu-open .sns-glow,
body.menu-open .floating-icon,
body.menu-open .sns-orb {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* =========================================================
SNS PAGE - RESPONSIVE
SP ONLY
========================================================= */

@media (max-width: 700px) {

    /* =========================================
    BASE
    ========================================= */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    main,
    section,
    footer {
        max-width: 100%;
    }

    .sns-section-inner,
    .sns-result-inner,
    .purpose-inner,
    .sns-fan-inner {
        width: 88%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }


    /* =========================================
    HEADER / NAV
    ========================================= */

    .sns-header {
        padding: 18px 16px;
    }

    .sns-logo {
        font-size: 28px;
        letter-spacing: .18em;
    }

    .sns-menu {
        width: 58px;
        height: 58px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .sns-menu-icon {
        margin: 0;
    }

    .sns-menu > span:last-child {
        display: none;
    }

    .sns-nav {
        width: 100%;
        height: 100dvh;
        padding: 100px 24px 40px;
        align-items: flex-start;
        overflow-y: auto;
    }

    .sns-nav-inner {
        width: 100%;
    }

    .sns-nav-inner > p {
        margin-bottom: 22px;
        font-size: 11px;
    }

    .sns-nav-inner a {
        padding: 18px 0;
        font-size: 23px;
    }


    /* =========================================
    HERO
    ========================================= */

    .sns-hero {
        min-height: auto;
        padding: 130px 0 165px;
        align-items: flex-start;
    }

    .sns-hero-inner {
        width: 88%;
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .sns-label {
        margin-bottom: 18px;
        font-size: 11px;
        letter-spacing: .22em;
        text-align: center;
    }

    .sns-hero-copy {
        text-align: center;
    }

    .sns-hero-copy h1 {
        font-size: 39px;
        line-height: 1.45;
        letter-spacing: .04em;
    }

    .sns-hero-description {
        max-width: 420px;
        margin: 25px auto 0;
        font-size: 12px;
        line-height: 2.1;
        letter-spacing: .04em;
    }


    /* =========================================
    HERO PHONE
    ========================================= */

    .sns-hero-visual {
        width: 100%;
        height: 400px;
    }

    .phone-phone {
        width: 205px;
        height: 400px;
        border-width: 6px;
        border-radius: 30px;
    }

    .phone-top {
        width: 66px;
        height: 18px;
        top: 6px;
    }

    .phone-screen {
        inset: 30px 6px 6px;
        border-radius: 21px;
    }

    .mock-sns-header {
        height: 39px;
        padding: 0 9px;
    }

    .mock-logo {
        font-size: 13px;
    }

    .mock-header-icons {
        gap: 8px;
        font-size: 15px;
    }

    .mock-stories {
        height: 65px;
        gap: 6px;
        padding: 7px;
    }

    .mock-story {
        width: 40px;
    }

    .story-ring {
        width: 36px;
        height: 36px;
    }

    .mock-story span {
        font-size: 5px;
    }

    .mock-post-user {
        height: 38px;
        padding: 4px 7px;
    }

    .mock-avatar {
        width: 26px;
        height: 26px;
    }

    .mock-user-name {
        margin-left: 6px;
    }

    .mock-user-name strong {
        font-size: 7px;
    }

    .mock-user-name span {
        font-size: 5px;
    }

    .mock-actions {
        padding: 6px 7px 3px;
        font-size: 14px;
    }

    .mock-likes {
        padding: 0 7px;
        font-size: 6px;
    }

    .mock-caption {
        padding: 4px 7px;
        font-size: 5px;
    }

    .mock-bottom-nav {
        height: 33px;
        padding: 0 9px;
        font-size: 14px;
    }

    .mock-profile-dot {
        width: 16px;
        height: 16px;
    }


    /* =========================================
    FLOATING ICONS
    ========================================= */

    .floating-icon {
        width: 48px;
        height: 48px;
        font-size: 17px;
    }

    .icon-play {
        left: -1%;
        top: 9%;
    }

    .icon-heart {
        right: -4%;
        top: 60%;
    }

    .icon-comment {
        left: 5%;
        bottom: 57%;
    }

    .icon-share {
        right: 4%;
        bottom: 6%;
    }

    .sns-orb {
        transform: scale(.7);
    }


    /* =========================================
    RESULT
    ========================================= */

    .sns-result {
        margin-top: 0;
        padding: 60px 0 100px;
    }

    .sns-result::before {
        top: -65px;
        width: 220%;
        height: 130px;
    }

    .result-top {
        margin-bottom: 50px;
    }

    .section-label {
        margin-bottom: 10px;
        font-size: 10px;
    }

    .result-top h2 {
        font-size: 31px;
        line-height: 1.45;
    }

    .result-main {
        margin-top: 35px;
    }

    .result-small {
        font-size: 9px;
    }

    .result-big-number {
        margin-top: 7px;
    }

    .result-big-number .plus {
        margin-right: 4px;
        font-size: 27px;
    }

    .result-big-number strong {
        font-size: 68px;
    }

    .result-caption {
        margin-top: 17px;
        font-size: 11px;
        line-height: 1.9;
    }

    .result-box {
        margin-top: 50px;
        padding: 35px 18px 45px;
    }

    .result-box > h3 {
        margin-bottom: 45px;
        font-size: 15px;
    }

    .result-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .result-card {
        max-width: 330px;
        margin: 0 auto;
    }

    .result-card h4 {
        margin-top: 20px;
        font-size: 16px;
    }

    .result-card p {
        margin-top: 12px;
        text-align: center;
        font-size: 11px;
        line-height: 1.9;
    }


    /* =========================================
    PURPOSE
    ========================================= */

    .sns-purpose {
        padding: 100px 0 110px;
    }

    .purpose-bump {
        width: 130px;
        height: 65px;
    }

    .purpose-decoration {
        gap: 8px;
    }

    .purpose-icon {
        width: 44px;
        height: 44px;
        font-size: 19px;
    }

    .purpose-heading {
        margin-bottom: 60px;

    }

    .purpose-en {
        margin-bottom: 10px;
        font-size: 9px;
    }

    .purpose-heading h2 {
        font-size: 29px;
        line-height: 1.55;
    }

    .purpose-lead {
        margin-top: 22px;
        font-size: 10px;
        line-height: 2;
    }

    .purpose-grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .purpose-card {
        max-width: 340px;
        margin: 0 auto;
    }

    .purpose-card:not(:last-child)::after {
        top: auto;
        right: 10%;
        bottom: -32px;
        width: 80%;
        height: 1px;
    }

    .purpose-medal {
        width: 64px;
        height: 64px;
        margin-bottom: 25px;
    }

    .purpose-medal span {
        width: 49px;
        height: 49px;
    }

    .purpose-card h3 {
        font-size: 17px;
    }

    .purpose-text {
        max-width: 300px;
        margin-top: 16px;
        text-align: center;
        font-size: 11px;
        line-height: 1.9;
    }


    /* =========================================
    FAN
    ========================================= */

    .sns-fan {
        padding: 110px 0 120px;
    }

    .sns-fan::before {
        top: -80px;
        width: 220%;
        height: 150px;
    }

    .sns-fan-inner {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .fan-copy {
        text-align: center;
        margin-right: -15px;
    }

    .fan-small {
        font-size: 17px;
    }

    .fan-copy h2 {
        font-size: 38px;
    }

    .fan-description {
        max-width: 340px;
        margin: 22px auto 20px;
        font-size: 11px;
        line-height: 2;
    }

    .fan-copy::before {
        left: 50%;
        top: -60px;
        width: 260px;
        height: 260px;
        transform: translateX(-50%);
    }


    /* =========================================
    FAN 5 STEPS
    ========================================= */

    .fan-steps-5 {
        width: 330px;
        height: 440px;
        margin: 0 auto;
    }

    .fan-steps-5 .fan-step-circle {
        width: 112px;
        height: 112px;
    }

    .fan-steps-5 .fan-step-circle span {
        font-size: 14px;
    }

    .fan-steps-5 .fan-step-circle::after {
        width: 8px;
        height: 8px;
        right: 10px;
        bottom: 18px;
    }

    .fan-steps-5 .fan-step-number strong {
        font-size: 34px;
    }

    .fan-steps-5 .fan-step-number small {
        margin-top: 5px;
        font-size: 7px;
    }

    .fan-steps-5 .fan-step-1 {
        top: 0;
        left: 109px;
    }

    .fan-steps-5 .fan-step-2 {
        top: -3px;
        left: 191px;
    }

    .fan-steps-5 .fan-step-3 {
        top: 150px;
        left: 109px;
    }

    .fan-steps-5 .fan-step-4 {
        top: 150px;
        right: 230px;
    }

    .fan-steps-5 .fan-step-5 {
        right: 26px;
        bottom: 154px;
        left: auto;
    }

    .fan-steps-5 .fan-step-1 .fan-step-number {
        top: -19px;
        left: 60px;
    }

    .fan-steps-5 .fan-step-2 .fan-step-number {
        left: 58px;
        top: -22px;
    }

    .fan-steps-5 .fan-step-3 .fan-step-number {
        top: -35px;
        right: 0px;
    }

    .fan-steps-5 .fan-step-4 .fan-step-number {
        right: -23px;
        top: 101px;
    }

    .fan-steps-5 .fan-step-5 .fan-step-number {
        left: 55px;
        bottom: 72px;
    }


    /* =========================================
    FOOTER
    ========================================= */

    .sns-footer {
        padding: 55px 20px 25px;
    }

    .sns-footer-inner {
        width: 90%;
    }

    .sns-footer-inner > a {
        font-size: 27px;
    }

    .sns-footer-inner p {
        margin-top: 15px;
        font-size: 10px;
    }

    .sns-footer-inner small {
        margin-top: 35px;
        font-size: 8px;
    }

}


/* =========================================================
SMALL SP
========================================================= */

@media (max-width: 390px) {

    .sns-hero-copy h1 {
        font-size: 34px;
    }

    .sns-hero-description {
        font-size: 11px;
    }

    .sns-hero-visual {
        height: 370px;
    }

    .phone-phone {
        width: 190px;
        height: 370px;
    }

    .floating-icon {
        width: 44px;
        height: 44px;
        font-size: 15px;
    }

    .result-top h2 {
        font-size: 23px;
    }

    .result-big-number strong {
        font-size: 60px;
    }

    .purpose-heading h2 {
        font-size: 22px;
    }

    .fan-copy h2 {
        font-size: 34px;
    }

    .fan-steps-5 {
        width: 300px;
        height: 410px;
    }

    .fan-steps-5 .fan-step-circle {
        width: 102px;
        height: 102px;
    }

    .fan-steps-5 .fan-step-1 {
        left: 40px;
        top: -9px;
    }

    .fan-steps-5 .fan-step-3 {
        left: 95px;
        top: 102px;
    }

}

/* =========================================================
SNS NAV FIX
========================================================= */

.sns-nav {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100dvh;

    z-index: 9998;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.96);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-15px);

    pointer-events: none;

    transition:
        opacity .35s ease,
        visibility .35s ease,
        transform .35s ease;
}


/* OPEN */

.sns-nav.active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);

    pointer-events: auto;
}


/* =========================================
NAV INNER
========================================= */

.sns-nav-inner {
    width: min(500px, 82%);
}


.sns-nav-label {
    margin-bottom: 25px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .25em;

    color: #0ab3bd;
}


/* =========================================
LINKS
========================================= */

.sns-nav-inner a {
    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    padding: 20px 0;

    border-bottom: 1px solid rgba(10, 179, 189, .2);

    color: #10262b;

    text-decoration: none;

    transition:
        color .3s ease,
        padding-left .3s ease;
}


.sns-nav-inner a span {
    font-size: 28px;
    font-weight: 700;

    letter-spacing: .08em;
}


.sns-nav-inner a small {
    font-size: 10px;

    color: #71878c;
}


.sns-nav-inner a:hover {
    color: #0ab3bd;

    padding-left: 8px;
}


/* =========================================
MENU BUTTON
========================================= */

.sp-menu {
    position: fixed;

    top: 20px;
    right: 20px;

    z-index: 10000;
}


/* =========================================
MENU ICON → ×
========================================= */

.sp-menu-icon span {
    display: block;

    width: 18px;
    height: 2px;

    background: currentColor;

    transition:
        transform .3s ease,
        opacity .3s ease;
}


.sp-menu-icon span:first-child {
    margin-bottom: 5px;
}


.sp-menu.active .sp-menu-icon span:first-child {
    transform:
        translateY(3.5px) rotate(45deg);
}


.sp-menu.active .sp-menu-icon span:last-child {
    transform:
        translateY(-3.5px) rotate(-45deg);
}


/* =========================================
SCROLL LOCK
========================================= */

body.menu-open {
    overflow: hidden;
}


/* =========================================
NAV OPEN中は背景装飾を隠す
========================================= */

body.menu-open .sns-glow,
body.menu-open .sns-orb,
body.menu-open .sns-hero-visual,
body.menu-open .floating-icon {
    opacity: 0;

    visibility: hidden;

    pointer-events: none;
}


/* =========================================
PCではSNS NAV不要
========================================= */

@media (min-width: 801px) {

    .sns-nav {
        display: none;
    }

}


/* =========================================
SP
========================================= */

@media (max-width: 800px) {

    .sns-nav {
        padding:
            100px 0 50px;
    }

    .sns-nav-inner a span {
        font-size: 24px;
    }

}
