body {
    margin: 0 0 -8px 0;
    font-family: "Noto Sans JP", serif;
    font-weight: 600;
    font-style: normal;
    scroll-behavior: smooth;
    background: var(--local3, linear-gradient(95deg, #F5B802 3.56%, #F5AA02 100.07%));
}

.bg {
    position: absolute;
    min-width: 1360px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    background-position: top;
    z-index: -10;
}

.bg1 {
    background-image: url(./image/ing_bg1.png);
    top: 0;
    width: 100%;
    height: 1080px;
}

.bg2 {
    background-image: url(./image/ing_bg2.png);
    top: 970px;
    width: 100%;
    height: 917px;
}

.bg3 {
    background-image: url(./image/ing_bg3.png);
    top: 2160px;
    width: 100%;
    height: 1181px;
}

.bg4 {
    background-image: url(./image/ing_bg4.png);
    top: 4270px;
    width: 100%;
    height: 2196px;
}


.bg5 {
    background-image: url(./image/ing_bg3.png);
    top: 6370px;
    width: 100%;
    height: 1000px;
}

@media screen and (max-width: 499px) {
    .bg {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        background-position: left;
    }
    
    .bg1 {
        background-image: url(./image/sp_ing_bg1.png);
        top: 30px;
        width: 750px;
        height: 964px;
    }
    
    .bg2 {
        background-image: url(./image/sp_ing_bg1.png);
        top: 1365px;
        width: 750px;
        height: 964px;
    }
    
    .bg3 {
        background-image: url(./image/sp_ing_bg3.png);
        top: 2600px;
        width: 750px;
        height: 1555px;
    }
    
    .bg4 {
        background-image: url(./image/sp_ing_bg4.png);
        top: 5550px;
        width: 750px;
        height: 3087px;
    }

    .bg5 {
        background-image: url(./image/sp_ing_bg3.png);
        top: 7850px;
        width: 750px;
        height: 700px;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #FFF;
    box-shadow: 0 4px 12px 8px rgba(0, 0, 0, 0.08);
}

.header .headerContainer {
    display: flex;
    min-width: 1360px;
    max-width: 1360px;
    padding: 26px 36px;
    height: 84px;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    transition: height 0.2s ease, padding 0.2s ease;
}

.header .headerContainer.scrolled {
    height: 64px;
    padding: 18px 36px;
}

.header .headerContainer .leftContainer {
    display: flex;
    align-items: center;
    gap: 48px;
}

.header .headerContainer .leftContainer .pcLogo {
    display: block;
}

.header .headerContainer .leftContainer .spLogo {
    display: none;
}

.header .headerContainer .leftContainer .navContainer {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

.header .headerContainer .leftContainer .navContainer a {
    color: #28201E;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.header .headerContainer .pcRightContainer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header .headerContainer .pcRightContainer .btn {
    display: flex;
    padding: 8px 20px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 100px;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    border: 2px solid #28201E;
}

.header .headerContainer .pcRightContainer .btn-black {
    background: #28201E;
    color: #FFF;
}

.header .headerContainer .pcRightContainer .btn-white {
    color: #28201E;
}

.header .headerContainer .pcRightContainer .btn-white:hover {
    background: #28201E;
    color: #FFF;
}

.header .headerContainer .spRightContainer {
    display: none;
}

/* Mobile Menu Overlay */
.mobileMenuOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobileMenuOverlay.active {
    display: block;
    opacity: 1;
}

.mobileMenuContent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFF;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobileMenuOverlay.active .mobileMenuContent {
    transform: translateY(0);
}

.mobileMenuHeader {
    display: flex;
    min-width: 100%;
    max-width: 100%;
    padding: 16px 32px;
    height: 64px;
    justify-content: space-between;
    align-items: center;
}

.mobileMenuLogo {
    display: flex;
    align-items: center;
}

.mobileMenuClose {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.mobileMenuNav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px;
}

.mobileMenuNav a {
    color: #28201E;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    text-decoration: none;
}

.mobileMenuButtons {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px;
}

.mobileMenuButtons .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 20px;
    border-radius: 100px;
    font-family: "Noto Sans JP";
    font-size: 16px;
    line-height: 100%;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobileMenuButtons .btn-white {
    background: #FFF;
    color: #28201E;
    border: 2px solid #28201E;
}

.mobileMenuButtons .btn-white:hover {
    background: #28201E;
    color: #FFF;
}

.mobileMenuButtons .btn-black {
    background: #28201E;
    color: #FFF;
    border: 2px solid #28201E;
}

@media screen and (max-width: 499px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: #FFF;
        box-shadow: 0 4px 12px 8px rgba(0, 0, 0, 0.08);
    }
    
    .header .headerContainer {
        display: flex;
        min-width: 100%;
        max-width: 100%;
        padding: 16px 32px;
        height: 64px;
        justify-content: space-between;
        align-items: center;
        transition: height 0.2s ease, padding 0.2s ease, margin-top 0.2s ease;
    }
    
    .header .headerContainer.scrolled {
        height: 64px;
        padding: 16px 32px;
        margin-top: 0;
    }
    
    .header .headerContainer .leftContainer {
        display: flex;
        align-items: center;
        gap: 0;
    }

    .header .headerContainer .leftContainer .pcLogo {
        display: none;
    }

    .header .headerContainer .leftContainer .spLogo {
        display: block;
    }
    
    .header .headerContainer .leftContainer .navContainer {
        display: none
    }

    .header .headerContainer .pcRightContainer {
        display: none;
    }
    
    .header .headerContainer .spRightContainer {
        display: flex;
        align-items: center;
    }
}

.reworeSection1 {
    display: flex;
    min-width: 1360px;
    max-width: 1360px;
    padding: 68px 0 42px 96px;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 96px;
    transition: margin-top 0.4s ease; /* Smooth transition for margin-top changes */
}

.reworeSection1 .leftContainer {
    width: 591px;
    flex-shrink: 0;
    align-self: stretch;
}

.reworeSection1 .leftContainer .contentTitle {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    /* gap: 12px; */
    align-self: stretch;
    color: #000;
    text-align: center;
    text-shadow: 4px 4px 58px rgba(102, 102, 102, 0.16);
    font-family: "Noto Sans JP";
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: -0.8px;
    margin-top: 24px;
}

.reworeSection1 .leftContainer .bodyContainer {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
    margin-top: 22px;
}

.reworeSection1 .leftContainer .bodyContainer .contentSubText {
    align-self: stretch;
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 27px */
    letter-spacing: 0.45px;
}

.animateButtonContainer {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

@keyframes rotate {
	100% {
		transform: rotate(1turn);
	}
}

.animateButtonContainer .rainbow-black {
	color: white;
	position: relative;
	z-index: 0;
	border-radius: 100px;
	overflow: hidden;
	padding: 16px 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: sans-serif;
	font-weight: bold;
	border: 1px solid #28201E;
	
	&::before {
		content: '';
		position: absolute;
		z-index: -2;
		left: -20%;
		top: -185%;
		width: 300px;
		height: 300px;
		background-color: #28201E;
		background-repeat: no-repeat;
		background-size: 50% 50%, 50% 50%;
		background-position: 0 0, 100% 0, 100% 100%, 0 100%;
		background-image: linear-gradient(#F5AA0200, #F5AA02), linear-gradient(#F5AA0200, #F5AA02), linear-gradient(#F5AA0200, #F5AA02), linear-gradient(#F5AA0200, #F5AA02);
		animation: rotate 4s linear infinite;
	}
	
	&::after {
		content: '';
		position: absolute;
		z-index: -1;
		left: 6px;
		top: 6px;
		width: calc(100% - 12px);
		height: calc(100% - 12px);
		background: #28201E;
		border-radius: 100px;
	}

    a {
        color: white;
        font-family: "Noto Sans JP";
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-decoration: none;
    }
    
    /* iOS Safari link styling fixes */
    a:visited {
        color: white;
        text-decoration: none;
    }
    
    a:hover {
        color: white;
        text-decoration: none;
    }
    
    a:active {
        color: white;
        text-decoration: none;
    }
    
    a:focus {
        color: white;
        text-decoration: none;
        outline: none;
    }
}

.animateButtonContainer .rainbow-white {
	color: #28201E;
	position: relative;
	z-index: 0;
	border-radius: 100px;
	overflow: hidden;
	padding: 16px 64px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: sans-serif;
	font-weight: bold;
	border: 1px solid #28201E;
	
	&::before {
		content: '';
		position: absolute;
		z-index: -2;
		left: -20%;
		top: -185%;
		width: 300px;
		height: 300px;
		background-color: #28201E;
		background-repeat: no-repeat;
		background-size: 50% 50%, 50% 50%;
		background-position: 0 0, 100% 0, 100% 100%, 0 100%;
		background-image: linear-gradient(#F5AA0200, #F5AA02), linear-gradient(#F5AA0200, #F5AA02), linear-gradient(#F5AA0200, #F5AA02), linear-gradient(#F5AA0200, #F5AA02);
		animation: rotate 4s linear infinite;
	}
	
	&::after {
		content: '';
		position: absolute;
		z-index: -1;
		left: 6px;
		top: 6px;
		width: calc(100% - 12px);
		height: calc(100% - 12px);
		background: white;
		border-radius: 100px;
	}

    a {
        color: #28201E;
        font-family: "Noto Sans JP";
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-decoration: none;
    }
    
    /* iOS Safari link styling fixes */
    a:visited {
        color: #28201E;
        text-decoration: none;
    }
    
    a:hover {
        color: #28201E;
        text-decoration: none;
    }
    
    a:active {
        color: #28201E;
        text-decoration: none;
    }
    
    a:focus {
        color: #28201E;
        text-decoration: none;
        outline: none;
    }
}

.animateButtonContainer .buttonItem {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: 1px solid #28201E;
}

.animateButtonContainer .buttonItem .btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: none; /* Remove static border */
    border-radius: 100px;
    overflow: hidden;
}

/* Flowing border animation */
.animateButtonContainer .buttonItem .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #F5AA02, #28201E, #F5AA02, #28201E, #F5AA02);
    background-size: 400% 400%;
    border-radius: 100px;
    padding: 5px; /* This creates the 5px border thickness */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    animation: flowingBorder 3s ease-in-out infinite;
    z-index: 0;
}

/* Ensure button content is above the flowing border */
.animateButtonContainer .buttonItem .btn-black,
.animateButtonContainer .buttonItem .btn-white {
    position: relative;
    z-index: 1;
}

@keyframes flowingBorder {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animateButtonContainer .buttonItem .btn-black {
    padding: 16px 48px;
    background: #28201E;
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
}

.animateButtonContainer .buttonItem .btn-white {
    padding: 16px 64px;
    background: #fff;
    color: #28201E;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
}

.reworeSection1 .rightContainer {
    position: relative;
    margin-left: 20px;
}

.reworeSection1 .rightContainer .spImage {
    position: absolute;
    left: -5px;
    bottom: 17px;
}

.reworeSection1 .topContainer {
    display: none;
}

.reworeSection1 .bottomContainer {
    display: none;
}

@media screen and (max-width: 499px) {
    .reworeSection1 {
        display: flex;
        min-width: 100%;
        max-width: 100%;
        padding: 0 20px 40px 20px;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        align-self: stretch;
    }

    .reworeSection1 .leftContainer {
        display: none;
    }

    .reworeSection1 .rightContainer {
        display: none;
    }    
    
    .reworeSection1 .topContainer {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 16px;
    }

    .reworeSection1 .bottomContainer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        gap: 12px;
    }

    .reworeSection1 .bottomContainer .title {
        align-self: stretch;
        color: #28201E;
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 24px;
        font-style: normal;
        font-weight: 900;
        line-height: 139%; /* 33.36px */
        letter-spacing: -0.48px;
    }

    .reworeSection1 .bottomContainer .subText {
        align-self: stretch;
        color: #28201E;
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 154%; /* 21.56px */
    }

    .animateButtonContainer {
        display: flex;
        align-items: center;
        gap: 14.909px;
        justify-content: center;
        width: 100%;
    }

    .animateButtonContainer .rainbow-black {
        color: white;
        position: relative;
        z-index: 0;
        border-radius: 83.088px;
        overflow: hidden;
        padding: 12.424px 23.454px 12.576px 23.607px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: sans-serif;
        font-weight: bold;
        border: 1px solid #28201E;
        
        &::before {
            content: '';
            position: absolute;
            z-index: -2;
            left: -20%;
            top: -150%;
            width: 200px;
            height: 200px;
            background-color: #28201E;
            background-repeat: no-repeat;
            background-size: 50% 50%, 50% 50%;
            background-position: 0 0, 100% 0, 100% 100%, 0 100%;
            background-image: linear-gradient(#F5AA0200, #F5AA02), linear-gradient(#F5AA0200, #F5AA02), linear-gradient(#F5AA0200, #F5AA02), linear-gradient(#F5AA0200, #F5AA02);
            animation: rotate 4s linear infinite;
        }
        
        &::after {
            content: '';
            position: absolute;
            z-index: -1;
            left: 6px;
            top: 6px;
            width: calc(100% - 12px);
            height: calc(100% - 12px);
            background: #28201E;
            border-radius: 83.088px;
        }

        a {
            color: white;
            font-family: "Noto Sans JP";
            font-size: 13.294px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
            text-decoration: none;
        }
        
        /* iOS Safari link styling fixes */
        a:visited {
            color: white;
            text-decoration: none;
        }
        
        a:hover {
            color: white;
            text-decoration: none;
        }
        
        a:active {
            color: white;
            text-decoration: none;
        }
        
        a:focus {
            color: white;
            text-decoration: none;
            outline: none;
        }
    }

    .animateButtonContainer .rainbow-white {
        color: #28201E;
        position: relative;
        z-index: 0;
        border-radius: 83.088px;
        overflow: hidden;
        padding: 12.424px 36.787px 12.576px 37.273px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: sans-serif;
        font-weight: bold;
        border: 1px solid #28201E;
        
        &::before {
            content: '';
            position: absolute;
            z-index: -2;
            left: -20%;
            top: -150%;
            width: 200px;
            height: 200px;
            background-color: #28201E;
            background-repeat: no-repeat;
            background-size: 50% 50%, 50% 50%;
            background-position: 0 0, 100% 0, 100% 100%, 0 100%;
            background-image: linear-gradient(#F5AA0200, #F5AA02), linear-gradient(#F5AA0200, #F5AA02), linear-gradient(#F5AA0200, #F5AA02), linear-gradient(#F5AA0200, #F5AA02);
            animation: rotate 4s linear infinite;
        }
        
        &::after {
            content: '';
            position: absolute;
            z-index: -1;
            left: 6px;
            top: 6px;
            width: calc(100% - 12px);
            height: calc(100% - 12px);
            background: white;
            border-radius: 83.088px;
        }

        a {
            color: #28201E;
            font-family: "Noto Sans JP";
            font-size: 13.294px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
            text-decoration: none;
        }
        
        /* iOS Safari link styling fixes */
        a:visited {
            color: #28201E;
            text-decoration: none;
        }
        
        a:hover {
            color: #28201E;
            text-decoration: none;
        }
        
        a:active {
            color: #28201E;
            text-decoration: none;
        }
        
        a:focus {
            color: #28201E;
            text-decoration: none;
            outline: none;
        }
    }
    
    .animateButtonContainer .buttonItem {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 83.088px;
        border: 1px solid #28201E;
    }
    
    .animateButtonContainer .buttonItem .btn {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 83.088px;
        border: none; /* Remove static border */
        border-radius: 83.088px;
        overflow: hidden;
    }
    
    /* Flowing border animation */
    .animateButtonContainer .buttonItem .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, #F5AA02, #28201E, #F5AA02, #28201E, #F5AA02);
        background-size: 400% 400%;
        border-radius: 83.088px;
        padding: 5px; /* This creates the 5px border thickness */
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: exclude;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        animation: flowingBorder 3s ease-in-out infinite;
        z-index: 0;
    }
    
    /* Ensure button content is above the flowing border */
    .animateButtonContainer .buttonItem .btn-black,
    .animateButtonContainer .buttonItem .btn-white {
        position: relative;
        z-index: 1;
    }
    
    @keyframes flowingBorder {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }
    
    .animateButtonContainer .buttonItem .btn-black {
        padding: 12.424px 23.454px 12.576px 23.607px;
        background: #28201E;
        color: #FFF;
        font-family: "Noto Sans JP";
        font-size: 13.294px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-decoration: none;
    }
    
    .animateButtonContainer .buttonItem .btn-white {
        padding: 12.424px 36.787px 12.576px 37.273px;
        background: #fff;
        color: #28201E;
        font-family: "Noto Sans JP";
        font-size: 13.294px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-decoration: none;
    }
}

.reworeSection2 {
    position: relative;
    display: flex;
    align-items: flex-start;
    align-self: stretch;
    background: #FFF;
    box-shadow: 0 8px 32px 12px rgba(0, 0, 0, 0.08);
}

.reworeSection2 .mainContainer {
    display: flex;
    padding: 76px 96px 61px 96px;
    align-items: flex-start;
    gap: 96px;
    align-self: stretch;
    min-width: 1360px;
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
}

.reworeSection2 .mainContainer .leftContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.reworeSection2 .mainContainer .leftContainer .title{
    width: 496px;
    color: #28201E;
    font-family: "Noto Sans JP";
    font-size: 30px;
    font-style: normal;
    font-weight: 900;
    line-height: 154%; /* 46.2px */
}

.reworeSection2 .mainContainer .leftContainer .title .emphasisTitle{
    width: 496px;
    color: #D1372A;
    font-family: "Noto Sans JP";
    font-size: 30px;
    font-style: normal;
    font-weight: 900;
    line-height: 154%;
}

.reworeSection2 .mainContainer .leftContainer .subText{
    margin-top: 16px;
    width: 496px;
    color: #535353;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 25.2px */
    letter-spacing: 0.42px;
}

.reworeSection2 .mainContainer .leftContainer .subText .emphasisSubText{
    width: 496px;
    color: #535353;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
    letter-spacing: 0.42px;
}

.reworeSection2 .mainContainer .leftContainer .cardContainer{
    display: inline-flex;
    height: 173px;
    padding: 24px 32px;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
    border-radius: 16px;
    background: #F6F6F6;
    margin-top: 24px;
}

.reworeSection2 .mainContainer .leftContainer .cardContainer .bodyCardText {
    width: 296px;
    color: #414D55;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 154%; /* 24.64px */
}

.reworeSection2 .mainContainer .leftContainer .cardContainer .bodyCardText .animateEmphasisText {
    width: 296px;
    color: #414D55;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 154%;
}

.reworeSection2 .mainContainer .rightContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 4px;
}

.reworeSection2 .mainContainer .rightContainer .animationCard {
    display: flex;
    padding: 0 48px;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    flex-shrink: 0;
    border-radius: 20px;
}

.reworeSection2 .mainContainer .rightContainer .animationCard .animationCardTitle {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.reworeSection2 .mainContainer .rightContainer .animationCard .animationCardTitle .title {
    color: #414D55;
    font-family: "Noto Sans JP";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 29px; /* 103.571% */
    letter-spacing: 0.01px;
}

.reworeSection2 .mainContainer .rightContainer .animationCard .animationCardTitle .subTitle {
    color: #414D55;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 154%; /* 30.8px */
}

.reworeSection2 .mainContainer .rightContainer .animationCard .slideshow-container {
    position: relative;
    width: 490px;
    height: 329px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
    -webkit-user-select: none;
    user-select: none;
}

.reworeSection2 .mainContainer .rightContainer .animationCard .slideshow-container .slide {
    display: none;
}

.reworeSection2 .mainContainer .rightContainer .animationCard .slideshow-container .imageContainer {
    margin-top: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.reworeSection2 .mainContainer .rightContainer .animationCard .slideshow-container .slide .imageContainer img {
    max-width: 100%;    /* shrink if wider */
    max-height: 100%;   /* shrink if taller */
    height: 240px;
    width: auto;
}

.reworeSection2 .mainContainer .rightContainer .animationCard .dot {
    width: 12px;
    height: 12px;
    background-color: #D9D9D9;
    border-radius: 50%;
    display: inline-block;
    margin: 0 8px;
    transition: background-color 0.6s ease;
    cursor: pointer;
}

.reworeSection2 .mainContainer .rightContainer .animationCard .active {
    background-color: #28201E;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.reworeSection2 .mainContainer .rightContainer .bodyCard {
    display: flex;
    width: 490px;
    align-items: center;
    gap: 13px;
}

.reworeSection2 .mainContainer .rightContainer .bodyCard .rightText {
    display: flex;
    width: 370px;
    height: 82px;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    flex-shrink: 0;
}

.reworeSection2 .mainContainer .rightContainer .bodyCard .rightText .bodyCardText {
    align-self: stretch;
    color: #414D55;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 154%; /* 24.64px */
}

.reworeSection2 .mainContainer .rightContainer .bodyCard .rightText .bodyCardText .animateEmphasisText {
    align-self: stretch;
    color: #414D55;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 154%;
}

.reworeSection2 .mainContainer .rightContainer .bodyCard .rightText .linkText {
    align-self: stretch;
    color: #6610F2;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 154%; /* 24.64px */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.reworeSection2 .mainContainer .topContainer {
    display: none;
}

.reworeSection2 .mainContainer .middleContainer {
    display: none;
}

.reworeSection2 .mainContainer .bottomContainer {
    display: none;
}

@media screen and (max-width: 499px) {
    .reworeSection2 .mainContainer {
        display: flex;
        padding: 40px 32px;
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        align-self: stretch;
        min-width: 100%;
        max-width: 100%;
    }

    .reworeSection2 .mainContainer .leftContainer {
        display: none;
    }

    .reworeSection2 .mainContainer .rightContainer {
        display: none;
    }

    .reworeSection2 .mainContainer .topContainer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        gap: 12px;
    }

    .reworeSection2 .mainContainer .topContainer .title {
        align-self: stretch;
        color: #28201E;
        font-family: "Noto Sans JP";
        font-size: 18px;
        font-style: normal;
        font-weight: 900;
        line-height: 154%; /* 27.72px */
    }

    .reworeSection2 .mainContainer .topContainer .title .emphasisTitle {
        align-self: stretch;
        color: #D1372A;
        font-family: "Noto Sans JP";
        font-size: 18px;
        font-style: normal;
        font-weight: 900;
        line-height: 154%;
    }

    .reworeSection2 .mainContainer .topContainer .subText {
        align-self: stretch;
        color: #535353;
        font-family: "Noto Sans JP";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 154%; /* 21.56px */
    }

    .reworeSection2 .mainContainer .topContainer .subText .emphasisSubText {
        align-self: stretch;
        color: #535353;
        font-family: "Noto Sans JP";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 154%;
    }

    .reworeSection2 .mainContainer .bottomContainer {
        display: flex;
        padding: 12px 20px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        align-self: stretch;
        border-radius: 16px;
        background: #F6F6F6;
    }

    .reworeSection2 .mainContainer .bottomContainer .bodyCardText {
        align-self: stretch;
        color: #414D55;
        font-family: "Noto Sans JP";
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 154%; /* 20.02px */
    }

    .reworeSection2 .mainContainer .bottomContainer .bodyCardText .animateEmphasisText {
        align-self: stretch;
        color: #414D55;
        font-family: "Noto Sans JP";
        font-size: 13px;
        font-style: normal;
        font-weight: 700;
        line-height: 154%;
    }

    .reworeSection2 .mainContainer .middleContainer {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        align-self: stretch;
    }

    .reworeSection2 .mainContainer .middleContainer .animationCard {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 22px;
        width: 100%;
    }

    .reworeSection2 .mainContainer .middleContainer .animationCard .animationCardTitle {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 6px;
        align-self: stretch;
    }

    .reworeSection2 .mainContainer .middleContainer .animationCard .animationCardTitle .title {
        color: #414D55;
        font-family: "Noto Sans JP";
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 12.658px; /* 70.323% */
        letter-spacing: 0.006px;
    }

    .reworeSection2 .mainContainer .middleContainer .animationCard .animationCardTitle .subTitle {
        color: #414D55;
        font-family: "Noto Sans JP";
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%; /* 19.2px */
    }

    .reworeSection2 .mainContainer .middleContainer .animationCard .slideshow-container {
        position: relative;
        width: 100%;
        height: 223px;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        touch-action: pan-y pinch-zoom;
        -webkit-user-select: none;
        user-select: none;
    }

    .reworeSection2 .mainContainer .middleContainer .animationCard .slideshow-container .slide {
        display: none;
        margin-top: 10px;
    }

    .reworeSection2 .mainContainer .middleContainer .animationCard .slideshow-container .imageContainer {
        margin-top: 22px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .reworeSection2 .mainContainer .middleContainer .animationCard .slideshow-container .slide .imageContainer img {
        max-width: 100%;    /* shrink if wider */
        max-height: 100%;   /* shrink if taller */
        height: 152px;
        width: auto;
    }

    .reworeSection2 .mainContainer .middleContainer .animationCard .dot {
        width: 8px;
        height: 8px;
        background-color: #D9D9D9;
        border-radius: 50%;
        display: inline-block;
        margin: 0 4px;
        transition: background-color 0.6s ease;
        cursor: pointer;
    }

    .reworeSection2 .mainContainer .middleContainer .animationCard .active {
        background-color: #28201E;
    }

    .reworeSection2 .mainContainer .middleContainer .bodyCard {
        display: flex;
        align-items: center;
        gap: 12px;
        align-self: stretch;
    }

    .reworeSection2 .mainContainer .middleContainer .bodyCard .rightText {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 4px;
        flex: 1 0 0;
    }

    .reworeSection2 .mainContainer .middleContainer .bodyCard .rightText .bodyCardText {
        align-self: stretch;
        color: #414D55;
        font-family: "Noto Sans JP";
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 154%; /* 20.02px */
    }

    .reworeSection2 .mainContainer .middleContainer .bodyCard .rightText .bodyCardText .animateEmphasisText {
        color: #414D55;
        font-family: "Noto Sans JP";
        font-size: 13px;
        font-style: normal;
        font-weight: 700;
        line-height: 154%;
    }

    .reworeSection2 .mainContainer .middleContainer .bodyCard .rightText .linkText {
        align-self: stretch;
        color: #6610F2;
        font-family: "Noto Sans JP";
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }

}

.reworeSection3 {
    background: #FFF;
    box-shadow: 0 8px 32px 12px rgba(0, 0, 0, 0.08);
}

.reworeSection3 .mainContainer {
    display: flex;
    flex-direction: column;
    padding: 48px 96px 87px 96px;
    align-items: flex-start;
    gap: 57px;
    align-self: stretch;
    min-width: 1360px;
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
}

.reworeSection3 .mainContainer .topContainer {
    display: flex;
    align-items: flex-start;
    align-self: stretch;
    width: 100%;
}

.reworeSection3 .mainContainer .topContainer .leftContainer {
    display: flex;
    width: 547px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    margin-top: 23px;
}

.reworeSection3 .mainContainer .topContainer .leftContainer .leftContainerTitle {
    width: 547px;
    color: #28201E;
    font-family: "Noto Sans JP";
    font-size: 30px;
    font-style: normal;
    font-weight: 900;
    line-height: 154%; /* 46.2px */
}

.reworeSection3 .mainContainer .topContainer .leftContainer .leftContainerTitle .emphasisTitle {
    width: 547px;
    color: #D1372A;
    font-family: "Noto Sans JP";
    font-size: 30px;
    font-style: normal;
    font-weight: 900;
    line-height: 154%;
}

.reworeSection3 .mainContainer .topContainer .leftContainer .leftContainerSubText {
    width: 528px;
    color: #28201E;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 28.8px */
    letter-spacing: 0.48px;
}

.reworeSection3 .mainContainer .bottomContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 42px;
    align-self: stretch;
}

.reworeSection3 .mainContainer .bottomContainer .cardContainer {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
}

.reworeSection3 .mainContainer .bottomContainer .cardContainer .leftImage img {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.12);
}

.reworeSection3 .mainContainer .bottomContainer .cardContainer .rightText {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
}

.reworeSection3 .mainContainer .bottomContainer .cardContainer .rightText .rightTextTitle {
    align-self: stretch;
    color: #28201E;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 154%; /* 36.96px */
}

.reworeSection3 .mainContainer .bottomContainer .cardContainer .rightText .rightTextSubText {
    align-self: stretch;
    color: #28201E;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 28.8px */
}

.reworeSection3 .spTopContainer {
    display: none;
}

.reworeSection3 .spImageContainer {
    display: none;
}

.reworeSection3 .spCardContainer {
    display: none;
}

@media screen and (max-width: 499px) {    
    .reworeSection3 .mainContainer {
        display: flex;
        padding: 40px 32px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 32px;
        flex: 1 0 0;
        min-width: 100%;
        max-width: 100%;
    }

    .reworeSection3 .mainContainer .topContainer {
        display: none;
    }

    .reworeSection3 .mainContainer .bottomContainer {
        display: none;
    }

    .reworeSection3 .spTopContainer {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        align-self: stretch;
    }

    .reworeSection3 .spTopContainer .spTopContainerTitle {
        align-self: stretch;
        color: #28201E;
        font-family: "Noto Sans JP";
        font-size: 18px;
        font-style: normal;
        font-weight: 900;
        line-height: 154%; /* 27.72px */
    }

    .reworeSection3 .spTopContainer .spTopContainerTitle .emphasisTitle {
        align-self: stretch;
        color: #D1372A;
        font-family: "Noto Sans JP";
        font-size: 18px;
        font-style: normal;
        font-weight: 900;
        line-height: 154%;
    }

    .reworeSection3 .spTopContainer .spTopContainerSubText {
        align-self: stretch;
        color: #28201E;
        font-family: "Noto Sans JP";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 154%; /* 21.56px */
    }

    .reworeSection3 .spImageContainer {
        display: flex;
        width: 100%;
        height: 100%;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .reworeSection3 .spImageContainer img {
        position: relative;
        z-index: 10;
        margin-left: 40px;
    }

    .reworeSection3 .spCardContainer {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        align-self: stretch;
    }

    .reworeSection3 .spCardContainer img{
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        margin-left: auto;
        margin-right: auto;
    }

    .reworeSection3 .spCardContainer .spCard {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        align-self: stretch;
    }

    .reworeSection3 .spCardContainer .spCard .spCardTitle {
        align-self: stretch;
        color: #28201E;
        font-family: "Noto Sans JP";
        font-size: 16px;
        font-style: normal;
        font-weight: 800;
        line-height: 154%; /* 24.64px */
    }

    .reworeSection3 .spCardContainer .spCard .spCardSubText {
        align-self: stretch;
        color: #28201E;
        font-family: "Noto Sans JP";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 154%; /* 21.56px */
    }
}

.reworeSection4 {
    display: flex;
    padding: 80px;
    flex-direction: column;
    align-items: flex-start;
    gap: 31px;
    align-self: stretch;
    border-radius: 32px;
    min-width: 1360px;
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
}

.reworeSection4 .topTitleContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

.reworeSection4 .topTitleContainer .topTitle {
    align-self: stretch;
    color: #000;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 36px;
    font-style: normal;
    font-weight: 900;
    line-height: 154%; /* 55.44px */
}

.reworeSection4 .topTitleContainer .topSubTitle {
    align-self: stretch;
    color: #000;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 154%; /* 24.64px */
    letter-spacing: 0.48px;
}

.reworeSection4 .navigationTab {
    display: flex;
    padding: 0 200px;
    flex-direction: column;
    align-items: flex-start;
    width: 895px;
    gap: 4px;
    align-self: stretch;
    margin-left: auto;
    margin-right: auto;
}

.reworeSection4 .navigationTab .navigationTabItems {
    display: flex;
    align-items: center;
    align-self: stretch;
}

.reworeSection4 .navigationTab .navigationTabItems .navigationTabItem {
    display: flex;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex: 1 0 0;
    background: rgba(255, 255, 255, 0.48);
    color: #F5AA02;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    cursor: pointer;
}

.reworeSection4 .navigationTab .navigationTabItems .activeTab{
    color: #28201E;
    background: #FFF;
}

.reworeSection4 .navigationTab .navigationTabItems .firstTab{
    border: 1px solid #28201E;
    border-radius: 8px 0 0 8px;
}

.reworeSection4 .navigationTab .navigationTabItems .secondTab{
    border-top: 1px solid #28201E;
    border-bottom: 1px solid #28201E;
}


.reworeSection4 .navigationTab .navigationTabItems .lastTab{
    border: 1px solid #28201E;
    border-radius: 0 8px 8px 0;
}

.reworeSection4 .mainContent {
    width: 100%;
}

.reworeSection4 .mainContent .mainContentItem {
    display: flex;
    width: 800px;
    height: 100%;
    align-items: flex-start;
    flex-shrink: 0;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
}

.reworeSection4 .mainContent .mainContentItem .tabContent {
    display: none;
    align-self: stretch;
}

.reworeSection4 .mainContent .mainContentItem .tabContent.active {
    display: flex;
}

.reworeSection4 .mainContent .mainContentItem .leftContainer {
    display: flex;
    width: 450px;
    height: 100%;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex: 1 0 0;
    background: #FFF;
    border-radius: 20px 0 0 20px;
}

.reworeSection4 .mainContent .mainContentItem .leftContainer .topText {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
}

.reworeSection4 .mainContent .mainContentItem .leftContainer .topText .topTextTitle {
    color: #414D55;
    font-family: "Helvetica Neue";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 22px */
}

.reworeSection4 .mainContent .mainContentItem .leftContainer .topText .topTextSubTitle {
    align-self: stretch;
    color: #414D55;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 28.8px */
    margin-left: 24px;
}

.reworeSection4 .mainContent .mainContentItem .leftContainer .bottomText {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
}

.reworeSection4 .mainContent .mainContentItem .leftContainer .bottomText .bottomTextTitle {
    color: #D1372A;
    font-family: "Helvetica Neue";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 22px */
}

.reworeSection4 .mainContent .mainContentItem .leftContainer .bottomText .bottomTextSubTitle {
    align-self: stretch;
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 28.8px */
    margin-left: 24px;
}

.reworeSection4 .mainContent .mainContentItem .rightContainer {
    width: 350px;
}

.reworeSection4 .mainContent .mainContentItem .rightContainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
}

.reworeSection4 .mainContent .mainContentItem .rightContainer .img1 {
    object-position: 50%;
}

.reworeSection4 .mainContent .mainContentItem .rightContainer .img2 {
    object-position: 20%;
}

.reworeSection4 .mainContent .mainContentItem .rightContainer .img3 {
    object-position: 50%;
}

.reworeSection4 .mainContent .mainContentItem .topContainer {
    display: none;
}

.reworeSection4 .mainContent .mainContentItem .bottomContainer {
    display: none;
}

@media screen and (max-width: 499px) {
    .reworeSection4 {
        display: flex;
        padding: 40px 32px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        align-self: stretch;
        min-width: 100%;
        max-width: 100%;
    }
    
    .reworeSection4 .topTitleContainer {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        align-self: stretch;
    }
    
    .reworeSection4 .topTitleContainer .topTitle {
        align-self: stretch;
        color: #28201E;
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 18px;
        font-style: normal;
        font-weight: 900;
        line-height: 154%; /* 27.72px */
    }
    
    .reworeSection4 .topTitleContainer .topSubTitle {
        color: #28201E;
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 154%; /* 21.56px */
        letter-spacing: 0.42px;
    }
    
    .reworeSection4 .navigationTab {
        display: flex;
        justify-content: center;
        align-items: center;
        align-self: stretch;
        padding: 0;
        width: 100%;
    }
    
    .reworeSection4 .navigationTab .navigationTabItems {
        display: flex;
        align-items: center;
        align-self: stretch;
        flex: 1 0 0;
    }
    
    .reworeSection4 .navigationTab .navigationTabItems .navigationTabItem {
        display: flex;
        padding: 8px 20px;
        justify-content: center;
        align-items: center;
        gap: 4px;
        flex: 1 0 0;
        background: rgba(255, 255, 255, 0.48);
        color: #F5AA02;
        font-family: "Noto Sans JP";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        cursor: pointer;
    }
    
    .reworeSection4 .navigationTab .navigationTabItems .activeTab{
        color: #28201E;
        background: #FFF;
    }
    
    .reworeSection4 .navigationTab .navigationTabItems .firstTab{
        border: 1px solid #28201E;
        border-radius: 8px 0 0 8px;
    }
    
    .reworeSection4 .navigationTab .navigationTabItems .secondTab{
        border-top: 1px solid #28201E;
        border-bottom: 1px solid #28201E;
    }
    
    
    .reworeSection4 .navigationTab .navigationTabItems .lastTab{
        border: 1px solid #28201E;
        border-radius: 0 8px 8px 0;
    }
    
    .reworeSection4 .mainContent {
        width: 100%;
    }
    
    .reworeSection4 .mainContent .mainContentItem {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        align-self: stretch;
        border-radius: 20px;
        width: 100%;
    }
    
    .reworeSection4 .mainContent .mainContentItem .tabContent {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    
    .reworeSection4 .mainContent .mainContentItem .tabContent.active {
        display: flex;
    }
    
    .reworeSection4 .mainContent .mainContentItem .leftContainer {
        display: none;
    }

    .reworeSection4 .mainContent .mainContentItem .rightContainer {
        display: none;
    }
    
    .reworeSection4 .mainContent .mainContentItem .bottomContainer {
        display: flex;
        padding: 32px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        align-self: stretch;
        background: #FFF;
        border-radius: 0 0 20px 20px;
        width: 100%;
    }
    
    .reworeSection4 .mainContent .mainContentItem .bottomContainer .topText {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        align-self: stretch;
    }
    
    .reworeSection4 .mainContent .mainContentItem .bottomContainer .topText .topTextTitle {
        color: #414D55;
        font-family: "Helvetica Neue";
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%; /* 16px */
    }
    
    .reworeSection4 .mainContent .mainContentItem .bottomContainer .topText .topTextSubTitle {
        align-self: stretch;
        color: #414D55;
        font-family: "Noto Sans JP";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 154%; /* 21.56px */
        margin-left: 24px;
    }
    
    .reworeSection4 .mainContent .mainContentItem .bottomContainer .bottomText {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        align-self: stretch;
    }
    
    .reworeSection4 .mainContent .mainContentItem .bottomContainer .bottomText .bottomTextTitle {
        color: #D1372A;
        font-family: "Helvetica Neue";
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    
    .reworeSection4 .mainContent .mainContentItem .bottomContainer .bottomText .bottomTextSubTitle {
        align-self: stretch;
        color: #000;
        font-family: "Noto Sans JP";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 154%; /* 21.56px */
        margin-left: 24px;
    }
    
    .reworeSection4 .mainContent .mainContentItem .topContainer {
        display: flex;
        width: 100%;
    }
    
    .reworeSection4 .mainContent .mainContentItem .topContainer img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px 20px 0 0;
    }
    
    .reworeSection4 .mainContent .mainContentItem .topContainer .img1 {
        object-position: 50%;
    }
    
    .reworeSection4 .mainContent .mainContentItem .topContainer .img2 {
        object-position: 50%;
    }
    
    .reworeSection4 .mainContent .mainContentItem .topContainer .img3 {
        object-position: 50%;
    }    
}

.reworeSection5 {
    background: #FFF;  
}

.reworeSection5 .mainContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;;
    min-width: 1360px;
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
    padding: 80px 128px;
    align-self: stretch;

}

.reworeSection5 .topTitleContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    align-self: stretch;
}

.reworeSection5 .topTitleContainer .title {
    align-self: stretch;
    color: #28201E;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 36px;
    font-style: normal;
    font-weight: 900;
    line-height: 154%; /* 55.44px */
}


.reworeSection5 .topTitleContainer .subText {
    align-self: stretch;
    color: #28201E;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 154%; /* 24.64px */
    letter-spacing: 0.48px;
}

.reworeSection5 .bodyContainer {
    display: flex;
    padding: 24px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    border-radius: 24px;
    /* border: 1px solid #DADADA; */
}

.reworeSection5 .bodyContainer .bodyCard {
    display: flex;
    padding: 0 40px 0 32px;
    align-items: center;
    gap: 48px;
    border-radius: 20px;
    background: #FFF;
}

.reworeSection5 .bodyContainer .bodyCard .leftContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.reworeSection5 .bodyContainer .bodyCard .leftContainer .pcImage {
    display: block;
}

.reworeSection5 .bodyContainer .bodyCard .leftContainer .pcImage .titleContainer {
    position: relative;
}

.reworeSection5 .bodyContainer .bodyCard .leftContainer .pcImage .titleContainer p {
    color: #414D55;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 165%; /* 26.4px */
    text-transform: uppercase;
    position: absolute;
    top: 34px;
    left: 68px;
    width: 218px;
}

.reworeSection5 .bodyContainer .bodyCard .leftContainer .pcImage .personImage {
    display: flex;
    justify-content: center;
    margin-top: -24px;
}

.reworeSection5 .bodyContainer .bodyCard .leftContainer .spImage {
    display: none;
}

.reworeSection5 .bodyContainer .bodyCard .middleContainer {
    display: none;
}

.reworeSection5 .bodyContainer .bodyCard .rightContainer {
    display: flex;
    /* height: 203px; */
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
}

.reworeSection5 .bodyContainer .bodyCard .rightContainer .firstContent {
    display: flex;
    padding-bottom: 20px;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    border-bottom: 2px dashed #F5AA02;
}

.reworeSection5 .bodyContainer .bodyCard .rightContainer .lastContent {
    display: flex;
    padding-bottom: 20px;
    align-items: center;
    gap: 20px;
    align-self: stretch;
}

.reworeSection5 .bodyContainer .bodyCard .rightContainer .contentTitle {
    width: 204px;
    color: #28201E;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.reworeSection5 .bodyContainer .bodyCard .rightContainer .contentSubText {
    flex: 1 0 0;
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 154%; /* 24.64px */
}

@media screen and (max-width: 499px) {
    .reworeSection5 .mainContainer {
        display: flex;
        padding: 40px 32px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        align-self: stretch;
        min-width: 100%;
        max-width: 100%;
    }
    
    .reworeSection5 .topTitleContainer {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        align-self: stretch;
    }
    
    .reworeSection5 .topTitleContainer .title {
        align-self: stretch;
        color: #28201E;
        font-family: "Noto Sans JP";
        font-size: 18px;
        font-style: normal;
        font-weight: 900;
        line-height: 154%; /* 27.72px */
    }
    
    
    .reworeSection5 .topTitleContainer .subText {
        align-self: stretch;
        color: #28201E;
        font-family: "Noto Sans JP";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 154%; /* 21.56px */
    }
    
    .reworeSection5 .bodyContainer {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        align-self: stretch;
        padding: 0;
        border: none;
    }
    
    .reworeSection5 .bodyContainer .bodyCard {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        align-self: stretch;
    }
    
    .reworeSection5 .bodyContainer .bodyCard .leftContainer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .reworeSection5 .bodyContainer .bodyCard .leftContainer .pcImage {
        display: none;
    }

    .reworeSection5 .bodyContainer .bodyCard .leftContainer .spImage {
        display: block;
    }

    .reworeSection5 .bodyContainer .bodyCard .leftContainer .spImage .titleContainer {
        position: relative;
    }

    .reworeSection5 .bodyContainer .bodyCard .leftContainer .spImage .titleContainer p {
        color: #414D55;
        font-family: "Noto Sans JP";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 154%; /* 21.56px */
        text-transform: uppercase;
        position: absolute;
        top: 36px;
        left: 68px;
        width: 218px;
    }

    .reworeSection5 .bodyContainer .bodyCard .leftContainer .spImage .personImage {
        display: flex;
        justify-content: center;
        margin-top: -24px;
    }

    .reworeSection5 .bodyContainer .bodyCard .middleContainer {
        display: block;
    }
    
    .reworeSection5 .bodyContainer .bodyCard .rightContainer {
        display: flex;
        padding: 8px 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        align-self: stretch;
    }
    
    .reworeSection5 .bodyContainer .bodyCard .rightContainer .firstContent {
        display: flex;
        padding-bottom: 16px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 4px;
        align-self: stretch;
        border-bottom: 2px dashed #F5AA02;
    }
    
    .reworeSection5 .bodyContainer .bodyCard .rightContainer .lastContent {
        display: flex;
        padding-bottom: 16px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 4px;
        align-self: stretch;
    }
    
    .reworeSection5 .bodyContainer .bodyCard .rightContainer .contentTitle {
        width: 204px;
        color: #28201E;
        font-family: "Noto Sans JP";
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    
    .reworeSection5 .bodyContainer .bodyCard .rightContainer .contentSubText {
        align-self: stretch;
        color: #000;
        font-family: "Noto Sans JP";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 154%; /* 21.56px */
    }
}

.reworeSection6 {
    display: flex;
    min-width: 1360px;
    max-width: 1360px;
    padding: 80px;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    border-radius: 32px;
    margin-left: auto;
    margin-right: auto;
}

.reworeSection6 .topTitleContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

.reworeSection6 .topTitleContainer .topTitle {
    align-self: stretch;
    color: #000;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 36px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.reworeSection6 .topTitleContainer .topSubTitle {
    align-self: stretch;
    color: #000;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 154%; /* 24.64px */
    letter-spacing: 0.48px;
}

.reworeSection6 .mainContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    align-self: stretch;
}

.reworeSection6 .mainContainer .pcContainer {
    display: flex !important;
}

.reworeSection6 .mainContainer .spContainer {
    display: none !important;
}

.reworeSection6 .mainContainer .cardContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}

.reworeSection6 .mainContainer .cardContainer .commentContainer {
    position: relative;
}

.reworeSection6 .mainContainer .cardContainer .commentContainer .commentText {
    position: absolute;
    top: 44px;
    left: 87px;
    color: #414D55;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 154%;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    width: 480px;
}

.reworeSection6 .mainContainer .cardContainer .commentContainer .secondCommentText {
    left: 77px;
}

.reworeSection6 .mainContainer .cardContainer .commentContainer .thirdCommentText {
    top: 24px;
    left: 67px;
}

.reworeSection6 .mainContainer .cardContainer .commentContainer .commentText .emphasisSubTextContainer {
    display: flex;
}

.reworeSection6 .mainContainer .cardContainer .commentContainer .commentText .emphasisSubText {
    color: #414D55;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 154%;
    letter-spacing: 0.48px;
    text-transform: uppercase;
}

.reworeSection6 .mainContainer .cardContainer .pcImage {
    display: block;
}

.reworeSection6 .mainContainer .cardContainer .spImage {
    display: none;
}

.reworeSection6 .mainContainer .cardContainer .avatarContainer {
    display: flex;
    width: 185px;
    flex-direction: column;
    align-items: center;
}

.reworeSection6 .mainContainer .cardContainer .avatarContainer .title {
    display: flex;
    padding: 7px 12px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    border-radius: 8px;
    color: #28201E;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

@media screen and (max-width: 499px) {
    .reworeSection6 {
        display: flex;
        padding: 40px 32px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        align-self: stretch;
        min-width: 100%;
        max-width: 100%;
    }
    
    .reworeSection6 .topTitleContainer {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        align-self: stretch;
    }
    
    .reworeSection6 .topTitleContainer .topTitle {
        align-self: stretch;
        color: #28201E;
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 18px;
        font-style: normal;
        font-weight: 900;
        line-height: normal;
    }
    
    .reworeSection6 .topTitleContainer .topSubTitle {
        color: #28201E;
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 154%; /* 21.56px */
    }
    
    .reworeSection6 .mainContainer {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        align-self: stretch;
    }

    .reworeSection6 .mainContainer .pcContainer {
        display: none !important;
    }
    
    .reworeSection6 .mainContainer .spContainer {
        display: flex !important;
    }
    
    .reworeSection6 .mainContainer .cardContainer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
        align-self: stretch;
    }

    .reworeSection6 .mainContainer .cardContainer .pcImage {
        display: none;
    }
    
    .reworeSection6 .mainContainer .cardContainer .spImage {
        display: block;
    }
    
    .reworeSection6 .mainContainer .cardContainer .avatarContainer {
        display: flex;
        width: 185px;
        flex-direction: column;
        align-items: center;
    }

    .reworeSection6 .mainContainer .cardContainer .avatarContainer .title {
        display: flex;
        padding: 7px 12px;
        justify-content: center;
        align-items: center;
        gap: 4px;
        align-self: stretch;
        border-radius: 8px;
        color: #28201E;
        font-family: "Noto Sans JP";
        font-size: 15px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    .reworeSection6 .mainContainer .cardContainer .commentContainer {
        margin-top: -30px;
    }

    .reworeSection6 .mainContainer .cardContainer .commentContainer .commentText {
        color: #414D55;
        font-family: "Noto Sans JP";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 154%; /* 21.56px */
        text-transform: uppercase;
        position: absolute;
        top: 72px;
        left: 48px;
        width: 263px;
    }

    .reworeSection6 .mainContainer .cardContainer .commentContainer .commentText .emphasisSubTextContainer {
        display: flex;
    }
    
    .reworeSection6 .mainContainer .cardContainer .commentContainer .commentText .emphasisSubText {
        color: #414D55;
        font-family: "Noto Sans JP";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 154%;
        text-transform: uppercase;
    }
}

.reworeSection7 {
    background: #FFF;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
}

.reworeSection7 .mainContainer {
    display: flex;
    min-width: 1360px;
    max-width: 1360px;
    padding: 54px 0;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-left: auto;
    margin-right: auto;
}

.reworeSection7 .topTitleContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.reworeSection7 .topTitleContainer .title {
    align-self: stretch;
    color: #28201E;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 36px;
    font-style: normal;
    font-weight: 900;
    line-height: 154%; /* 55.44px */
}

.reworeSection7 .topTitleContainer .subText {
    align-self: stretch;
    color: #28201E;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 154%; /* 24.64px */
    letter-spacing: 0.48px;
}

.reworeSection7 .mainContainer .contentContainer {
    display: flex;
    width: 810px;
    justify-content: center;
    align-items: center;
    gap: 18px;
    align-self: stretch;
    margin-left: auto;
    margin-right: auto;
}

.reworeSection7 .mainContainer .contentContainer .plusVector {
    width: 20px;
    height: 20px;
}

.reworeSection7 .mainContainer .contentContainer .buttonContainer {
    display: flex;
    height: 80px;
    padding: 32px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex: 1 0 0;
    border-radius: 8px;
    border: 2px solid #28201E;
    color: #28201E;
    font-family: "Noto Sans JP";
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

@media screen and (max-width: 499px) {
    .reworeSection7 .mainContainer {
        display: flex;
        padding: 32px 32px 48px 32px;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        min-width: 100%;
        max-width: 100%;
    }
    
    .reworeSection7 .topTitleContainer {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        align-self: stretch;
    }
    
    .reworeSection7 .topTitleContainer .title {
        align-self: stretch;
        color: #28201E;
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 18px;
        font-style: normal;
        font-weight: 900;
        line-height: 154%; /* 27.72px */
    }
    
    .reworeSection7 .topTitleContainer .subText {
        align-self: stretch;
        color: #28201E;
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 154%; /* 21.56px */
    }
    
    .reworeSection7 .mainContainer .contentContainer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
        align-self: stretch;
        width: 100%;
    }

    .reworeSection7 .mainContainer .contentContainer .plusVector {
        width: 12px;
        height: 12px;
    }
    
    .reworeSection7 .mainContainer .contentContainer .buttonContainer {
        display: flex;
        padding: 12px;
        justify-content: center;
        align-items: center;
        gap: 4px;
        align-self: stretch;
        border-radius: 8px;
        border: 1px solid #28201E;
        color: #28201E;
        font-family: "Noto Sans JP";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }    
}

.reworeSection8 {
    display: flex;
    min-width: 1360px;
    max-width: 1360px;
    padding: 80px 96px;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.reworeSection8 .leftContainer {
    width: 591px;
    flex-shrink: 0;
    align-self: stretch;
}

.reworeSection8 .leftContainer .contentTitle {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    color: #000;
    text-align: center;
    /* text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.16); */
    font-family: "Noto Sans JP";
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: -0.64px;
    margin-top: 12px;
}

.reworeSection8 .leftContainer .bodyContainer {
    display: flex;
    width: 591px;
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
    margin-top: 35px;
}

.reworeSection8 .leftContainer .bodyContainer .contentSubText {
    align-self: stretch;
    color: #28201E;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 154%; /* 24.64px */
}

.reworeSection8 .topContainer {
    display: none;
}

.reworeSection8 .bottomContainer {
    display: none;
}

@media screen and (max-width: 499px) {
    .reworeSection8 {
        display: flex;
        padding: 48px 20px;
        flex-direction: column;
        align-items: center;
        /* gap: 24px; */
        min-width: 100%;
        max-width: 100%;
    }

    .reworeSection8 .leftContainer {
        display: none;
    }
    
    .reworeSection8 .rightContainer {
        display: none;
    }

    .reworeSection8 .topContainer {
        display: block;
    }
    
    .reworeSection8 .bottomContainer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        align-self: stretch;
    }
    
    .reworeSection8 .bottomContainer .contentTitle {
        align-self: stretch;
        color: #28201E;
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 20px;
        font-style: normal;
        font-weight: 900;
        line-height: 139%; /* 27.8px */
        letter-spacing: -0.4px;
    }
    
    .reworeSection8 .bottomContainer .bodyContainer {
        display: flex;
        width: 591px;
        flex-direction: column;
        align-items: flex-start;
        gap: 23px;
        margin-top: 35px;
    }
    
    .reworeSection8 .bottomContainer .contentSubText {
        align-self: stretch;
        color: #28201E;
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 154%; /* 21.56px */
    }
}

.reworeSection9 {
    height: 64px;
}

@media screen and (max-width: 499px) {
    .reworeSection9 {
        height: 40px;
    }
}

.footer {
    background: #28201E;
}

.footer .footerContainer {
    display: flex;
    flex-direction: column;
    min-width: 1360px;
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
    height: 505px;
    padding: 80px;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1 0 0;
    align-self: stretch;
}

.footer .footerContainer .topContainer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
}

.footer .footerContainer .topContainer .navContainer {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 72px;
}

.footer .footerContainer .topContainer .navContainer .navItem {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.footer .footerContainer .topContainer .navContainer .navItem a {
    color: var(--Other-White, #FFF);
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-decoration: none;
}

.footer .footerContainer .bottomContainer {
    color: #D9D9D9;
    font-family: "Museo Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media screen and (max-width: 499px) {
    .footer .footerContainer {
        display: flex;
        flex-direction: column;
        height: 751px;
        padding: 64px 40px;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 80px;
        flex: 1 0 0;
        min-width: 100%;
        max-width: 100%;
    }
    
    .footer .footerContainer .topContainer {
        display: flex;
        flex-direction: column;
        align-items: start;
        align-self: stretch;
        gap: 80px;
    }
    
    .footer .footerContainer .topContainer .navContainer {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        align-self: stretch;
    }
    
    .footer .footerContainer .topContainer .navContainer .navItem {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .footer .footerContainer .topContainer .navContainer .navItem a {
        color: var(--Other-White, #FFF);
        font-family: "Noto Sans JP";
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
        text-decoration: none;
    }
    
    .footer .footerContainer .bottomContainer {
        color: #D9D9D9;
        font-family: "Museo Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
}

/* iOS Safari specific fixes */
* {
    -webkit-tap-highlight-color: transparent;
}

a {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Ensure all links maintain their styling in iOS Safari */
a:visited,
a:hover,
a:active,
a:focus {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}