@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&family=Zen+Maru+Gothic:wght@700&display=swap');


@font-face {
    font-family: 'JetBrains Mono-Bold';
    src: url('fonts/JetBrainsMono-Bold.woff2') format('woff2'),
        url('fonts/JetBrainsMono-Bold.ttf') format('truetype');
}

* {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}


html,
body {
    margin: 0 auto;
    font-size: 16px;
    width: 100%;
    height: 100%;
    background-color: #fffaf6;
    scroll-behavior: smooth;
    overflow-x: hidden;

}

/* はみ出た要素を見つけるためのデバッグ用スタイル 
* {
    outline: 1px solid red;
}*/

a {
    text-decoration: none;
    color: #40474a;
}

.pc_none {
    display: none;
}

.sp_none {
    display: block;
}

.shrink-wrapper {
    transform: scale(0.7);
    transform-origin: top center;
    font-size: 80%;
}

/*overall*/
.landingpage {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-color: #fffaf6;
}

/*header*/
.landingpage .header {
    display: flex;
    width: 100%;
    height: 55.40px;
    align-items: center;
    gap: 120.00px;
    padding: 0.00px 24.00px;
    position: relative;
    background-color: #fffaf6;
}

.landingpage .logo-area {
    display: flex;
    width: 331.20px;
    height: 46.40px;
    align-items: center;
    position: absolute;
    background-color: #fffaf6;
    z-index: 6;
}

.landingpage .header-logo {
    position: relative;
    width: 90.80px;
    height: 40.40px;
    background-image: url(./img/header-logo.png);
    background-size: cover;
    background-position: 50% 50%;
}

.landingpage .header-company-name {
    position: relative;
    width: 192.00px;
    font-family: "Inter-Bold", Helvetica;
    font-weight: 700;
    color: #40474a;
    font-size: 22.00px;
    letter-spacing: 0;
    line-height: 9.12px;
}

.landingpage .nav {
    position: absolute;
   /* width: 576px;*/
    right: 0px;
    top: 0;
    margin: 0 auto;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
}

.landingpage .nav-item {
    display: flex;
    flex-direction: column;
    width: 144.00px;
    align-items: flex-start;
    gap: 8.00px;
    position: relative;
}

.landingpage .link {
    height: 49.24px;
    position: relative;
    align-self: stretch;
    width: 100%;
}

.landingpage .menu-content {
    position: absolute;
    width: 104.00px;
    height: 12.80px;
    top: 17.60px;
    left: 20.00px;
    font-family: "Noto Sans JP-Regular", Helvetica;
    font-weight: 400;
    color: #4c4c4c;
    font-size: 11.84px;
    text-align: center;
    letter-spacing: 1.82px;
    line-height: 11.84px;
    white-space: nowrap;
}

.landingpage .menu-content:hover {
    /* Default text style */
    color: #000;
    /* fallback */
    background: linear-gradient(192deg, rgba(230, 0, 18, 1) 0%, rgba(255, 7, 72, 0.9) 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    transition: background 0.3s ease;
    filter: brightness(2.0);
}

.menu-text {
    color: #4c4c4c;
}

.landingpage .menu-content:hover .menu-text {
    background: linear-gradient(192deg, rgba(230, 0, 18, 1) 0%, rgba(255, 7, 72, 0.9) 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.landingpage .vertical-divider {
    position: absolute;
    width: 0.80px;
    height: 12.80px;
    top: 18.40px;
    left: 143.20px;
    border-right-width: 0.91px;
    border-right-style: solid;
    border-color: #e6e6e6;
}

/*FV*/
.landingpage .MV {
    display: flex;
    width: 100%;
    height: 593.60px;
    align-items: center;
    position: relative;
}

/* Image Slider */
.image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: 300%;
    /* 3 slides */
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    width: 33.333%;
    /* 3 slides */
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);*/
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 32.00px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 9.60px;
    z-index: 10 !important;
}

.dot {
    width: 9.60px;
    height: 9.60px;
    border-radius: 50%;
    border: 0.80px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.3);
}

.dot.active {
    background: #FFFFFF;
    transform: scale(1.1);
}

/*copy-left*/
.landingpage .mv-copy-left {
    position: absolute;
    width: 20.672rem;
    height: 6.624rem;
    top: 5.6rem;
    left: 0;
    z-index: 6;
    margin-left: -55px;
}

.landingpage .mv-copy-content {
    position: relative;
    height: 110.08px;
    top: -2.048px;
}

.landingpage .copy-area-background {
    position: absolute;
    width: 330.752px;
    height: 108.032px;
    top: 52px;
    left: 0;
}

.landingpage .overlap-group-2 {
    position: absolute;
    width: 330.752px;
    height: 108.032px;
    top: 0;
    left: 0;
}


.landingpage .rectangle {
    position: absolute;
    width: 252.416px;
    height: 33.28px;
    top: 0px;
    left: 0px;
    background: linear-gradient(20deg,
            rgba(230, 0, 18, 1) 0%,
            rgba(255, 7, 72, 0.9) 85%);
    border-radius: 5px;
}

.landingpage .rectangle-1 {
    position: absolute;
    width: 261.152px;
    height: 33.28px;
    top: 37.76px;
    left: 83.2px;
    background: linear-gradient(20deg,
            rgba(230, 0, 18, 1) 0%,
            rgba(255, 7, 72, 0.9) 85%);
    border-radius: 5px;
}

.landingpage .rectangle-2 {
    position: absolute;
    width: 242.175px;
    height: 33.28px;
    top: 75.008px;
    left: 51.2px;
    background: linear-gradient(20deg,
            rgba(230, 0, 18, 1) 0%,
            rgba(255, 7, 72, 0.9) 85%);
    border-radius: 5px;
}

.landingpage .rectangle-3 {
    position: absolute;
    width: 18.432px;
    height: 4.736px;
    top: 70.655px;
    left: 189.952px;
    transform: rotate(180deg);
    background: linear-gradient(192deg,
            rgba(230, 0, 18, 1) 0%,
            rgba(255, 7, 72, 0.9) 85%);
}

.landingpage .rectangle-4 {
    position: absolute;
    width: 18.432px;
    height: 4.736px;
    top: 33.28px;
    left: 162.304px;
    transform: rotate(180deg);
    background: linear-gradient(192deg,
            rgba(230, 0, 18, 1) 0%,
            rgba(255, 7, 72, 0.9) 85%);

}

.landingpage .copy-area {
    position: absolute;
    width: 257.024px;
    height: 110.08px;
    top: 50px;
    left: 36.864px;
}

.landingpage .text-wrapper {
    width: 129.024px;
    height: 33.28px;
    top: -0.512px;
    left: 34px;
    font-size: 20.48px;
    text-align: center;
    line-height: 37.068px;
    white-space: nowrap;
    position: absolute;
    font-family: "YuGothic", Helvetica;
    font-weight: 700;
    color: #fdfcfb;
    letter-spacing: 0;
}

.landingpage .text-wrapper-2 {
    width: 100px;
    height: 33.28px;
    top: 37.888px;
    left: 55.128px;
    font-size: 20.48px;
    text-align: center;
    line-height: 37.068px;
    white-space: nowrap;
    position: absolute;
    font-family: "YuGothic", Helvetica;
    font-weight: 700;
    color: #fdfcfb;
    letter-spacing: 0;
}

.landingpage .text-wrapper-3 {
    width: 186.368px;
    height: 33.28px;
    top: 76.288px;
    left: 35.327px;
    font-size: 20.48px;
    text-align: center;
    line-height: 37.068px;
    white-space: nowrap;
    position: absolute;
    font-family: "YuGothic", Helvetica;
    font-weight: 700;
    color: #fdfcfb;
    letter-spacing: 0;
}

/*copy-right*/

.landingpage .mv-copy-right {
    position: absolute;
    width: 20.672rem;
    height: 6.624rem;
    top: 13.6rem;
    right: 0;
    z-index: 6;
    margin-right: -55px;
}

.landingpage .mv-copy-content-right {
    position: relative;
    height: 110.08px;
    top: 0px;
    transform: scale(0.9);
}

.landingpage .copy-area-background-right {
    position: absolute;
    width: 330.752px;
    height: 108.032px;
    top: 52px;
    left: 0;
}

.landingpage .overlap-group-2-right {
    position: absolute;
    width: 330.752px;
    height: 108.032px;
    top: 0;
    left: 0;
}


.landingpage .rectangle-right {
    position: absolute;
    width: 300.416px;
    height: 45.28px;
    top: -10px;
    right: 120px;
    background: linear-gradient(-20deg, rgba(230, 0, 18, 1) 0%, rgba(255, 7, 72, 0.9) 85%);
    border-radius: 5px;
}

.landingpage .rectangle-1-right {
    position: absolute;
    width: 321.152px;
    height: 45.28px;
    top: 42.76px;
    right: 23.2px;
    background: linear-gradient(-20deg, rgba(230, 0, 18, 1) 0%, rgba(255, 7, 72, 0.9) 85%);
    border-radius: 5px;
}

.landingpage .rectangle-4-right {
    position: absolute;
    width: 18.432px;
    height: 4.736px;
    top: 37.28px;
    left: 122.304px;
    transform: scale(1.8);
    background: linear-gradient(192deg, rgba(230, 0, 18, 1) 0%, rgba(255, 7, 72, 0.9) 85%);
}

.landingpage .copy-area-right {
    position: absolute;
    width: 257.024px;
    height: 110.08px;
    top: 50px;
    left: 36.864px;
}

.landingpage .text-wrapper-right {
    width: 129.024px;
    height: 33.28px;
    top: -5px;
    right: 204px;
    font-size: 25.48px;
    text-align: center;
    line-height: 37.068px;
    letter-spacing: 0.2rem;
    white-space: nowrap;
    position: absolute;
    font-family: "YuGothic", Helvetica;
    font-weight: 700;
    color: #fdfcfb;
}

.landingpage .text-wrapper-2-right {
    width: 100px;
    height: 33.28px;
    top: 49.888px;
    right: 188.128px;
    font-size: 25.48px;
    text-align: center;
    line-height: 37.068px;
    white-space: nowrap;
    position: absolute;
    font-family: "YuGothic", Helvetica;
    font-weight: 700;
    color: #fdfcfb;
    letter-spacing: 0.2rem;
}

.landingpage .wechat-btn-top {
    position: absolute;
    right: -50vw;
    left: 0;
    bottom: 5rem;
    margin: 0 auto;
    max-width: 280px;
    width: 100%;
}

.landingpage .wechat-btn-top-content {
    position: relative;
    bottom: 50px;
    max-width: 280px;
    background-color: rgb(118 158 84 / 90%);
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 10px;
    gap: 0.5rem;
    white-space: nowrap;
}


.landingpage .wechat-btn-top-content:hover {
    background-color: #2dc100;
    cursor: pointer;
}

.landingpage .wechat-btn-top-content img {
    width: 2.5rem;
    height: 2rem;
}

.landingpage .wechat-btn-top-content img:last-child {
    width: 2rem;
    height: 2.5rem;
}

.landingpage .wechat-btn-top-text {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #fff;
    font-weight: 700;
    font-family: "JetBrains Mono-Bold", Helvetica;
    letter-spacing: 0.1rem;
}

/* wechat popup */

button {
    font-size: 16px;
}

/* Popup overlay */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup img {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}


/* Hidden by default */
.hidden {
    display: none;
}

/* Popup content box */
.popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 300px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
}

/* Close button */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}



.landingpage .qr-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999 !important;
}

.landingpage .qr-content {
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    z-index: 999 !important;
}

.landingpage .qr-text {
    font-size: 1.5rem;
    line-height: 1.4;
    white-space: normal;
    text-align: center;
    font-weight: 700;
    font-family: "Zen Maru Gothic", Helvetica, sans-serif;
    color: #2dc100;

}


.landingpage .qr-content img {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}


.landingpage .qr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.landingpage .hidden {
    display: none;
}

.landingpage .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}



/*property*/
.landingpage .property {
    display: flex;
    flex-direction: column;
    width: 851.20px;
    align-items: center;
    gap: 19.20px;
    padding: 96.00px 0.00px;
    margin-top: 60px;
    position: relative;
    background-color: #fffaf5;
}

.landingpage .property-background {
    position: absolute;
    width: 851.20px;
    height: 650.44px;
    top: 0;
    left: 0;
}

.landingpage .marble {
    position: absolute;
    width: 131.20px;
    height: 120.96px;
    top: 5.12px;
    left: 484.48px;
}


.landingpage .property-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.landingpage .div-2 {
    position: relative;
    width: fit-content;
    margin-top: -0.73px;
    font-family: "JetBrains Mono-Bold", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 41.22px;
    text-align: center;
    letter-spacing: 0;
    line-height: 46.34px;
    white-space: nowrap;
}

.landingpage .span {
    font-family: "JetBrains Mono-Bold", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 41.22px;
    letter-spacing: 0;
    line-height: 46.34px;
}

.landingpage .text-wrapper-4 {
    font-size: 26.88px;
}

.landingpage .text-wrapper-5 {
    position: relative;
    width: fit-content;
    font-family: "YuGothic", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 41.22px;
    text-align: center;
    letter-spacing: 0;
    line-height: 46.34px;
    white-space: nowrap;
}

.landingpage .property-content {
    flex-direction: row;
    align-items: center;
    gap: 21.76px;
    position: relative;
    flex: 0 0 auto;
    display: inline-flex;
    position: relative;

}

.landingpage .hidden {
    display: none;
}

.landingpage .property-list {
    display: flex;
    flex-direction: column;
    width: 240px;
    gap: 10.24px;
    align-items: flex-start;
    position: relative;
}

.landingpage .mask-group-2 {
    position: relative;
    width: 240px;
    height: 100%;
}

.landingpage .text-wrapper-6 {
    position: relative;
    align-self: stretch;
    font-family: "Noto Sans JP-Medium", Helvetica;
    font-weight: 500;
    color: #3d3d3d;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20.48px;
}

.landingpage .text-wrapper-7 {
    position: relative;
    align-self: stretch;
    font-family: "Noto Sans JP-Regular", Helvetica;
    font-weight: 400;
    color: #666666;
    font-size: 12px;
    letter-spacing: 0.48px;
    line-height: normal;
}

.landingpage .label {
    position: absolute;
    width: 60.16px;
    height: 16.64px;
    top: 0;
    left: 0;
}

.landingpage .overlap-group-4 {
    position: relative;
    width: 58.88px;
    height: 16.64px;
}


.landingpage .text-wrapper-8 {
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Noto Sans JP-Regular", Helvetica;
    font-weight: 400;
    background: linear-gradient(192deg, rgba(230, 0, 18, 1) 0%, rgba(255, 7, 72, 0.9) 85%);
    padding: 0 10px;
    color: #ffffff;
    font-size: 8px;
    text-align: center;
    letter-spacing: 0;
    line-height: 16.64px;
    white-space: nowrap;
}

.landingpage .more-btn-area {
    position: relative;
    width: 165.12px;
    height: 46.08px;
    margin-top: 30px;
}

.landingpage .overlap-group-5 {
    position: relative;
    height: 46.08px;
}

.landingpage .wa-ptn {
    position: absolute;
    width: 153.60px;
    height: 35.84px;
    top: 10.24px;
    left: 11.52px;
    border-radius: 5px;
}

.landingpage .readmore-button {
    position: absolute;
    width: 153.60px;
    height: 35.84px;
    top: 0;
    left: 0;
    background: linear-gradient(192deg,
            rgba(230, 0, 18, 1) 0%,
            rgba(255, 7, 72, 0.9) 85%);
    border-radius: 5px;
}

.landingpage .readmore-button:hover,
.landingpage .readmore-btn:hover {
    cursor: pointer;
    filter: brightness(2.0);
}

.landingpage .readmore-btn {
    height: 35.84px;
}

.landingpage .readmore {
    position: relative;
    margin: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    width: 100%;
    height: 20.48px;
    /* top: 8.32px; */
    /* left: 60.16px; */
}

.landingpage .readmore-text {
    position: relative;
    /* top: 0; */
    /* left: 0; */
    font-family: "Noto Sans JP-Bold", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 10.24px;
    letter-spacing: 0;
    line-height: 20.48px;
    white-space: nowrap;
}

.landingpage .icon-awesome-angle {
    position: relative;
    width: 3.84px;
    height: 5.76px;
    /* top: 7.04px; */
    /* left: 53.12px; */
}

/*service*/
.landingpage .service {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 19.20px;
    padding: 51.20px 64.00px;
    position: relative;
    max-width: 851.20px;
    height: 650.44;
    flex: 0 0 auto;
    background-color: #fffaf6;
}

.landingpage .service-background {
    position: absolute;
    width: 100%;
    max-width: 851.20px;
    top: 29.44px;
    left: 0;
}

.landingpage .marble-2 {
    position: absolute;
    width: 155.52px;
    height: 128.00px;
    top: -2.75rem;
    left: 144.00px;
}

.landingpage .service-content {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22.40px;
    position: relative;
    flex: 0 0 auto;
}

.landingpage .service-headline {
    display: flex;
    width: 683.52px;
    align-items: flex-start;
    position: relative;
    flex: 0 0 auto;
}

.landingpage .div-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5.90px;
    padding: 5.90px;
    position: relative;
    flex: 0 0 auto;
    display: flex;
    width: 204.80px;
    gap: 12.80px;
    display: inline-flex;
    height: 0.960rem;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 0 0 auto;
    margin-right: -0.120rem;

}

.landingpage .service-description-hi {
    position: relative;
    width: fit-content;
    margin-top: -0.91px;
    background: linear-gradient(192deg,
            rgba(230, 0, 18, 1) 0%,
            rgba(255, 7, 72, 0.9) 85%);
    -webkit-background-clip: text !important;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    font-family: 'Noto Serif JPHiragino Mincho Pro', 'Yu Mincho', serif;
    font-weight: 700;
    color: transparent;
    font-size: 28.29px;
    letter-spacing: 0;
    line-height: 42.69px;
    white-space: nowrap;
    font-style: italic;
}

.landingpage .service-description {
    position: relative;
    width: fit-content;
    margin-top: -0.59px;
    font-family: "YuGothic", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 18.88px;
    letter-spacing: 0;
    line-height: 42.69px;
    white-space: nowrap;
}

.landingpage .service-inner {
    display: flex;
    max-width: 674.56px;
    width: 100%;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
}

.landingpage .service-image {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 350px;
    padding: 0 20px;
    align-items: flex-start;
    gap: 6.40px;
    position: relative;
}

.landingpage .mask-group-3 {
    position: relative;
    width: 100%;
    height: auto;
    max-width: 100%;
}

.landingpage .service-image img {
    display: block;
    width: 100% !important;
    height: auto !important;
}

.landingpage .service-text {
    align-self: stretch;
    margin-top: -0.64px;
    position: relative;
    font-family: "YuGothic", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 15.36px;
    letter-spacing: 0;
    line-height: 30.72px;
    min-width: 324px;
}

/*service-page*/


.landingpage .service-news {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 19.20px;

}

.landingpage .service-news-banner {
    display: flex;
    max-width: 600.56px;
    width: 100%;
    align-items: center;
    gap: 19.2px;
    position: relative;
    flex: 0 0 auto;
}

.landingpage .service-news-banner-image {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 300px;
    align-items: flex-start;
    gap: 6.40px;
    position: relative;
}

.landingpage .service-news-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
    width: fit-content;
    max-width: 674px;
    font-family: "YuGothic", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 18.88px;
    letter-spacing: 0;
    line-height: 42.69px;
    font-style: italic;
}

.landingpage .margin-top {

    margin-top: 30px;

}

.landingpage .service-news-solution {
    display: flex;
    flex-direction: column;
    gap: 19.20px;
    max-width: 674.56px;
    width: 100%;
    position: relative;
    font-family: "YuGothic", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 15.36px;
    letter-spacing: 0;
    line-height: 30.72px;
}

.landingpage .service-inner-scroll-wrapper {
    overflow: hidden;
    display: flex;
    width: 100%;
    max-width: 674.56px;
    position: relative;

}

.landingpage .service-inner-scroll {
    display: flex;
    position: relative;
    align-items: center;
    flex: 0 0 auto;
    gap: 19.2px;
    flex-wrap: nowrap;
    animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.landingpage .service-inner-content {
    display: flex;
    flex-direction: column;
    width: 240px;
    gap: 10.24px;
    flex-shrink: 0;
    align-items: flex-start;
    position: relative;
}

.landingpage .service-inner-text {
    /* align-self: stretch; */
    position: absolute;
    font-weight: 700;
    width: 120px;
    right: 5%;
    bottom: 0;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 30.72px;
}


.landingpage h1 {
    font-size: 1.5rem;
}

.landingpage .cta-area {
    display: flex;
    align-items: center;
    gap: 19.20px;
    position: relative;
    flex: 0 0 auto;
}

.landingpage .wechat-btn-mini {
    position: relative;
    margin: 0 auto;
    max-width: 280px;
    width: 100%;
}

.landingpage .wechat-btn-mini-content {
    background-color: #2dc100;
    position: relative;
    max-width: 280px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 10px;
    gap: 0.5rem;
    white-space: nowrap;
    box-shadow: 0.00px 12.80px 12.80px #00000040;
}

.landingpage .wechat-btn-mini-content:hover {
    background-color: #9BFF49;
    cursor: pointer;
    box-shadow: 0.00px 3.20px 3.20px #00000040;
}

.landingpage .wechat-btn-mini-content img {
    width: 2.5rem;
    height: 2rem;
}

.landingpage .wechat-btn-mini-content img:last-child {
    width: 2rem;
    height: 2.5rem;
}

.landingpage .wechat-btn-top-text {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #fff;
    font-weight: 700;
    font-family: "JetBrains Mono-Bold", Helvetica;
    letter-spacing: 0.1rem;
}

.landingpage .wechat-btn-mini-content.emailbtn {
    background-color: #09d4d7;
    position: relative;
    max-width: 280px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 10px;
    gap: 0.5rem;
    white-space: nowrap;
}

.landingpage .wechat-btn-mini-content.emailbtn:hover {
    background-color: #8BFDFF;
}


/*procedure*/

.landingpage .procedure {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    gap: 19.20px;
    height: auto;
    margin: 100px 0;
}

.landingpage .procedure-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(191deg, rgba(255, 7, 7, 1) 0%, rgba(255, 59, 72, 1) 27%, rgba(255, 131, 163, 1) 65%);

}


.landingpage .procedure-background {
    position: relative;
    width: 100%;
    padding: 0px 0px 50px;
}

.landingpage .overlap-group-6 {
    position: relative;
    width: 723.20px;
    height: 100%;
    margin: 0 auto;
}

.landingpage .vector-3 {
    position: absolute;
    width: 652.80px;
    height: 53.76px;
    top: -30px;
    left: 32.00px;
}

.landingpage .vector-4 {
    position: absolute;
    width: 53.76px;
    height: 57.60px;
    top: -87px;
    left: 684.80px;
}

.landingpage .background-top {
    position: absolute;
    max-width: 851.20px;
    width: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.landingpage .marble-3 {
    position: relative;
    width: 155.52px;
    height: 134.40px;
    top: 117.36px;
    left: 709.76px;
}

.landingpage .background-bottom {
    position: absolute;
    width: 100%;
    max-width: 723.20px;
    height: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.landingpage .marble-4 {
    position: relative;
    width: 155.52px;
    height: 134.40px;
    top: 85%;
    left: -15%;
}

.landingpage .overlap-group-7 {
    position: relative;
    width: 723.20px;
    height: 100%;
    margin: 0 auto;
}

.landingpage .vector {
    position: absolute;
    width: 652.80px;
    height: 53.76px;
    left: 78.72px;
    top: -21px;
}

.landingpage .vector-2 {
    position: absolute;
    width: 53.76px;
    height: 57.60px;
    left: 24.96px;
    top: 30px;
}

.landingpage .procedure-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 30px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    max-width: 723.20px;
    width: 100%;
    align-items: flex-start;
    gap: 64.64px;
    position: relative;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    gap: 19.20px;
    position: relative;
    margin-top: 100px;
}

.landingpage .procedure-title {
    position: relative;
    width: fit-content;
    font-family: "JetBrains Mono-Bold", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 41.22px;
    text-align: center;
    letter-spacing: 0;
    line-height: 46.34px;
    white-space: nowrap;
}

.landingpage .procedure-title-2 {
    position: relative;
    width: fit-content;
    font-family: "YuGothic", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 41.22px;
    text-align: center;
    letter-spacing: 0;
    line-height: 46.34px;
    white-space: nowrap;
}

.landingpage .procedure-highlight {
    position: relative;
    width: fit-content;
    font-family: "YuGothic", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 26.88px;
    letter-spacing: 0;
    line-height: 46.34px;
    white-space: nowrap;
}

.landingpage .procedure-iner {
    display: flex;
    flex-direction: column;
    max-width: 723.20px;
    width: 100%;
    align-items: flex-start;
    gap: 64.64px;
    position: relative;
    flex: 0 0 auto;

}

.landingpage .ul-2 {
    display: flex;
    width: 100%;
    max-width: 723px;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.landingpage .li-3 {
    min-width: 353px;
    width: 100%;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    position: relative;
}


.landingpage .procedure-number {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 49px;
    font-family: "Noto Sans JP-Bold", Helvetica;
    font-weight: 700;
    color: #666666;
    background-color: #ffffff;
    font-size: 12.80px;
    letter-spacing: 0;
    line-height: 28.16px;
    white-space: nowrap;
}

.landingpage .mask-group-4 {
    position: relative;
    width: 100%;
}

.landingpage .li-4 {
    width: 100%;
    min-width: 353px;
    align-items: flex-start;
    gap: 4.48px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.landingpage .procedure-highlight-2 {
    margin-top: -0.81px;
    font-size: 23.04px;
    line-height: 44.80px;
    position: relative;
    align-self: stretch;
    font-family: "YuGothic", Helvetica;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0;
}

.landingpage .procedure-benefit {
    position: relative;
    width: fit-content;
    font-family: "YuGothic", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 19.20px;
    letter-spacing: 0;
    line-height: 40.96px;
}

.landingpage .procedure-detail {
    position: relative;
    align-self: stretch;
    font-family: "YuGothic", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 15.36px;
    letter-spacing: 0;
    line-height: 30.72px;
    padding-bottom: 10px;
}



/*checklist*/
.landingpage .checklist {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 38.40px;
    padding: 50px 24.00px;
    position: relative;
    max-width: 851.20px;
    width: 100%;
    flex: 0 0 auto;
    height: auto;
}

.landingpage .checklist-background {
    position: absolute;
    width: 100%;
}

.landingpage .marble-5 {
    position: absolute;
    width: 155.52px;
    height: 128.00px;
    top: -5.24px;
    left: 557.44px;
}

.landingpage .check-arrow-wa2 {
    position: absolute;
    width: 139.52px;
    height: 137.60px;
    top: -62.72px;
    left: 159.36px;
    transform: rotate(10deg);
}

.landingpage .checklist-main {
    position: relative;
    width: 100%;
    max-width: 851.20px;
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 0 0 auto;
    height: auto;
}

.landingpage .checklist-title {
    flex-direction: column;
    align-items: center;
    gap: 19.20px;
    display: inline-flex;
    position: relative;
    flex: 0 0 auto;
}

.landingpage .checklist-title-1 {
    margin-top: -0.64px;
    font-family: "JetBrains Mono-Bold", Helvetica;
    position: relative;
    width: fit-content;
    font-weight: 700;
    color: #000000;
    font-size: 41.22px;
    text-align: center;
    letter-spacing: 0;
    line-height: 46.34px;
    white-space: nowrap;
}

.landingpage .checklist-title-2 {
    font-family: "YuGothic", Helvetica;
    position: relative;
    padding-bottom: 19.2px;
    width: fit-content;
    font-weight: 700;
    color: #000000;
    font-size: 41.22px;
    text-align: center;
    letter-spacing: 0;
    line-height: 46.34px;
    white-space: nowrap;
}

.landingpage .checkbox-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 640.00px;
    height: auto;
    position: relative;
    background-color: #ffffff;
    border-radius: 38.40px;
    overflow: hidden;
    box-shadow: 0.00px 1.80px 2.80px #00000040;
}

.landingpage .checklist-subtitle {
    align-items: flex-start;
    justify-content: center;
    gap: 12.80px;
    display: inline-flex;
    position: relative;
    flex: 0 0 auto;
    padding-bottom: 1rem;
}

.landingpage .checklist-subtitle-area {
    padding: 0 1.5rem;
    align-items: center;
    text-align: center;
}

.landingpage .p {
    font-size: 1.5rem;
    line-height: 1.4;
    white-space: normal;
    text-align: center;
    font-weight: 700;
}

.landingpage .checklist-subtitle-text {
    font-size: 19.20px;
}

.landingpage .checklist-radio-text {
    position: relative;
    margin-top: 30px;
    width: 62.08px;
    height: 28.16px;
    margin-bottom: 10px;
}

.landingpage .checklist-radio-text-1 {
    position: absolute;
    width: 28.16px;
    top: -14.08px;
    left: 22.40px;
    font-family: "YuGothic-Medium", Helvetica;
    font-weight: 500;
    color: #000000;
    font-size: 10.24px;
    letter-spacing: 0;
    line-height: 22.40px;
}

.landingpage .checklist-radio-text-2 {
    position: absolute;
    width: 44.16px;
    top: 5.12px;
    left: 8.32px;
    font-family: "JetBrains Mono-Bold", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 14.72px;
    letter-spacing: 0;
    line-height: 22.40px;
}

.landingpage .checklist-row {
    display: flex;
    align-items: center;
    gap: 6.40px;
    width: 100%;
}

.landingpage .radio-wrapper {
    display: flex;
    height: 32.64px;
    padding: 5.12px;
    position: relative;
    flex: 1;
    flex-grow: 1;
    border-radius: 5.12px;
    overflow: hidden;
    align-items: flex-start;
    flex-wrap: nowrap;
    /* Prevent awkward vertical alignment */
}

.landingpage .div-4 {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 12.80px;
    justify-content: flex-start;
    flex: 1 1 300px;
    /* Grow and shrink, min width 300px */

}

.landingpage .div-5 {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 12.80px;
    margin: 0 0 0 auto;
    float: right;
    text-align: right;
    justify-content: flex-end;
    flex: 1 1 300px;

    /* Grow and shrink, min width 300px */

}

.landingpage .label-checkbox,
.landingpage .checklist-desc {
    width: auto;
    /* Or use max-width if you want to limit text expansion */
    max-width: 100%;
    white-space: normal;
    /* Allow wrapping instead of overflow */
}

.landingpage .priority,
.landingpage .priority-1,
.landingpage .priority-2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.landingpage .important {
    margin: 0;
    line-height: normal;
}


.landingpage .checkbox_base {
    align-self: flex-end;
}

.landingpage .numbering-bubble {
    align-items: flex-start;
    background-color: #ff4305;
    display: flex;
    flex-direction: column;
    width: 16.00px;
    justify-content: center;
    gap: 12.80px;
    padding: 0.64px 5.12px;
    position: relative;
    border-radius: 8.32px;
}

.landingpage .number {
    position: relative;
    width: fit-content;
    margin-top: -0.64px;
    font-family: "YuGothic-Medium", Helvetica;
    font-weight: 500;
    color: #ffffff;
    font-size: 10.24px;
    letter-spacing: 0;
    line-height: 15.36px;
    white-space: nowrap;
}

.landingpage .label-checkbox {
    position: relative;
    width: 194.56px;

    font-family: "YuGothic", Helvetica;
    font-weight: 700;
    font-size: 14.72px;
    letter-spacing: 0;
    line-height: 22.40px;
}

.landingpage .priority {
    display: inline-flex;
    height: 16.64px;
    align-items: center;
    justify-content: center;
    gap: 12.80px;
    padding: 2.56px 5.76px;
    position: relative;
    flex: 0 0 auto;
    background-color: #ffd104;
    border-radius: 32.00px;
}

.landingpage .important {
    position: relative;
    width: fit-content;
    margin-top: -6.08px;
    margin-bottom: -4.80px;
    font-family: "YuGothic", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 7.68px;
    letter-spacing: 0;
    line-height: 22.40px;
    white-space: nowrap;
}

.landingpage .checklist-desc {
    position: relative;
    width: fit-content;
    margin-top: -0.64px;
    font-family: "YuGothic", Helvetica;
    font-weight: 700;
    color: #616161;
    font-size: 10.24px;
    letter-spacing: 0;
    line-height: 22.40px;
    white-space: nowrap;
}

.checkbox_icon {
    position: relative;
    width: 16.00px;
    height: 16.00px;
    appearance: none;
    background: #FFFFFF;
    border: solid 1.28px #808080;
    border-radius: 3.84px;
    box-shadow: 0 0 0 0 transparent;
    transition-duration: 0.2s;
    transition-property: background-color, border, box-shadow, color;

    /* アイコン：活性時のホバー演出 */
    &:hover:enabled {
        border-color: rgba(255, 7, 7, 1);
        box-shadow: 0 0 0 2.56px #fa6387;
    }

    /* アイコン：選択済みの見た目 */
    &:checked {
        background-image: url("./img/cherry-blossom_1f338.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    /* チェックマーク */
    &::before {
        position: absolute;
        inset: 0;
        display: block;
        top: -3.20px;
        left: -3.20px;
        width: 150%;
        height: 150%;
        content: "";
        opacity: 0;
        mask-repeat: no-repeat;
        mask-size: contain;
        transition: opacity 0.2s;
    }

    /* チェックマーク：選択済みの見た目 */
    &:checked::before {
        opacity: 1;
        position: absolute;
        background-image: url("./img/cherry-blossom_1f338.png");
        cbackground-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }
}

.landingpage .element-wrapper {
    display: flex;
    flex-direction: column;
    width: 16.00px;
    align-items: center;
    justify-content: center;
    gap: 12.80px;
    padding: 0.64px 5.12px;
    position: relative;
    background-color: #c92adb;
    border-radius: 8.32px;
}

.landingpage .priority-1 {
    background-color: #81f3f5;
    display: inline-flex;
    height: 16.64px;
    align-items: center;
    justify-content: center;
    gap: 12.80px;
    padding: 2.56px 5.76px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 32.00px;
}


.landingpage .numbering-bubble-2 {
    align-items: center;
    background-color: #ff4305;
    display: flex;
    flex-direction: column;
    width: 16.00px;
    justify-content: center;
    gap: 12.80px;
    padding: 0.64px 5.12px;
    position: relative;
    border-radius: 8.32px;
}


.landingpage .numbering-bubble-3 {
    align-items: center;
    background-color: #0aba36;
    display: flex;
    flex-direction: column;
    width: 16.00px;
    justify-content: center;
    gap: 12.80px;
    padding: 0.64px 5.12px;
    position: relative;
    border-radius: 8.32px;
}

.landingpage .priority-2 {
    background-color: #fcb6e0;
    display: inline-flex;
    height: 16.64px;
    align-items: center;
    justify-content: center;
    gap: 12.80px;
    padding: 2.56px 5.76px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 32.00px;
}


/*support*/
.landingpage .support {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background-color: #fffaf6;
    margin: 100px 0px;
}

.landingpage .overlap-group-6-support {
    position: relative;
    width: 723.20px;
    height: 100%;
    margin: 0 auto;
}

.landingpage .vector-support {
    position: absolute;
    width: 652.80px;
    height: 53.76px;
    left: 78.72px;
    top: -1px;
}

.landingpage .vector-2-support {
    position: absolute;
    width: 53.76px;
    height: 57.60px;
    left: 24.96px;
    top: 50px;
    z-index: 1;
}

.landingpage .support-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,
            rgba(255, 7, 7, 1) 0%,
            rgba(255, 59, 72, 1) 27%,
            rgba(255, 59, 72, 1) 27%,
            rgba(255, 131, 163, 1) 65%);
    z-index: 0;
    /* Make sure it stays under the content */
    pointer-events: none;
    /* So it doesn't block interaction */
}

.landingpage .support-background {
    position: relative;
    width: 100%;
    z-index: 1;
}


.landingpage .support-background-overlap {
    position: absolute;
    width: 100%;
    max-width: 723px;
    height: 100%;
    right: 0;
    left: 0;
    margin: 0 auto;

}

.landingpage .marble-6 {
    position: relative;
    top: 4.40px;
    left: 112.00px;
    width: 137.60px;
    height: 140.16px;
}

.landingpage .click-arrow-wa {
    position: relative;
    width: 117.12px;
    height: 117.76px;
    top: -0.5rem;
    left: 20rem;
}

.landingpage .support-main {
    max-width: 723.20px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 19.20px;
    padding: 51.20px 64.00px;
    position: relative;
}

.landingpage .overlap-group-7-support {
    position: relative;
    width: 723.20px;
    height: 100%;
    margin: 0 auto;
}


.landingpage .vector-3-support {
    position: absolute;
    width: 602.80px;
    height: 53.76px;
    left: 57px;
    top: -48px;
    z-index: 1;
}

.landingpage .vector-4-support {
    position: absolute;
    width: 53.76px;
    height: 57.60px;
    left: 659.20px;
    top: -100px;
    z-index: 1;
}

.landingpage .support-content {
    position: relative;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 19.20px;
}

.landingpage .support-title {
    position: relative;
    width: fit-content;
    margin-top: -0.73px;
    font-family: "JetBrains Mono-Bold", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 41.22px;
    text-align: center;
    letter-spacing: 0;
    line-height: 46.34px;
    white-space: nowrap;
    z-index: 55;
}

.landingpage .support-title-2 {
    position: relative;
    width: fit-content;
    font-family: "YuGothic", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 41.22px;
    text-align: center;
    letter-spacing: 0;
    line-height: 46.34px;
    white-space: nowrap;
    z-index: 55;
}

.landingpage .support-description {
    position: relative;
    width: 100%;
    max-width: 624.64px;
    height: 110.08px;
}

.landingpage .support-text {
    position: relative;
    width: 100%;
    max-width: 653.44px;
    margin: 0 auto;
    font-family: "YuGothic", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 27.46px;
    text-align: center;
    letter-spacing: 0;
    line-height: 57.60px;
}

.landingpage .wechat-btn {
    position: relative;
    width: 527.36px;
    height: 196.48px;
    background-color: #2dc100;
    border-radius: 32.00px;
    box-shadow: 0.00px 12.80px 12.80px #00000040;
    display: flex;
    align-items: center;
    gap: 21.76px;
    padding: 20px;
}

.landingpage .wechat-btn:hover {
    background-color: #9BFF49;
    cursor: pointer;
    box-shadow: 0.00px 3.20px 3.20px #00000040;
}

.landingpage .wechat {
    position: relative;
    width: 112.00px;
    height: 99.20px;
}

.landingpage .wechat-btn-area {
    display: flex;
    flex-direction: column;
    width: 285.44px;
    align-items: center;
    gap: 7px;
}

.landingpage .wechat-btn1 {
    position: relative;
    align-self: stretch;
    font-weight: 700;
    color: #fdfcfb;
    font-size: 33.28px;
    letter-spacing: 0;
    line-height: normal;
}

.landingpage .wechat-btn2 {
    position: relative;
    align-self: stretch;
    font-family: "Zen Maru Gothic", Helvetica, sans-serif;
    font-weight: 700;
    color: #fdfcfb;
    font-size: 16.19px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
}

.landingpage .wechat-btn3 {
    position: relative;
    align-self: stretch;
    font-family: "Zen Maru Gothic", Helvetica, sans-serif;
    font-weight: 700;
    color: #fdfcfb;
    font-size: 23px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
}

.landingpage .wechat-btn-arrow {
    left: 456.96px;
    position: absolute;
    width: 40.96px;
    height: 40.96px;
    top: 78.08px;
    background-color: #ffffff;
    border-radius: 20.48px;
}

.landingpage .ellipse {
    position: absolute;
    width: 19.20px;
    height: 21.76px;
    top: 10.24px;
    left: 12.80px;
    background-image: url(./img/wechat-arrow.png);
    background-size: contain;
    /* Shrinks image to fit container */
    background-repeat: no-repeat;
    background-position: center;
}


.landingpage .wechat-btn:hover .ellipse {
    position: absolute;
    width: 19.20px;
    height: 21.76px;
    top: 10.24px;
    left: 12.80px;
    background-image: url(./img/wechat-arrow-hover.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.landingpage .email-btn {
    position: relative;
    width: 527.36px;
    height: 196.48px;
    background-color: #09d4d7;
    border-radius: 32.00px;
    box-shadow: 0.00px 12.80px 12.80px #00000040;
    display: flex;
    align-items: center;
    gap: 21.76px;
    padding: 20px;
}

.landingpage .email-btn:hover {
    background-color: #8BFDFF;
    cursor: pointer;
    box-shadow: 0.00px 3.20px 3.20px #00000040;
}

.landingpage .email {
    position: relative;
    width: 106.24px;
    height: 80.00px;
}

.landingpage .ellipse-email {
    position: absolute;
    width: 19.20px;
    height: 21.76px;
    top: 10.24px;
    left: 12.80px;
    background-image: url(./img/email-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.landingpage .email-btn:hover .ellipse-email {
    position: absolute;
    width: 19.20px;
    height: 21.76px;
    top: 10.24px;
    left: 12.80px;
    background-image: url(./img/email-arrow-hover.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}




/*Q&A*/
.landingpage .q-a {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 1216.00px;
    max-height: 1406.00px;
    align-items: center;
    gap: 19.20px;
    padding: 51.20px 94.08px;
    position: relative;
    background-color: #fffaf6;
}

.landingpage .qa-background {
    position: absolute;
    width: 723.20px;
    height: 842.88px;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.landingpage .marble-7 {
    position: absolute;
    width: 155.52px;
    height: 134.40px;
    top: 74.24px;
    left: 557.44px;
}

.landingpage .check-arrow-wa {
    position: absolute;
    width: 125.44px;
    height: 122.24px;
    top: 82.56px;
    left: 38.40px;
}


.landingpage .QA-description {
    position: relative;
    width: 100%;
    max-width: 663.04px;
    height: 52.48px;
    min-width: 460px;
}

.landingpage .q-a-text {
    position: absolute;
    width: 100%;
    max-width: 653.44px;
    top: -3.20px;
    left: 9.60px;
    font-family: "YuGothic", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 27.46px;
    text-align: center;
    letter-spacing: 0;
    line-height: 57.60px;
}

.landingpage .q-a-main {
    gap: 14px;
    display: flex;
    flex-direction: column;
    min-width: 300px;
}

.landingpage .q-a-wrapper {
    position: relative;
    max-width: 613.12px;
    width: 100%;
    margin: 0 auto;
    padding: 14px 20px;
    background-color: #ff83a3;
    box-sizing: border-box;
}

.landingpage .q-a-wrapper:hover {
    transform: scale(1.2);
    cursor: pointer;
}


.landingpage .q-a-2 {
    width: 100%;
    max-width: 511.36px;
    margin: 0 auto;
    font-family: "YuGothic", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 12.80px;
    letter-spacing: 0;
    line-height: 22.40px;
}


/*updates*/
.landingpage .updates {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 76.80px;
    padding: 64.00px 117.60px;
    position: relative;
    flex: 0 0 auto;
    background-color: #fffaf6;
}

.landingpage .update-title {
    display: flex;
    width: 100%;
    max-width: 828.80px;
    height: 71.61px;
    align-items: center;
    justify-content: center;
    gap: 40.00px;
    position: relative;
}

.landingpage .maneki-neko-2 {
    position: relative;
    width: 56.46px;
    height: 71.61px;
}

.landingpage .update-title-2 {
    position: relative;
    width: fit-content;
    font-family: "JetBrains Mono-Bold", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 51.52px;
    text-align: center;
    letter-spacing: 0;
    line-height: 57.92px;
    white-space: nowrap;
}

.landingpage .update-list {
    display: flex;
    flex-direction: column;
    width: 718.40px;
    align-items: flex-start;
    gap: 40.80px;
    position: relative;
    flex: 0 0 auto;
}

.landingpage .header-heading {
    display: inline-flex;
    align-items: center;
    gap: 8.00px;
    position: relative;
    flex: 0 0 auto;
}

.landingpage .update-heading {
    position: relative;
    width: 73.13px;
    height: 22.79px;
    margin-top: -0.91px;
    font-family: "Inter-Bold", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 18.24px;
    letter-spacing: 0;
    line-height: 18.24px;
}

.landingpage .horizontal-divider {
    position: absolute;
    width: 22.40px;
    height: 1.60px;
    top: 52.00px;
    left: 0;
    background-color: #666666;
}

.landingpage .list {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    flex: 0 0 auto;
    margin-right: -0.03px;
    border-top-width: 0.91px;
    border-top-style: solid;
    border-color: #ebeff3;
}

.landingpage .item-link {
    width: 718.43px;
    align-items: center;
    justify-content: space-between;
    padding: 13.60px 0.00px;
    flex: 0 0 auto;
    border-bottom-width: 0.91px;
    border-bottom-style: solid;
    border-color: #ebeff3;
    display: flex;
    position: relative;
}


.landingpage .time {
    font-size: 12.00px;
    position: relative;
    width: 65.30px;
    height: 20.52px;
    margin-top: -0.77px;
    font-family: "Inter-SemiBold", Helvetica;
    font-weight: 600;
    color: #000000;
    letter-spacing: 0;
    line-height: 20.48px;
    white-space: nowrap;
}

.landingpage .update-detail {
    width: 426.40px;
    position: relative;
    height: 20.80px;
    margin-top: -0.91px;
    font-family: "Inter-Regular", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 13.68px;
    letter-spacing: 0;
    line-height: 20.48px;
    white-space: nowrap;
}

/*about*/
.landingpage .about {
    align-items: flex-start;
    align-items: center;
    width: 100%;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #fffaf6;
}

.landingpage .overlap-group-6-about {
    position: relative;
    width: 723.20px;
    height: 130.40px;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.landingpage .vector-3-about {
    position: absolute;
    width: 652.80px;
    height: 53.76px;
    top: 80.80px;
    left: 8.32px;
}

.landingpage .vector-4-about {
    position: absolute;
    width: 53.76px;
    height: 57.60px;
    top: 25px;
    left: 659.20px;
}

.landingpage .about-content {
    width: 100%;
    height: 357.59px;
    align-items: center;
    gap: 32.00px;
    padding: 40.00px 28.00px 100px;
    background-color: #ff83a3;
    display: flex;
    flex-direction: column;
    position: relative;
}

.landingpage .about-title {
    width: 100%;
    align-items: center;
    gap: 20.00px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 auto;
}

.landingpage .contact-title {
    position: relative;
    width: fit-content;
    margin-top: -0.80px;
    font-family: "JetBrains Mono-Bold", Helvetica;
    font-size: 51.52px;
    text-align: center;
    line-height: 57.92px;
    white-space: nowrap;
    font-weight: 700;
    color: #fdfcfb;
    letter-spacing: 0;
}

.landingpage .contact-title2 {
    position: relative;
    width: fit-content;
    font-family: "YuGothic", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 32.00px;
    text-align: center;
    letter-spacing: 0;
    line-height: 25.60px;
    white-space: nowrap;
}

.landingpage .list-2 {
    display: flex;
    align-items: flex-start;
    padding: 0.00px 16.80px;
    position: relative;
    align-self: stretch;
    flex: 0 0 auto;
    margin: 0 auto;
}

.landingpage .item {
    flex-direction: column;
    width: 200.55px;
    align-items: flex-start;
    gap: 20.00px;
    display: flex;
    position: relative;
}

.landingpage .link-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 19.20px;
    flex: 0 0 auto;
    position: relative;
    align-self: stretch;
    width: 100%;
}

.landingpage .company-info-link {
    position: relative;
    min-width: 54.91px;
    margin-top: -0.91px;
    font-family: "Inter-Bold", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 13.68px;
    letter-spacing: 0;
    line-height: 16.40px;
}

.landingpage .horizontal-divider-2 {
    position: relative;
    width: 150px;
    height: 0.91px;
    border-bottom-width: 0.91px;
    border-bottom-style: solid;
    border-color: #ffffff;
}

.landingpage .list-3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6.40px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.landingpage .item-link-2 {
    position: relative;
    width: 47.43px;
    height: 14.22px;
}

.landingpage .text-wrapper-18 {
    position: absolute;
    width: 83.20px;
    height: 14.40px;
    top: -1.60px;
    left: 0;
    font-family: "Inter-Regular", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 11.84px;
    letter-spacing: 0;
    line-height: 14.24px;
    white-space: nowrap;
}



.landingpage .address {
    position: relative;
    width: 150px;
    height: 67px;
    font-family: "YuGothic-Medium", Helvetica;
    font-weight: 500;
    color: #000000;
    font-size: 12.40px;
    letter-spacing: 0;
    line-height: 17.28px;
}


/*footer*/
.landingpage .footer {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    flex: 0 0 auto;
    background-color: #fffaf6;
    margin-bottom: 90px;
}

.landingpage .footer-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    margin-inline: auto;
    max-width: 800px;
    gap: 10px;
}

.landingpage .footer-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
}

.landingpage .footer-logo-img {
    position: relative;
    object-fit: cover;
    margin: 0 auto;
    width: 100%;
    max-width: 109.60px;
    height: 72.80px;
}

.landingpage .footer-company-logo {
    position: relative;
    width: 100%;
    width: 257.60px;
    height: 20px;
    gap: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.landingpage .footer-company-name {
    position: relative;
    width: 100%;
    width: 256.00px;
    height: 9.60px;
    font-family: "YuGothic", Helvetica;
    font-weight: 700;
    color: #3e4a4d;
    font-size: 27px;
    line-height: 9.20px;
}

.landingpage .footer-slogan {
    position: relative;
    width: 100%;
    max-width: 241.60px;
    left: -10px;
    font-family: 'Noto Serif JPHiragino Mincho Pro', 'Yu Mincho', serif;
    font-weight: 700;
    color: #3e4a4d;
    font-size: 16.08px;
    letter-spacing: 0;
    line-height: 4.56px;
}

.landingpage .page-top {
    position: relative;
    width: 100%;
    height: 100%;
}

.landingpage .wa-ptn-ellipse {
    position: fixed;
    width: 63.2px;
    height: 63.2px;
    border-radius: 41.6px;
    background-image: url(./img/wa-ptn-ellipse.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 99;
    bottom: 0.5rem;
    right: 8.5rem;
}

.landingpage .page-top-button {
    position: fixed;
    width: 63.20px;
    height: 63.20px;
    border-radius: 41.60px;
    background: linear-gradient(192deg, rgba(230, 0, 18, 1) 0%, rgba(255, 7, 72, 0.9) 85%);
    z-index: 100;
    bottom: 1rem;
    right: 9rem;
}

.landingpage .page-top-button:hover {
    cursor: pointer;
    filter: brightness(2.0);
}

.landingpage .page-top-arrow {
    position: absolute;
    width: 25.20px;
    height: 30.40px;
    top: 7.20px;
    left: 19px;
}

.landingpage .page-top-text {
    position: absolute;
    top: 29.20px;
    left: 12.20px;
    font-family: 'Noto Serif JPHiragino Mincho Pro', 'Yu Mincho', serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 8px;
    letter-spacing: 0;
    line-height: 25.60px;
    white-space: nowrap;
}

.landingpage .copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8.00px;
    margin: 0 auto;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.landingpage .all-rights-reserved {
    position: relative;
    width: fit-content;
    margin-top: -0.92px;
    font-family: "Inter-Regular", Helvetica;
    font-weight: 400;
    color: #1a1a1a;
    font-size: 7.84px;
    letter-spacing: 0;
    line-height: 9.20px;
    white-space: nowrap;
}


/*fade animation*/
.fade,
.fade_left,
.fade_right {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

/* Animation directions */
.fade {
    transform: translateY(30px);
}

.fade_left {
    transform: translateX(-100px);
}

.fade_right {
    transform: translateX(100px);
}

/* Fade in: visible and back to normal position */
.fade_in {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}


/*wechat banner*/
#wechat-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 250, 246, 0.95);
    color: #2dc100;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-weight: 700;
    font-family: "JetBrains Mono-Bold", Helvetica;
    font-size: 20px;
    z-index: 98 !important;
}

.banner-content {
    padding: 5px;
    justify-content: center;
    display: flex;
    align-items: center;
    max-width: 600px;
    width: 100%;
    cursor: pointer;
}

.banner-main {
    justify-content: center;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 4px;

}

.banner-text {
    max-width: 100px;
    padding: -20px;
}

.banner-flags {
    width: 6rem;
}

.banner-qr {
    width: 3rem;
}

/* close button styling */
#close-banner {
    position: absolute;
    left: -1rem;
    top: -1rem;
    background: white;
    color: #2dc100;
    border: none;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    position: absolute;
    top: 22px;
    right: 20px;
    z-index: 102 !important;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #192f60;
    border-radius: 3px;
    transition: all 0.3s ease;
    z-index: 102 !important;
}


/* ■Hamburger menu animation */
.hamburger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    z-index: 99999 !important;
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    z-index: 99999 !important;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    z-index: 99999 !important;
}

/* ■Mobile Nav Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fffaf6;
    z-index: 90;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    opacity: 0;
    z-index: 101;
}

.mobile-nav-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-nav-content {
    width: 100%;
    text-align: center;
    font-family: "Zen Maru Gothic", Helvetica, sans-serif;
    color: #40474a;
}

.mobile-nav-company-logo {
    background-image: url(./fairbuild-fukuoka.svg);
    background-size: cover;
    background-position: 50% 50%;
    width: 50px;
    height: 50px;
    margin: 0 auto;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin: 0 auto;
    align-content: center;
    width: 100px;
}

.mobile-nav-item {
    margin: 20px 0;
}

.mobile-nav-item:hover .nav-title {
    background: linear-gradient(192deg, rgba(230, 0, 18, 1) 0%, rgba(255, 7, 72, 0.9) 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.mobile-horizontal-divider {
    width: 100%;
    max-width: 100px;
    height: 2.8px;
    background-color: #666666;
    margin: 10px auto;
}

.mobile-contact-info {
    line-height: 4vh;
}



@media (max-width: 1024px) {

    .landingpage .nav {
        display: none;
    }

    .landingpage .list-2 {
        Width: 100%;
    }


    /* ■hamberger-responsive */


    .landingpage .hamburger-menu {
        display: flex;
        cursor: pointer;
    }

    body.menu-open {
        overflow: hidden;
    }

}

@media (max-width: 640px) {

    html,
    body {
        font-size: 14px
    }

    .pc_none {
        display: block;
    }

    .sp_none {
        display: none;
    }


    .landingpage {
        width: 100vw;
    }

    .landingpage .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        padding: 0 0.2rem;
    }

    .landingpage .logo-area {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .landingpage .header-company-name {
        display: none;
    }

    /*MV*/
    .landingpage .MV {
        height: 493px;
    }

    .landingpage .landingpage .procedure,
    .landingpage .checklist,
    .landingpage .support,
    .landingpage .about,
    .landingpage .updates {
        width: 100vw;
    }

    .landingpage .mv-copy-left {
        width: 100vw;
        margin-left: -6rem;
    }

    .landingpage .copy-area {
        transform: translateY(-100px);
        width: 100%;
    }

    .landingpage .copy-area-background {
        width: 100vw;
        transform: translateY(-100px);
    }

    .landingpage .mv-overlay-absolute {
        width: 100vw;
    }

    .landingpage .mv-copy-content,
    .landingpage .mv-copy-content-right {
        transform: scale(0.8);
    }

    .landingpage .overlap-group-2 {
        width: 100vw;
    }

    .landingpage .mv-copy-right {
        top: 10.6rem;
    }

    .landingpage .wechat-btn-top {
        right: 0;
        bottom: 5vh;
        max-width: 100%;
    }

    .landingpage .wechat-btn-top-content {
        padding: 10px;
        gap: 0.5rem;
        margin: 20px;
        max-width: 100%;
        white-space: wrap;
    }

    .landingpage .wechat-btn-top-content img {
        width: 5rem;
        height: 4rem;
    }

    .landingpage .wechat-btn-top-content img:last-child {
        width: 4rem;
        height: 5rem;
    }

    .landingpage .wechat-btn-top-text {
        font-size: 1.4rem;
    }

    /*property*/
    .landingpage .property {
        display: flex;
        flex-direction: column;
        width: 59.111vw;
        gap: 6vw;
        margin-top: 8vw;
    }

    .landingpage .property-background {
        width: 50vw;
        margin: 0 auto;
    }

    .landingpage .marble {
        position: absolute;
        left: 0;
        top: -50px;
    }

    .landingpage .property-content {
        width: 100vw;
        padding: 0 20px;
        gap: 3.733vw;
        flex-direction: column;
    }

    .landingpage .property-list {
        width: 100vw;
        padding: 20px;
    }

    .landingpage .label {
        padding: 20px;
    }

    .landingpage .mask-group-2 {
        position: relative;
        width: 100vw;
        width: 100%;

    }

    /*service*/
    .landingpage .service {

        gap: 15px;
    }

    .landingpage .service-headline {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        width: 100vw;
        /* padding: 10px; */
    }



    .landingpage .service-description {
        width: 100vw;
        line-height: 30.69px;
        text-overflow: wrap;
        flex-wrap: wrap;
        white-space: wrap;
        margin-bottom: -20px;
        margin-top: -10px;
        padding: 20px;
    }

    .landingpage .service-inner {
        flex-direction: column;
        width: 100vw;
        gap: 19.20px;
    }


    .landingpage .text-left-center {
        align-items: center;
        padding: 0 10px;
        text-align: left;
        font-weight: 700;
    }

    .landingpage .service-text {
        padding: 0 20px;
        letter-spacing: -1px;
    }

    .landingpage .text-wrapper-5 {

        white-space: wrap;
    }


    .landingpage .service-news-headline,
    .landingpage .service-news-solution {
        width: 100vw;
        line-height: 30.69px;
        white-space: wrap;
        margin-bottom: -20px;
        margin-top: -10px;
        padding: 20px;
    }

    .landingpage .service-news-banner {

        overflow-x: scroll;
        max-width: 400px;
    }


    .landingpage .cta-area {
        flex-direction: column;
        gap: 0;
    }

    .landingpage .wechat-btn-mini {
        position: relative;
        margin: 0 auto;
        max-width: 100%;
    }

    .landingpage .wechat-btn-mini-content,
    .landingpage .wechat-btn-mini-content.emailbtn {
        padding: 10px;
        gap: 0.5rem;
        margin: 20px;
        max-width: 100%;
        white-space: wrap;
    }

    .landingpage .wechat-btn-mini-content img {
        width: 5rem;
        height: 4rem;
    }

    .landingpage .wechat-btn-mini-content img:last-child {
        width: 4rem;
        height: 5rem;
    }

    .landingpage .wechat-btn-mini-text {
        font-size: 1.4rem;
    }




    /*procedure*/


    .landingpage .overlap-group-6 {
        width: 90vw;
        margin: 0;
    }

    .landingpage .background-top {
        width: 100vw
    }

    .landingpage .marble-3 {
        top: 0px;
        left: 200px;
    }

    .landingpage .marble-4 {
        position: relative;
        width: 155.52px;
        height: 134.40px;
        top: 96%;
        left: 10%;
        z-index: 1;
    }

    .landingpage .procedure-content {
        margin-bottom: 0px;
    }

    .landingpage .procedure-highlight {
        font-size: 19px;
        line-height: 35px;
        margin: 0 auto;
        white-space: wrap;
    }

    .landingpage .ul-2 {
        display: flex;
        flex-direction: column;

    }


    .landingpage .reverse {
        flex-direction: column-reverse;
    }

    .landingpage .vector-about {
        width: 70vw;
        top: 2080px;
    }

    .landingpage .vector-support {
        width: 70vw;
    }

    .landingpage .vector-2-support,
    .landingpage .vector-2-about {
        width: 15vw;
    }

    .landingpage .vector-3 {
        width: 70vw;
        left: 55px;
    }

    .landingpage .vector-3-support {
        width: 70vw;
        left: 55px;
    }

    .landingpage .vector-4,
    .landingpage .vector-4-support {
        width: 15vw;
        left: 0;
    }

    .landingpage .vector-2-support {
        width: 15vw;
    }

    .landingpage .procedure-inner {
        width: 100vw;
        padding: 20px;
    }

    .landingpage .li-3 {
        min-width: 300px;
    }

    /*checklist*/


    .landingpage .checklist-main {
        width: 100vw;
    }

    .landingpage .checklist-background {
        position: absolute;
        width: 100%;
        max-width: 370px;
    }

    .landingpage .check-arrow-wa2 {
        left: -10%;
        transform: scale(0.8) !important;
    }

    .landingpage .marble-5 {
        left: 50%;
        top: -6rem;
    }

    .landingpage .checkbox-group {
        width: 90vw;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .landingpage .checklist-subtitle {
        flex: auto;
    }


    .landingpage .checklist-subtitle-area {
        padding: 0;
    }

    .landingpage .checklist-subtitle-text {
        font-size: 16px;
    }

    .landingpage .checkbox {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        flex: 0 1 calc(50% - 16px);
        /* 2 items per row with spacing */
        display: flex;
        width: 80vw;
        margin: 0 auto;
    }

    .landingpage .checkbox {
        flex: 0 1 calc(50% - 16px);
        /* 2 items per row with spacing */
        display: flex;
        width: 80vw;
        margin: 0 auto;
    }


    .landingpage .radio-wrapper {
        flex-wrap: wrap;
        width: 100%;
        height: 100%;
    }

    .landingpage .div-4,
    .landingpage .div-5 {
        flex: 1;
    }

    .landingpage .div-5 {
        margin-right: 12.8px;
    }



    /*support*/

    .landingpage .support {
        padding: 0px;

    }

    .landingpage .support-background {
        height: 100%;
    }

    .landingpage .support-main {
        height: 100%;
        padding: 20px;
    }

    .landingpage .overlap-group-6-support {
        width: 90vw;
        margin: 0;
    }

    .landingpage .marble-6 {
        left: 1rem;
        top: -1rem;
    }

    .landingpage .click-arrow-wa {
        left: 15rem;
        top: -10px;
    }

    .landingpage .support-content {
        transform: scale(0.65) !important;
        margin-top: -100px;
    }

    .landingpage .support-description {
        margin-bottom: 20px;
    }


    .landingpage .support-text {
        font-size: 1.5rem;
        line-height: 35px;
    }

    /*qa*/
    .landingpage .qa-background {
        width: 100vw;
    }

    .landingpage .check-arrow-wa {
        left: 0px;
        top: 60px;
    }

    .landingpage .QA-description {
        transform: scale(0.65);
    }

    .landingpage .q-a-main {
        margin-top: 30px;
    }


    /*updates*/
    .landingpage .update-title {
        flex-direction: column;
        gap: 0px;
    }

    .landingpage .update-title-2 {
        transform: scale(0.6);
    }

    .landingpage .update-list {
        width: 80vw;
    }

    .landingpage .update-detail {
        font-size: 0.8rem;
        white-space: normal;

    }

    /*about*/
    .landingpage .about-content {
        height: 100%;
    }

    .landingpage .item-link {
        width: 80vw;
        gap: 1vw;
    }

    .landingpage .vector-3-about {
        width: 70vw;
    }

    .landingpage .vector-4-about {
        left: 70vw;
        margin: 0 auto;
    }

    .landingpage .overlap-group-6-about {
        width: 70vw;
    }

    .landingpage .list-2 {
        grid-template-columns: 1fr 1fr;
        display: grid;
        gap: 15px;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
    }

    .landingpage .item {
        width: 155.55px;
        gap: 10.00px;
    }

    .landingpage .link-2 {
        gap: 15px;
    }

    /*footer*/
    .landingpage .footer {}

    .landingpage .footer-main {
        padding: 0px;
    }

    .landingpage .footer-company-name {
        font-size: 27px;
        letter-spacing: 5px;
    }

    .landingpage .footer-slogan {
        font-size: 13px;
    }

    .landingpage .wa-ptn-ellipse {
        bottom: 8px;
        right: 5px;
    }

    .landingpage .page-top-button {
        bottom: 15px;
        right: 2px;
    }

    /*wechat banner*/
    #wechat-banner {
        font-size: 18px;
    }

    .banner-content {
        padding: 5px 0;
        max-width: 350px;
        width: 100%;
        gap: 10px;
        margin-left: -20px;
    }

    .banner-main {
        white-space: wrap;
    }

    .banner-qr,
    .banner-flags {
        width: 3rem;
    }
}

/* ============================================
   Blog Page Styles
   ============================================ */

.blog-page {
    padding: 80px 0 60px;
    min-height: 100vh;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Blog Header */
.blog-header {
    margin-bottom: 40px;
    text-align: center;
}

.blog-header-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.blog-title-en {
    font-family: 'JetBrains Mono-Bold', Helvetica;
    font-size: 41.22px;
    font-weight: 700;
    color: #333;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.blog-title-ja {
    font-family: "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 41.22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.blog-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 10px;
}

/* Main Blog Area */
.blog-main {
    flex: 1;
    min-width: 0;
}

/* Blog Posts Grid: 2 columns x 3 rows */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Blog Post Card */
.blog-post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.blog-post-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(192deg, rgba(230, 0, 18, 1) 0%, rgba(255, 7, 72, 0.9) 85%);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.blog-post-content {
    padding: 20px;
}

.blog-post-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 12px;
    color: #999;
}

.blog-post-date,
.blog-post-author {
    font-size: 12px;
    color: #999;
}

.blog-post-title {
    font-family: "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: #d32f2f;
}

.blog-post-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(192deg, rgba(230, 0, 18, 1) 0%, rgba(255, 7, 72, 0.9) 85%);
    font-size: 12px;
    color: #fff;
}

/* Sidebar */
.blog-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.sidebar-section {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sidebar-title {
    font-family: "JetBrains Mono-Bold", Helvetica;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eee;
}

/* What's New List */
.whats-new-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.whats-new-item {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.whats-new-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.whats-new-header {
    margin-bottom: 10px;
}

.whats-new-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.whats-new-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.whats-new-title a:hover {
    color: #d32f2f;
}

.whats-new-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: #999;
}

.whats-new-author,
.whats-new-date {
    font-size: 12px;
    color: #999;
}

.whats-new-category {
    background: linear-gradient(192deg, rgba(230, 0, 18, 1) 0%, rgba(255, 7, 72, 0.9) 85%);
    padding: 2px 8px;
    font-weight: 600;
    color: #fff;
    font-size: 12px;
}

/* Category Tags */
.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-tag {
    display: inline-block;
    padding: 8px 14px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 12px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-tag:hover {
    background: linear-gradient(192deg, rgba(230, 0, 18, 1) 0%, rgba(255, 7, 72, 0.9) 85%);
    color: #fff;
    transform: translateY(-2px);
}

/* Blog Page Responsive Design */
@media (max-width: 968px) {
    .blog-container {
        flex-direction: column;
        gap: 30px;
    }

    .blog-sidebar {
        width: 100%;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
    }

    .blog-title-en,
    .blog-title-ja {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .blog-page {
        padding: 60px 0 40px;
    }

    .blog-container {
        padding: 0 15px;
    }

    .blog-title-en,
    .blog-title-ja {
        font-size: 28px;
    }

    .blog-subtitle {
        font-size: 16px;
    }

    .blog-post-card {
        margin-bottom: 20px;
    }

    .blog-post-image {
        height: 180px;
    }

    .blog-post-title {
        font-size: 18px;
    }

    .sidebar-section {
        padding: 20px;
    }

    .sidebar-title {
        font-size: 20px;
    }
}

/* ============================================
   Contact Page Styles
   ============================================ */

.contact-page {
    padding: 100px 0 80px;
    min-height: 100vh;
    background-color: #fffaf6;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.contact-title-en {
    font-family: 'JetBrains Mono-Bold', Helvetica;
    font-size: 41.22px;
    font-weight: 700;
    color: #333;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-title-ja {
    font-family: "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 41.22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-family: "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-optional {
    font-size: 12px;
    font-weight: 400;
    color: #999;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 14px;
    color: #333;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #d32f2f;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.file-upload-area {
    border: 2px dashed #ddd;
    border-radius: 6px;
    padding: 40px 20px;
    text-align: center;
    background: #fafafa;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.file-upload-area:hover,
.file-upload-area.drag-over {
    border-color: #d32f2f;
    background: #fff5f5;
}

.file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.file-upload-icon {
    font-size: 32px;
}

.file-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 12px;
}

.file-name {
    color: #333;
    font-weight: 500;
}

.file-size {
    color: #999;
}

.form-submit {
    margin-top: 32px;
    text-align: center;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(192deg, rgba(230, 0, 18, 1) 0%, rgba(255, 7, 72, 0.9) 85%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.submit-button:hover .submit-arrow {
    transform: translateX(4px);
}

/* Privacy Policy Section */
.privacy-policy-group {
    margin-top: 32px;
    margin-bottom: 24px;
}

.privacy-policy-text {
    max-height: 400px;
    overflow-y: auto;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 20px;
    font-family: "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 12px;
    line-height: 1.8;
    color: #333;
}

.privacy-policy-text p {
    margin-bottom: 12px;
}

.privacy-policy-text strong {
    font-weight: 700;
    color: #000;
}

.privacy-policy-text ul {
    margin: 8px 0 12px 20px;
    padding-left: 0;
}

.privacy-policy-text ul li {
    margin-bottom: 6px;
    list-style-type: disc;
}

.privacy-policy-text ul ul {
    margin-left: 20px;
    margin-top: 6px;
}

.privacy-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-family: "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.privacy-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #d32f2f;
}

.privacy-checkbox-text {
    flex: 1;
    font-weight: 500;
}

/* Contact Page Responsive Design */
@media (max-width: 968px) {
    .contact-page {
        padding: 80px 0 60px;
    }

    .contact-title-en,
    .contact-title-ja {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 640px) {
    .contact-page {
        padding: 60px 0 40px;
    }

    .contact-title-en,
    .contact-title-ja {
        font-size: 28px;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .contact-form {
        padding: 24px 16px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .submit-button {
        width: 100%;
        justify-content: center;
    }

    .privacy-policy-text {
        max-height: 300px;
        padding: 16px;
        font-size: 11px;
    }

    .privacy-checkbox-label {
        font-size: 13px;
    }
}