html, body {
    width: 100%;
    overflow-x: clip;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #fff;
}

::placeholder {
    color: #ccc;
    font-weight: 100;
}

.pc-only {
    display: block !important;
}

.sp-only {
    display: none !important;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.fadein {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadein.show {
    opacity: 1;
    transform: translateY(0);
}
  
@media (max-width: 768px) {
    .pc-only {
        display: none !important;
    }
    
    .sp-only {
        display: block !important;
    }

    .container {
        max-width: 100%;
        margin: 0 auto;
        width: calc(100% - 46px);
        box-sizing: border-box;
    }
}

  
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 73px;
    padding-left: 35px;
    padding-right: 18px;
    background: #28213D;
}

@media screen and (min-width: 768px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
      }
    
      body {
        padding-top: 73px;
      }
  }

.logo {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.96px;
}

.buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-family: 'Noto Sans CJK JP', sans-serif;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    padding-top: 7px;
    padding-bottom: 6px;
}

.btn.primary {
    width: 238px;
    background: linear-gradient(90deg, #FF079E 0%, #4A08FF 100%);
    color: #ffffff;
    border: none;
}

.btn.secondary {
    display: inline-block;
    width: 159px;
    padding: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #F307A4 0%, #5109FB 100%);
    text-decoration: none;
}

.btn.secondary .btn-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #28213D;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding-top: 5px;
    padding-bottom: 6px;
} 

.btn .en {
    font-size: 10px;
    font-weight: normal;
    margin-top: 2px;
}


.fv {
    position: relative;
    width: 100%;
    aspect-ratio: 1440 / 838;
    max-height: 838px;
    background: url('../images/bg_fv_pc.jpg') no-repeat center center;
    background-size: cover;
}

.fv-content {
    position: relative;
    padding-top: 102px;
}

.fv::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100%;
    background: url('../images/fv-person_pc.png') no-repeat bottom right;
    background-size: contain;
    z-index: 1;
}

.label {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.9); 
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
    color: #F10DC3;
    font-size: 40px;
    font-weight: bold;
    padding: 19px 128px 19px 97px;
    margin-bottom: 47px;
    z-index: 2;
}

.fv h1 {
    position: relative;
    font-size: 72px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 8px 18px rgba(194, 56, 200, 0.5);
    margin-left: 129px;
    margin-bottom: 27px;
    z-index: 2;
}

.typing-wrapper {
    white-space: nowrap;
}

.typing-effect {
    display: inline-block;
    overflow: hidden;
}

.line1 {
    width: 0;
    animation: typing2 2s steps(33) forwards 0.5s, caret .5s step-end infinite alternate 0.5s;
}

.line2 {
    width: 0;
    animation: typing2 2s steps(23) forwards 3s, caret .5s step-end infinite alternate 3s;
}

@keyframes typing1 {
    from { width: 0 }
    to { width: 13ch; }
}
@keyframes typing2 {
    from { width: 0 }
    to { width: 18ch; }
}

.sub-message {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.7;
    text-shadow: 0 4px 11px rgba(194, 56, 200, 0.5);
    margin-left: 129px;
    margin-bottom: 43px;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 5s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.en-message {
    position: relative;
    left: -31%;
    font-family: 'Futura', sans-serif;
    font-size: 100px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    opacity: 0.5;
    text-align: center;
    white-space: nowrap;
    z-index: 0;
    width: max-content;
    display: inline-block;
    white-space: nowrap;
    animation: loop 50s linear infinite;
}

@keyframes loop {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}

@media (max-width: 768px) {
    .header-inner {
        height: 60px;
        padding: 0 19px 0 23px;
    }

    .logo {
        font-size: 20px;
    }

    .buttons {
        display: flex;
        gap: 0;
        justify-content: center;
    }
    
    .btn {
        font-size: 14px;
        line-height: 1.2;
        padding-top: 7px;
        padding-bottom: 6px;
    }
    
    .btn.primary {
        width: 133px;
    }

    .btn .en {
        font-size: 10px;
        margin-top: 0;
    }

    .fv {
        aspect-ratio: auto;
        max-height: auto;
        background: url('../images/bg_fv_sp.jpg') no-repeat center center;
        background-size: cover;
    }

    .fv-content {
        padding-top: 33px;
    }

    .fv::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 389px;
        height: 100%;
        background: url('../images/fv-person_sp.png') no-repeat bottom center;
        background-size: contain;
        z-index: 1;
    }
    
    .label {
        background: rgba(255, 255, 255, 0.8); 
        clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
        font-size: 16px;
        padding: 13px 46px 13px 23px;
        margin-bottom: 26px;
    }
    
    .fv h1 {
        font-size: 36px;
        font-weight: bold;
        margin-left: 15px;
    }
    
    .sub-message {
        font-size: 14px;
        line-height: 1.7;
        text-shadow: 0 4px 11px rgba(194, 56, 200, 0.5);
        margin-left: 15px;
        margin-bottom: 275px;
    }
    
    .en-message {
        left: -62%;
        font-size: 32px;
        padding-bottom: 152px;
    }
}


/* trouble */
.trouble-section {
    position: relative;
    width: 100%;
    height: auto;
    background: url('../images/bg_trouble_pc.jpg') no-repeat center center;
    background-size: cover;
    color: #ffffff;
    text-align: center;
    padding: 112px 0 120px;
}

.trouble-title {
    font-weight: bold;
    font-size: 46px;
    background: linear-gradient(to right, #FFC7A2 0%, #F59FDE 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}

.trouble-items {
    display: flex;
    gap: 131px;
    align-items: center;
    justify-content: center;
}

.trouble-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trouble-item p {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 54px;
}

.trouble-item img {
    width: 278px;
    height: 278px;
}

.trouble-bottom {
    position: relative;
    font-size: 54px;
    font-weight: bold;
    color: #ffffff;
    z-index: 1;
}

.trouble-bottom::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 8px;
    width: 85%;
    height: 21px;
    border-radius: 15px;
    background: linear-gradient(to right, #FD08C0, #1EB8DF, #0532FA);
    z-index: -1;
}

@media (max-width: 768px) {
    .trouble-section {
        background: url('../images/bg_trouble_sp.jpg') no-repeat center center;
        padding: 64px 0 90px;
    }
    
    .trouble-title {
        font-size: 24px;
        margin-bottom: 38px;
    }
    
    .trouble-items {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        justify-content: center;
        margin-bottom: 41px;
    }
    
    .trouble-item {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .trouble-item:nth-of-type(1) {
        gap: 16px;
    }

    .trouble-item:nth-of-type(2) {
        flex-direction: row-reverse;
        gap: 1px;
    }

    .trouble-item:nth-of-type(3) {
        gap: 13px;
    }
    
    .trouble-item p {
        font-size: 16px;
        line-height: 1.6;
        text-align: left;
        margin: 0;
        flex-grow: 1;
        width: 100%;
    }
    
    .trouble-item img {
        width: 100px;
        height: 100px;
        flex-shrink: 0;
    }
    
    .trouble-bottom {
        font-size: 24px;
    }
    
    .trouble-bottom::after {
        transform: translateX(-51%);
        bottom: 0px;
        width: 300px;
        height: 11px;
    }
}

/* philosophy */
.philosophy-section {
    position: relative !important;
    overflow: visible !important;
    color: white;
}

.philosophy-rail {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 100;
}

.philosophy-sticky {
    position: sticky;
    top: 73px;
    display: flex;
    justify-content: flex-end;
    height: 0;
    padding-top: 100vh;
}
  
.philosophy-sticky::after {
    content: "PHILOSOPHY";
    position: absolute;
    right: 12px;
    top: 7%;
    writing-mode: vertical-rl;
    white-space: nowrap;
    font-family: 'Futura', sans-serif;
    font-weight: 700;
    font-size: 80px;
    letter-spacing: 5px;
    color: rgba(0,0,0,.30);
}

.philosophy-title {
    position: relative;
    width: 100%;
    height: auto;
    background: url('../images/bg_philosophy-title.jpg') no-repeat center center;
    background-size: cover;
    text-align: center;
    padding: 46px 0;
}

.philosophy-title h2 {
    position: relative;
    font-size: 32px;
    font-weight: bold;
}

.philosophy-title h2::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 107px;
    background: #ffffff;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 27px;
    z-index: 100;
}

.philosophy-content {
    position: relative;
    width: 100%;
    height: auto;
    background: url('../images/bg_philosophy-content_pc.jpg') no-repeat top center;
    background-size: cover;
    padding: 133px 0 98px;
    z-index: 2;
}

.philosophy-section .container::before {
    content: "";
    position: absolute;
    width: 800px;
    height: auto;
    aspect-ratio: 768 / 997;
    background: url("../images/rainbow_bar02.png") no-repeat center / contain;
    top: 6%;
    left: -30%;
    z-index: -1;
}

.philosophy-section .container::after {
    content: "";
    position: absolute;
    width: 800px;
    height: auto;
    aspect-ratio: 768 / 997;
    background: url("../images/rainbow_bar02.png") no-repeat center / contain;
    bottom: -7%;
    right: -25%;
    z-index: -1;
}

.philosophy-card {
    display: flex;
    align-items: start;
    margin-bottom: 45px;
    gap: 54px;
}

.card-left {
    flex-direction: row;
}

.card-right {
    flex-direction: row-reverse;
}

.card-left .philosophy-text {
    width: 593px;
    text-align: left;
}

.card-right .philosophy-text {
    width: 606px;
    text-align: left;
}

.philosophy-card img {
    width: 488px;
    height: auto;
}

.philosophy-card h3 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 22px;
}

.philosophy-card.card-right h3 {
    text-align: right;
    margin-left: -27px;
}

.philosophy-card p {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.7;
}
  
@media (max-width: 768px) {
    .philosophy-title {
        padding: 46px 0 57px;
    }
    
    .philosophy-title h2 {
        font-size: 24px;
    }
    
    .philosophy-title h2::after {
        height: 84px;
        margin-top: 19px;
    }

    .philosophy-content {
        background: url('../images/bg_philosophy-content_sp.jpg') no-repeat top center;
        background-size: cover;
        padding: 76px 0 93px;
    }

    .philosophy-card {
        flex-direction: column;
        align-items: center;
        margin-bottom: 72px;
        gap: 30px;
    }

    .card-left .philosophy-text,
    .card-right .philosophy-text {
        width: 100%;
    }
    
    .philosophy-card img {
        width: 100%;
        height: auto;
    }

    .philosophy-card h3 {
        display: block;
        margin: 0 auto;
        text-align: center;
        font-size: 24px;
        margin-bottom: 27px;
    }
    
    .philosophy-card.card-right h3 {
        text-align: center;
        margin-left: 0;
    }

    .philosophy-card p {
        font-size: 14px;
        font-weight: bold;
        line-height: 1.8;
    }

    .philosophy-section .container::before {
        display: none;
    }

    .philosophy-section .container::after {
        width: 550px;
        aspect-ratio: 554 / 640;
        background: url("../images/rainbow_bar03.png") no-repeat center / contain;
        bottom: 3%;
        right: -80%;
    }
} 
  
/* profit */
.profit-section {
    position: relative;
    overflow: visible !important;
    width: 100%;
    height: auto;
    background: url('../images/bg_profit_pc.jpg') no-repeat center center;
    background-size: cover;
    color: #000000;
    text-align: left;
    padding: 95px 0 195px;
    z-index: 0;
}

.profit-section .container {
    max-width: 1240px;
}

.profit-top {
    position: relative;
    display: block;
    width: 100%;
}

.profit-top p {
    position: relative;
    display: inline-block;
    width: 240px;
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    margin-left: 49px;
    margin-bottom: 99px;
}

.profit-top p::after {
    position: absolute;
    content: "";
    width: 55px;
    height: 1px;
    background: #000000;
    top: 54%;
    left: -30%;
    transform: translateY(-50%);
    z-index: 100;
}

.profit-side-rail {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 100;
}

.profit-side-sticky {
    position: sticky;
    top: 73px;
    display: flex;
    justify-content: flex-end;
    height: 0;
    padding-top: 140vh;
}
  
.profit-side-sticky::after {
    content: "THE SECRET TO PROFITS? STRATEGY.";
    position: absolute;
    top: 5%;
    left: 1%;
    writing-mode: vertical-rl;
    font-family: 'Futura', sans-serif;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 5px;
    text-wrap: nowrap;
    color: rgba(0, 0, 0, 0.4);
    z-index: 100;
}

.profit-side-text-right {
    position: absolute;
    top: 30%;
    right: 1%;
    transform-origin: right top;
    font-family: 'Futura', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    text-wrap: nowrap;
    color: rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.profit-side-text-right::after {
    position: absolute;
    content: "";
    width: 101px;
    height: 1px;
    background: #000000;
    top: 50%;
    right: -43%;
    transform: translateY(-50%);
    z-index: 100;
}

.profit-card {
    position: relative;
    background: url('../images/bg_profit-card.png') no-repeat top center;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    padding: 0 74px;
    margin-bottom: 152px;
}

.profit-card:last-of-type {
    margin-bottom: 0;
}

.profit-card.profit-01::after,
.profit-card.profit-02::after,
.profit-card.profit-03::after {
    content: "";
    position: absolute;
    top: -8.5%;
    left: 4.2%;
    width: 120px;
    height: 158px;
    background-image: url("../images/number-01.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

.profit-card h2 {
    font-size: 44px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 85px;
}

.profit-01 h2 {
    padding-top: 109px;
}

.profit-content {
    display: flex;
    gap: 61px;
    align-items: flex-start;
    padding-bottom: 162px;
}

.profit-left {
    flex: 1 1 0;
}

.profit-right {
    flex: 0 0 510px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 36px auto 0;
}

.profit-right img {
    width: 100%;
    height: auto;
    display: block;
}

.profit-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 483px;
    border-radius: 14px;
    padding: 18px 0 21px 15px;
    margin-bottom: 22px;
}

.row-others {
    border: 3px solid #6A5E95;
}

.row-ours {
    border: 3px solid #FF079E;
}

.profit-label {
    width: 81px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    margin-right: 18px;
    padding: 14px 0 16px;
}

.profit-label.dark {
    background: #333333;
    color: #fff;
}

.profit-label.pink {
    background: #FF079E;
    color: #fff;
}

.profit-row-main {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
}

.row-others .profit-row-main {
    margin-right: 35px;
}

.row-ours .profit-row-main {
    margin-right: 19px;
}

.profit-row-side .side-label {
    display: block;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
}

.profit-row-side.pink .side-label {
    color: #FF079E;
}

.profit-row-side .value {
    display: block;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
}

.profit-row-side.pink .value {
    color: #FF079E;
}

.badge-15x {
    display: flex;
    justify-content: center;
    margin: -6px 0 14px;
}

.badge-15x img {
    display: block;
    height: 51px;
}

.profit-lead {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8;
    margin-top: 28px;
    text-align: left;
}

.profit-figure {
    position: relative;
    width: 382px;
    height: 382px;
}

.profit-figure__core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 363px;
    height: 345px;
    transform: translate(-50%, -50%);
    background: url("../images/pentagon-core.png") no-repeat center;
    background-size: contain;
}

.profit-figure__coreText {
    position: absolute;
    left: 50%;
    top: 54%;
    transform: translate(-50%, -50%);
    margin: 0;
    color: #ffffff;
    font-weight: 800;
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.pf-bubble {
    position: absolute;
    width: 165px;
    height: 165px;
    border-radius: 50%;
    background: #6A5E95;
    color: #fff;
    box-shadow: 0 10px 24px rgba(0,0,0,.25), inset 0 0 30px rgba(255,255,255,.12);
    text-align: center;
    z-index: 3;
}

.pf-bubble p {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 1px;
    padding-bottom: 17px;
}

.pf-bubble span {
    display: block;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 1px;
    padding-bottom: 41px;
}

.pf-bubble--top p,
.pf-bubble--tr p,
.pf-bubble--br p {
    padding-top: 42px;
}

.pf-bubble--bl p,
.pf-bubble--tl p {
    padding-top: 50px;
}

.pf-bubble--top {
    left: 50%;
    top: -20%;
    transform: translateX(-50%);
}
.pf-bubble--tr {
    right: -19%;
    top: 15%;
}
.pf-bubble--br {
    right: -1%;
    bottom: -12%;
}
.pf-bubble--bl {
    left: -1%;
    bottom: -12%;
}
.pf-bubble--tl {
    left: -19%;
    top: 15%;
}

@media (max-width: 767px) {
    .profit-section {
        background: url('../images/bg_profit_sp.jpg') no-repeat top center;
        padding: 64px 0;
    }
    
    .profit-top p {
        width: 200px;
        font-size: 20px;
        margin-left: 21px;
        margin-bottom: 98px;
    }
    
    .profit-top p::after {
        left: -35%;
    }
    
    .profit-side-text-right {
        top: 38%;
        right: 0;
        font-size: 13px;
        letter-spacing: 2px;
    }
    
    .profit-side-text-right::after {
        display: none;
    }

    .profit-card {
        padding: 0 20px;
        margin-bottom: 65px;
    }

    .profit-card.profit-01::after,
    .profit-card.profit-02::after,
    .profit-card.profit-03::after {
        content: "";
        position: absolute;
        top: -1.7%;
        left: 4%;
        width: 54px;
        height: 63px;
        background-image: url("../images/number-01.png");
        background-size: contain;
        background-repeat: no-repeat;
        z-index: 1;
    }

    .profit-card.profit-03::after {
        top: -8.5%;
        width: 120px;
        height: 158px;
        background-image: url("../images/number-03.png");
    }

    .profit-card h2 {
        font-size: 24px;
        margin-bottom: 26px;
    }
    
    .profit-01 h2 {
        padding-top: 59px;
    }

    .profit-row {
        flex-direction: column;
        justify-content: center;
        padding: 14px 20px 15px;
        margin-bottom: 24px;
    }

    .profit-row:last-of-type {
        margin-bottom: 0;
    }
    
    .profit-label {
        width: 54px;
        border-radius: 7px;
        font-size: 14px;
        margin-right: 0;
        margin-bottom: 5px;
        padding: 6px 0 8px;
    }
    
    .profit-row-main {
        font-size: 20px;
        font-weight: 700;
        text-align: center;
    }

    .row-ours .profit-row-main {
        font-size: 18px;
    }
    
    .row-others .profit-row-main,
    .row-ours .profit-row-main {
        margin-right: 0;
        margin-bottom: 4px;
    }

    .profit-row-side {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    
    .profit-row-side .side-label {
        display: inline-block;
        font-size: 13px;
        text-align: left;
        margin-top: 2px;
    }
    
    .profit-row-side.pink .side-label {
        display: inline-block !important;
    }
    
    .profit-row-side .value {
        display: inline-block;
        font-size: 16px;
    }
    
    .badge-15x {
        margin: -6px 0 17px;
    }
    
    .badge-15x img {
        width: 252px;
    }
    
    .profit-lead {
        font-size: 14px;
        line-height: 1.9;
        margin-top: 17px;
    }

    .profit-content {
        flex-direction: column;
        gap: 17px;
        padding-bottom: 14px;
    }

    .profit-right {
        flex: 0 0 310px;
        margin: 0 auto;
    }

    .profit-figure {
        width: 218px;
        height: 218px;
    }
    
    .profit-figure__core {
        width: 210px;
        height: 192px;
    }
    
    .profit-figure__coreText {
        top: 54%;
        font-size: 12px;
        font-weight: 900;
        line-height: 1.6;
    }
    
    .pf-bubble {
        width: 95px;
        height: 95px;
    }
    
    .pf-bubble p {
        font-size: 10px;
        font-weight: 900;
        line-height: 1.35;
        letter-spacing: 1px;
        padding-bottom: 0;
    }
    
    .pf-bubble--top p,
    .pf-bubble--tr p,
    .pf-bubble--br p {
        padding-top: 31px;
    }
    
    .pf-bubble--bl p,
    .pf-bubble--tl p {
        padding-top: 40px;
    }
    
    .pf-bubble--top {
        left: 50%;
        top: -20%;
        transform: translateX(-50%);
    }
    .pf-bubble--tr {
        right: -19%;
        top: 15%;
    }
    .pf-bubble--br {
        right: -1%;
        bottom: -12%;
    }
    .pf-bubble--bl {
        left: -1%;
        bottom: -12%;
    }
    .pf-bubble--tl {
        left: -19%;
        top: 15%;
    }
}

/* profit-02 */
.profit-02 {
    padding-top: 130px;
    padding-bottom: 107px;
}

.profit-02 h2 {
    margin-bottom: 73px;
}

.profit-content-02 {
    display: flex;
    gap: 38px;
    margin-bottom: 65px;
}

.profit-left-02 p {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 28px;
}

.profit-left-02 img {
    width: 558px;
    height: 292px;
}

.profit-row-text {
    font-size: 16px;
    font-weight: 700;
}

.profit-right-02 .profit-row {
    margin-bottom: 19px;
}

.profit-right-02 .profit-lead {
    margin-top: 19px;
}

.roadmap {
    background:#fff;
    border-radius:14px;
    text-align: left;
    padding: 54px 76px 75px;
    margin-bottom: 41px;
}

.roadmap h3 {
    font-family: 'Futura', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-wrap: nowrap;
    color: #6A5E95;
    margin-bottom: 9px;
}

.roadmap p {
    font-size: 16px;
    font-weight: 700;
    color:#000;
    margin-bottom: 49px;
}

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

.check-point h4 {
    display: block;
    text-align: center;
    font-family: 'Futura', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-wrap: nowrap;
    color: #FF079E;
    margin: 0 auto 24px;
}

.check-point ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.check-point li {
    padding: 8px 22px;
    border-radius: 999px;
    border: 3px solid #FF079E;
    color:#000000;
    font-size: 18px;
    font-weight: 700;
}

.profit-card.profit-02::after {
    top: -5%;
    width: 166px;
    height: 155px;
    background-image: url("../images/number-02.png");
}

@media (max-width: 767px) {
    .profit-02 {
        padding-top: 58px;
        padding-bottom: 65px;
    }

    .profit-02 h2 {
        margin-bottom: 44px;
    }

    .profit-content-02 {
        flex-direction: column;
        gap: 35px;
        margin-bottom: 23px;
    }

    .profit-left-02 p {
        font-size: 18px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 28px;
    }

    .profit-left-02 img {
        width: 100%;
        height: auto;
    }

    .profit-02 .profit-row {
        flex-direction: row;
        align-items: center;
        gap: 11px;
        padding: 12px 13px 14px 9px;
        margin-bottom: 24px;
    }

    .profit-02 .profit-label {
        width: 50px;
        border-radius: 7px;
        font-size: 12px;
        margin-top: 7px;
        margin-right: 0;
        padding: 18px 13px 18px;
    }

    .profit-row-text {
        font-size: 14px;
    }

    .profit-row-text span {
        display: inline-block !important;
    }

    .roadmap {
        padding: 28px 17px 23px;
        margin-bottom: 36px;
    }
    
    .roadmap h3 {
        font-size: 24px;
        color: #6A5E95;
        margin-bottom: 8px;
    }
    
    .roadmap p {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .roadmap__viewport {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .roadmap__viewport img {
        display: block;
        width: 949px;
        height: 359px;
    }

    .check-point ul {
        gap: 16px 11px;
    }
    
    .check-point li {
        padding: 8px 20px;
        border-radius: 999px;
        border: 3px solid #FF079E;
        font-size: 14px;
        font-weight: 700;
        color:#000000;
    }

    .profit-card.profit-02::after {
        top: -1%;
        width: 62px;
        height: 62px;
    }
}

/* profit-03 */
.profit-03 {
    padding-top: 106px;
    padding-bottom: 137px;
}

.profit-03 h2 {
    font-weight: 800;
    margin-bottom: 62px;
}

.profit-content-03 {
    display: flex;
    align-items: center;
    gap: 24px;
}

.profit-content-03 .profit-row {
    display: flex;
    justify-content: center;
    max-width: 504px;
    height: 110px;
    padding: 0 22px 0 15px;
    margin-bottom: 44px;
}

.profit-content-03-text {
    position: relative;
    display: block;
    text-align: center;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 30px;
}

.profit-content-03-text::after {
    position: absolute;
    content: "";
    width: 103px;
    height: 1px;
    background: #000;
    top: 52%;
    left: 12%;
    transform: translateY(-50%);
    z-index: 100;
}

.profit-content-03-text::before {
    position: absolute;
    content: "";
    width: 103px;
    height: 1px;
    background: #000;
    top: 52%;
    right: 12%;
    transform: translateY(-50%);
    z-index: 100;
}

.profit-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 31px;
    list-style: none;
    padding: 0;
    margin-bottom: 51px;
}

.profit-icons li {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profit-icons img {
    width: 81px;
    height: 81px;
}

.profit-icons p {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-top: 8px;
}

.and-more {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 43px;
    text-align: center;
}

.and-more-icon {
    display: block;
    width: 85px;
    height: 53px;
    margin: 0 auto 12px;
}

.and-more h4 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 22px;
}

.and-more-image {
    display: block;
    width: 550px;
    height: 286px;
    margin-bottom: 22px;
}

.and-more p {
    font-size: 18px;
    font-weight: 700;
    text-align: left;
}

.profit-card.profit-03::after {
    top: -5.5%;
    width: 146px;
    height: 152px;
    background-image: url("../images/number-03.png");
}

@media (max-width: 767px) {
    .profit-03 {
        padding-top: 53px;
        padding-bottom: 58px;
    }

    .profit-03 h2 {
        margin-bottom: 15px;
    }

    .profit-content-03 {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 44px;
    }

    .profit-content-03 .profit-row {
        flex-direction: row;
        align-items: center;
        gap: 11px;
        height: auto;
        padding: 12px 13px 14px 9px;
        margin-bottom: 0;
    }

    .profit-content-03 .profit-label {
        width: 50px;
        border-radius: 7px;
        font-size: 12px;
        margin-top: 7px;
        margin-right: 0;
        padding: 18px 13px 18px;
    }

    .profit-content-03-text {
        font-size: 16px;
        margin-bottom: 26px;
    }

    .profit-content-03-text::after,
    .profit-content-03-text::before {
        display: none;
    }

    .profit-icons {
        gap: 19px;
        margin-bottom: 44px;
    }
    
    .profit-icons img {
        width: 61px;
        height: 61px;
    }
    
    .profit-icons p {
        font-size: 12px;
        margin-top: 10px;
    }
    
    .and-more {
        flex-direction: column;
        gap: 56px;
    }
    
    .and-more-icon {
        width: 81px;
        height: auto;
        margin: 0 auto 15px;
    }
    
    .and-more h4 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .and-more-image {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
    
    .and-more p {
        font-size: 16px;
        text-align: left;
    }

    .profit-card.profit-03::after {
        top: -1%;
        width: 62px;
        height: 65px;
    }
}

/* profit-04 */
.profit-04 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 41px;
    padding-top: 89px;
    padding-bottom: 73px;
    padding-right: 63px;
    padding-left: 49px;
}

.profit-04 img {
    width: 533px;
    height: auto;
}

.tax-partner-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 19px;
}

.tax-partner-text p {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8;
    margin-bottom: 27px;
}

.tax-partner-text .note {
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .profit-04 {
        flex-direction: column;
        gap: 21px;
        padding-top: 41px;
        padding-bottom: 38px;
        padding-right: 17px;
        padding-left: 16px;
    }

    .profit-04 img {
        width: 100%;
    }

    .tax-partner-text h3 {
        display: block;
        text-align: center;
        font-size: 24px;
        margin-bottom: 17px;
    }

    .tax-partner-text p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 9px;
    }

    .tax-partner-text .note {
        font-size: 14px;
    }
}

/* Users Voice  */
.user-voice-section {
    position: relative;
    color: #fff;
    background: url('../images/bg_user-voice_pc.jpg') center/cover no-repeat;
    padding: 98px 0 155px;
}

.user-voice-section .container {
    max-width: 1240px;
}

.uv-title {
    font-size: 54px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 54px;
}

.uv-list {
   display: block;
}

.uv-card {
    position: relative;
    border: 3px solid #FF079E;
    border-radius: 15px;
    padding: 48px 49px 45px;
    margin-bottom: 74px
}

.uv-card::after {
    content: "";
    position: absolute;
    left: 24px;
    top: -8%;
    width: 117px;
    height: 117px;
    border-radius: 50%;
    background: center/cover no-repeat;
}

.uv-card.is-man::after {
    background-image: url('../images/avatar_man.png');
}

.uv-card.is-women::after {
    background-image: url('../images/avatar_woman.png');
}

.uv-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 45px;
}

.uv-left {
    flex: 1 1;
    display: flex;
    flex-direction: column;
}

.uv-right {
    flex: 1 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.uv-card h3 {
    display: block;
    font-size: 32px;
    font-weight: 900;
    text-align: left;
    margin-left: 107px;  
    margin-bottom: 36px;  
}

.user-about p {
    display: block;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.user-about span {
    display: block;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 42px;
}

.uv-row {
    position: relative;
    display: flex;
    align-items: center;
    width: 572px;
    text-wrap: nowrap;
    margin-bottom: 43px;
}

.uv-row:last-child {
    margin-bottom: 0;
}

.uv-left .user-about + .uv-row::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    width: 33px;
    height: 18px;
    background: url('../images/polygon-arrow.png') center/contain no-repeat;
}

.uv-badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 49px;
    border-radius: 10px 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    padding: 0 25px;
}

.uv-badge--ng {
    background: #2C2E3D;
}

.uv-badge--ok {
    background: #FF079E;
}

.uv-pill {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    border-radius: 0 10px 10px 0;
    background: #fff;
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.uv-text {
    display: block;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.83;
    color: #ffffff;
    margin-top: 8px;
}

.uv-cta {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 522px;
    border-radius: 10px;
    background: #FF079E;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 0 12px;
}

.uv-cta::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
    width: 7px;
    height: 7px;
    border-top: 3px solid rgba(255, 255, 255, 0.6);
    border-right: 3px solid rgba(255, 255, 255, 0.6);
}
  
@media (max-width: 767px) {
    .user-voice-section {
        background: url('../images/bg_user-voice_sp.jpg') center/cover no-repeat;
        padding: 57px 0 68px;
    }

    .uv-title {
        font-size: 24px;
        margin: 0 0 56px;
    }

    .uv-card {
        padding: 79px 21px 43px;
        margin-bottom: 66px
    }

    .uv-card::after {
        left: 24px;
        top: -4%;
        width: 78px;
        height: 78px;
    }

    .uv-content {
        flex-direction: column;
        gap: 29px;
    }
    
    .uv-card h3 {
        font-size: 24px;
        font-weight: 700;
        margin-left: 0;  
        margin-bottom: 28px;  
    }

    .uv-left {
        width: 100%;
    }
    
    .user-about span {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .uv-row {
        width: 100%;
        text-wrap: auto;
        margin-bottom: 43px;
    }
    
    .uv-row:last-child {
        margin-bottom: 0;
    }
    
    .uv-badge {
        height: 41px;
        font-size: 12px;
        padding: 0 13px;
    }
    
    .uv-badge--ok {
        height: 62px;
    }
    
    .uv-pill {
        width: 100%;
        height: 40px;
        font-size: 14px;
        justify-content: flex-start;
        padding-left: 12px;
    }

    .uv-badge--ok + .uv-pill {
        height: 62px;
    }
    
    .uv-text {
        font-size: 16px;
        font-weight: 700;
        line-height: 1.62;
        color: #ffffff;
        margin-top: 0;
    }
    
    .uv-cta {
        width: 100%;
    }
}



/* ==========================================================================
   TRY SECTION
   ========================================================================== */

.try-section {
    position: relative;
    color: #fff;
    background: url('../images/bg_try_pc.jpg') center / cover no-repeat;
    padding: 153px 0 116px;
}

.try-section .container {
    max-width: 1240px;
}

.try-title {
    display: block;
    font-size: 44px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 19px;
}

.try-sub {
    display: block;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 53px;
}

.try-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    margin-bottom: 100px;
}

.try-step {
    position: relative;
}

.try-step:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -14%;
    top: 35%;
    transform: translateY(-50%);
    width: 27px;
    height: 50px;
    background: url('../images/try-arrow.png') center/contain no-repeat;
}

.try-step img {
    display: block;
    width: 336px;
    height: auto;
    margin-bottom: 30px;
}

.try-step p {
    display: block;
    font-size: 24px;
    font-weight: 900;
    text-align: center;
}

.try-badge {
    position: absolute;
    top: -16%;
    width: 129px;
    height: 129px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #000000;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    text-align: center;
}

.try-badge--left {
    left: -16%;
}

.try-badge--right {
    right: -16%;
}

.try-section h3 {
    position: relative;
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 46px;
}

.try-section h3::after {
    position: absolute;
    content: "";
    width: 103px;
    height: 1px;
    background: #ffffff;
    top: 50%;
    left: 35%;
    transform: translateY(-50%);
    z-index: 100;
}

.try-section h3::before {
    position: absolute;
    content: "";
    width: 103px;
    height: 1px;
    background: #ffffff;
    top: 50%;
    right: 35%;
    transform: translateY(-50%);
    z-index: 100;
}

.try-voices {
    position: relative;
    display: block;
    margin-bottom: 123px;
}

.try-voice {
    display: flex;
    align-items: center;
    gap: 39px;
}

.try-avatar {
    width: 117px;
    height: 117px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: center/cover no-repeat;
    padding-left: 34px;
}

.try-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.try-voice p {
    display: block;
    width: 409px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.7;
    color: #fff;
}

.try-voices.slick-initialized {
    display: block;
}

.try-voices .slick-slide { 
    height: auto;
}
.try-voices .slick-slide > div {
     height: 100%; 
}

.try-voices .slick-list {
    overflow: hidden;
}

.try-voices .slick-track {
    display: flex !important;
    gap: 0;
}

.try-voices .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 24px;
    color: #fff;
    cursor: pointer;
    z-index: 2;
}

.try-voices .slick-prev {
    left: -10px;
}
.try-voices .slick-next {
    right: -10px;
}

.try-voices .slick-prev::before,
.try-voices .slick-next::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 12px;
    height: 12px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
}

.try-voices .slick-prev::before {
    transform: rotate(-135deg);
}

.try-voices .slick-next::before {
    transform: rotate(45deg);
}

.try-points {
    position: relative;
    width: 1240px;
    height: 371px;
    background: url('../images/bg_point_pc.png') center/cover no-repeat;
    overflow: hidden;
    padding: 0;
}

.try-points__ribbon {
    position: relative;
    top: 12%;
    left: 0;
    max-width: 864px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
    background: #28213D;
    padding: 15px  0;
    border-radius: 0 10px 10px 0;
    margin-bottom: 17px;
}

.try-points__ribbon p {
    display: inline-block;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1px;
    padding-left: 63px;
}

.try-points__ribbon span {
    display: block;
    font-size: 16px;
    line-height: 1.5;
}

.try-points__text {
    display: block;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.7;
    padding-top: 42px;
    padding-left: 63px;
}

@media (max-width: 767px) {
    .try-section {
        background: url('../images/bg_try_sp.jpg') center / cover no-repeat;
        padding: 57px 0 75px;
    }

    .try-title {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 56px;
    }
    
    .try-steps {
        flex-direction: column;
        gap: 0;
        margin-bottom: 39px;
    }
    
    .try-step:not(:last-child)::after {
        left: 50%;
        top: 83%;
        transform: translateX(-50%) rotate(90deg);
    }
    
    .try-step img {
        width: 100%;
        height: auto;
        margin-bottom: 12px;
    }
    
    .try-step p {
        margin-bottom: 64px;
    }
    
    .try-badge {
        position: absolute;
        top: -7%;
        width: 82px;
        height: 82px;
        font-size: 14px;
    }
    
    .try-badge--left {
        left: -3%;
    }
    
    .try-badge--right {
        right: -3%;
    }

    .try-section h3 {
        margin-bottom: 44px;
    }
    
    .try-section h3::after {
        width: 101px;
        left: -2%;
        top: 60%;
    }
    
    .try-section h3::before {
        width: 101px;
        right: -2%;
        top: 60%;
    }

    .try-voices {
        margin-bottom: 0;
    }
    
    .try-voice {
        flex-direction: column;
        gap: 39px;
    }
    
    .try-avatar {
        padding-left: 0;
    }
    
    .try-voice p {
        width: 100%;
        font-size: 18px;
        margin-bottom: 63px;
    }

    .voice-pc {
        display: none;
    }

    .try-points {
        width: 100%;
        height: 647px;
        background: url('../images/bg_point_sp.png') center/cover no-repeat;
        border-radius: 14px;
    }
    
    .try-points__ribbon {
        top: 8%;
        left: 0;
        max-width: 332px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 18px 0;
        margin-bottom: 21px;
    }
    
    .try-points__ribbon p {
        font-size: 20px;
        padding-left: 20px;
    }
    
    .try-points__ribbon span {
        font-size: 14px;
        padding-left: 20px;
    }
    
    .try-points__text {
        font-size: 16px;
        padding-top: 50px;
        padding-right: 23px;
        padding-left: 20px;
    }
}

/* consult-section */
.consult-section {
    position: relative;
    padding: 134px 0 131px;
    color: #D9D9D9;
    background: #28213D;
    overflow: hidden;
}

.consult-section .container::before {
    content: "";
    position: absolute;
    width: 720px;
    height: auto;
    aspect-ratio: 768 / 997;
    background: url("../images/rainbow_bar01.png") no-repeat center / contain;
    top: 30px;
    left: -800px;
    opacity: .5;
    z-index: -1;
}

.consult-section .container::after {
    content: "";
    position: absolute;
    width: 720px;
    height: auto;
    aspect-ratio: 768 / 997;
    background: url("../images/rainbow_bar01.png") no-repeat center / contain;
    bottom: 20px;
    right: -800px;
    opacity: .5;
    z-index: -1;
}

.consult-section .container {
    position: relative;
    max-width: 610px;
    margin: 0 auto;
    z-index: 1;
}

.consult-title { 
    font-size: 44px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 88px;
}

.consult-dl {
    margin-bottom: 26px;
}

.consult-dl dt {
    font-size: 18px;
    font-weight: 900;
    margin: 23px 0 16px;
}

.consult-dl .req {
    font-size: 18px;
    font-weight: 900;
    color: #FF079E;
    margin-left: 2px;
}

.input,
.detail {
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    color: #000000;
    border: 1px solid#B3B3B3;
    border-radius: 7px;
    padding: 21px 18px 19px;
    font-size: 18px;
    font-weight: 900;
    outline: none;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    color: #000 !important;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
}

.agree {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 98px;
}

.submit-wrap {
    text-align: center;
}

.submit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 404px;
    font-size: 18px;
    font-weight: 900;
    border-radius: 999px;
    color: #fff;
    appearance: none;
    border: 0;
    margin: 0 auto;
    padding: 20px 32px;
    cursor: pointer;
    background: linear-gradient(90deg, #FF079E 0%, #4A08FF 100%);
}

.submit .main-text {
    font-size: 20px;
    font-weight: 900;
}

.submit .sub-text {
    font-size: 10px;
    font-weight: 500;
    margin-top: 4px;
    padding: 1px 8px;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .consult-section {
        padding: 68px 0 58px;
    }

    .consult-title { 
        font-size: 24px;
        margin-bottom: 44px;
    }

    .consult-dl {
        margin-bottom: 38px;
    }

    .agree {
        margin-bottom: 59px;
    }

    .submit {
        width: 100%;
    }
}


/* message */
.message-section {
    position: relative;
    color: #D9D9D9;
    background: url('../images/bg_message_pc.jpg') center / cover no-repeat;
    padding: 107px 0 138px;
}

.message-section h2 {
    display: block;
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 50px;
}

.message-section p {
    display: block;
    max-width: 1037px;
    margin: 0 auto;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.8;
}

@media (max-width: 767px) {
    .message-section {
        background: url('../images/bg_message_sp.jpg') center / cover no-repeat;
        padding: 66px 0 54px;
    }

    .message-section h2 {
        font-size: 24px;
        margin-bottom: 27px;
    }

    .message-section p {
        max-width: 100%;
        font-size: 18px;
        line-height: 1.6;
    }
}

/* footer */
.footer {
    position: relative;
    background-color: #1E1E1E;
    color: #6A5E95;
    padding-top: 62px;
    padding-bottom: 46px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 15px;
}

.footer-links a {
    font-size: 21px;
    font-weight: 700;
    color: #6A5E95;
    text-decoration: none;
}

.footer-copy {
    display: block;
    text-align: center;
    font-size: 21px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .footer {
        padding-top: 26px;
        padding-bottom: 36px;
    }

    .footer-links {
        gap: 20px;
    }

    .footer-links a {
        font-size: 16px;
    }
    
    .footer-copy {
        font-size: 14px;
    }
}

.not-found .consult-title {
    text-align: center;
    font-size: 200px;
    letter-spacing: 20px;
    padding-bottom: 34px;
}

.not-found .thankyou-message {
    margin-bottom: 140px;
}

@media (max-width: 767px) {
    .not-found .consult-title {
        font-size: 100px;
    }
}