@charset "UTF-8";

/*  ----------------------------------------------------------

opening

----------------------------------------------------------  */
.top-opening {
    position: fixed;
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    z-index: 999999;
}

.top-opening.opening-animation .left-shoji1 {
    animation: leftSlide1 1s forwards;
    animation-delay: 1.7s;
}

@keyframes leftSlide1 {
    0% {
        transform: translateX(0px);
    }

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

.top-opening.opening-animation .left-shoji2 {
    animation: leftSlide2 3s forwards;
    z-index: 1000000;
    animation-delay: 1s;
}

@keyframes leftSlide2 {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(-200%);
        display: none;
    }
}

.top-opening.opening-animation .right-shoji1 {
    animation: rightSlide1 1s forwards;
    animation-delay: 1.7s;
    z-index: 999999;
}

@keyframes rightSlide1 {
    0% {
        transform: translateX(0px);
    }

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

.top-opening.opening-animation .right-shoji2 {
    animation: rightSlide2 3s forwards;
    z-index: 1000000;
    animation-delay: 1s;
}

@keyframes rightSlide2 {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(200%);
        display: none;
    }
}

/*  ----------------------------------------------------------

kv

----------------------------------------------------------  */
.top-kv {
    position: relative;
    background: url(../img/top-bg-1.jpg) no-repeat center bottom / cover;
    height: 56rem;
}

.top-kv::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: -0.1rem;
    background: url(../img/top-kv-3.png) no-repeat bottom;
    background-size: 100% auto;
    z-index: 100;
}

.top-kv>div {
    position: absolute;
    top: 9rem;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    width: 30rem;
}

.top-kv .img-1 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45%;
}

.top-kv .img-1.expanded {
    width: 45%;
    transform-origin: 50% 50%;
    animation-name: big;
    animation-duration: 2s;
    animation-delay: 1s;
}

@keyframes big {
    0% {
        transform: scale(0);
    }

    40% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.top-kv .img-2 {
    position: absolute;
    width: 24rem;
    left: 42%;
    bottom: 16rem;
    cursor: pointer;
    z-index: 9999;
}

@media screen and (max-width: 768px) {
    .top-kv {
        height: 48rem;
    }

    .top-kv>div {
        top: 5rem;
        width: 28rem;
    }

    .top-kv .img-1.expanded {
        width: 30rem;
    }

    .top-kv .img-2 {
        width: 12rem;
        left: auto;
        right: 8rem;
        bottom: 20rem;
    }
}

/*  ----------------------------------------------------------

purchase

----------------------------------------------------------  */
.top-purchase .wrap-1 {
    width: 96rem;
    height: 66rem;
    margin: 3rem auto 6rem auto;
    background: url(../img/frame-1.png) no-repeat;
    background-size: 96rem 66rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-purchase .wrap-1 p {
    font-size: 1.8rem;
    font-family: 'New Tegomin', serif;
    line-height: 3.0;
    white-space: nowrap;
}

@media (prefers-color-scheme: dark) {
    .top-purchase .wrap-1 p {
        color: #000 !important;
    }
}

.top-purchase .wrap-1 p strong {
    font-size: 2.2rem;
}

.top-purchase>ul {
    display: flex;
    justify-content: center;
}

.top-purchase>ul li {
    width: 18rem;
    opacity: 0;
}

@media (prefers-color-scheme: dark) {
    .top-purchase>ul li {
        color: #000 !important;
    }
}

.top-purchase>ul li:not(:last-child) {
    margin-right: 3.5rem;
}

.top-purchase>ul li:nth-child(even) {
    margin-top: 6rem;
}

.top-purchase>ul li>div {
    width: 18rem;
    height: 36rem;
    background: url(../img/frame-2.png) no-repeat;
    background-size: 18rem 36rem;
    display: flex;
    justify-content: center;
    padding-top: 3rem;
}

.top-purchase>ul li>div p {
    height: 30rem;
    font-size: 1.8rem;
}

.top-purchase>ul li figure {
    position: relative;
    margin-top: 1.5rem;
}

.top-purchase>ul li figure>img:first-of-type {
    position: absolute;
    width: 5rem;
    top: 2.5rem
}

.top-purchase>ul .swirl-1 {
    right: -1rem;
}

.top-purchase>ul .swirl-2 {
    left: -1rem;
}

.top-purchase .wrap-2 {
    background: url(../img/top-bg-2.png) no-repeat center bottom 4rem;
    background-size: 100% auto;
    position: relative;
    overflow: hidden;
}

.top-purchase .wrap-2>div:nth-of-type(1) {
    width: 53%;
    padding-left: 2%;
}

.top-purchase .wrap-2>div:nth-of-type(1) img {
    position: relative;
    z-index: 2;
}

.top-purchase .wrap-2>div:nth-of-type(2) {
    position: absolute;
    left: 55rem;
    top: 16rem;
    width: 0;
    z-index: 10;
}

.top-purchase .wrap-2 figure {
    position: absolute;
    right: 0;
    top: 2rem;
    display: flex;
    width: auto;
    height: 28rem;
}

.top-purchase .wrap-2 figure div {
    position: relative;
}

.top-purchase .wrap-2 figure div:nth-of-type(1) {
    z-index: 4;
}

.top-purchase .wrap-2 figure div:nth-of-type(2) {
    z-index: 3;
    margin-left: -9rem;
    margin-top: 1rem;
}

.top-purchase .wrap-2 figure div:nth-of-type(3) {
    z-index: 2;
    margin-left: -7rem;
    margin-top: 3rem;
}

.top-purchase .wrap-2 figure div:nth-of-type(4) {
    z-index: 1;
    margin-left: -10rem;
    margin-top: 4rem;
}

.top-purchase .wrap-3 {
    padding-bottom: 10rem;
    background:
        url(../img/deco-1.png) no-repeat left bottom 14rem,
        url(../img/deco-1.png) no-repeat right 3rem top;
    background-size: 20rem auto;
}

.top-purchase .wrap-3 ul {
    display: flex;
    width: 80rem;
    margin: 0 auto;
}

.top-purchase .wrap-3 ul li:nth-child(1),
.top-purchase .wrap-3 ul li:nth-child(4) {
    margin-top: 4rem;
}

.top-purchase .wrap-3 ul li:not(:last-child) {
    margin-right: 2rem;
}

.top-purchase .wrap-3>div {
    width: 72rem;
    margin: -3rem auto 0 auto;
}

.top-purchase .queue-fade-in {
    opacity: 0;
    transition: 2s;
}

.top-purchase .queue-fade-in.show-message {

    opacity: 1;
}

.top-purchase #purchase {
    overflow: hidden;
}

.top-purchase .draw-sword {
    display: none;
}

.top-purchase .worries1 {
    position: relative;
    width: 18rem;
}

.top-purchase .worries2 {
    position: relative;
    width: 13.5rem !important;
}

.top-purchase .worries3 {
    position: relative;
    width: 14.6rem;
}

.top-purchase .worries4 {
    position: relative;
    width: 20.4rem;
}

.top-purchase .before-wrapper img {
    position: absolute;
}

.top-purchase .before-wrapper .worries-slash-left1.action-left {
    animation: slashLeft1 0.25s ease-out both;
    ;
}

@keyframes slashLeft1 {
    10% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-4px, 0, 0);
    }
}

.top-purchase .before-wrapper .worries-slash-right1.action-right {
    animation: slashRight1 0.25s ease-out both;
    ;
}

@keyframes slashRight1 {
    10% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(4px, 0, 0);
    }
}

.top-purchase .before-wrapper .worries-slash-left2.action-left {
    animation: slashLeft2 0.25s ease-out both;
    ;
}

@keyframes slashLeft2 {
    10% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(4px, 1px, 0);
    }
}

.top-purchase .before-wrapper .worries-slash-right2.action-right {
    animation: slashRight2 0.25s ease-out both;
    ;
}

@keyframes slashRight2 {
    10% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(8px, -1px, 0);
    }
}

.top-purchase .before-wrapper .worries-slash-left3.action-left {
    animation: slashLeft3 0.25s ease-out both;
    ;
}

@keyframes slashLeft3 {
    10% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-4px, 0, 0);
    }
}

.top-purchase .before-wrapper .worries-slash-right3.action-right {
    animation: slashRight3 0.25s ease-out both;
    ;
}

@keyframes slashRight3 {
    10% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(4px, 1px, 0);
    }
}

.top-purchase .before-wrapper .worries-slash-left4.action-left {
    animation: slashLeft4 0.25s ease-out both;
    ;
}

@keyframes slashLeft4 {
    10% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-2px, 0, 0);
    }
}

.top-purchase .before-wrapper .worries-slash-right4.action-right {
    animation: slashRight4 0.25s ease-out both;
    ;
}

@keyframes slashRight4 {
    10% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(2px, 1px, 0);
    }
}

.top-purchase .wrap-2 .issue-message.expanded {
    width: 53rem;
    transform-origin: 50% 50%;
    animation-name: big;
    animation-duration: 1s;
}

.top-purchase .bg-rental {
    position: absolute;
    bottom: 4rem;
    left: 0;
    z-index: 0;
    width: 0;
}

.top-purchase .bg-rental.expanded {
    width: 100%;
    transform-origin: 50% 50%;
    animation: purchase-big 0.5s forwards;
}

@keyframes purchase-big {
    0% {
        transform: scale(0);
    }

    40% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@media screen and (max-width: 768px) {
    .top-purchase .wrap-1 {
        width: calc(100% - 6rem);
        height: auto;
        margin: 3rem auto;
        background:
            url(../img/logo-mark.png) no-repeat center,
            url(../img/frame-1-sp.jpg) center top;
        background-size:
            20rem auto,
            200%;
        display: block;
        padding: 3rem;
    }

    .top-purchase .wrap-1 p {
        font-size: 1.5rem;
        line-height: 2.2;
        white-space: normal;
        color: #000 !important;
        text-shadow: 0.8px 0.8px 0 rgb(173, 173, 173), -0.8px -0.8px 0 rgb(173, 173, 173),
            -0.8px 0.8px 0 rgb(173, 173, 173), 0.8px -0.8px 0 rgb(173, 173, 173),
            0px 0.8px 0 rgb(173, 173, 173), 0-0.8px 0 rgb(173, 173, 173),
            -0.8px 0 0 rgb(173, 173, 173), 0.8px 0 0 rgb(173, 173, 173);
    }

    .top-purchase .wrap-1 p strong {
        font-size: 1.8rem;
    }

    .top-purchase>ul {
        flex-wrap: wrap;
    }

    .top-purchase>ul li {
        width: 16rem;
        color: #000 !important;
        text-shadow: 0.8px 0.8px 0 rgb(173, 173, 173), -0.8px -0.8px 0 rgb(173, 173, 173),
            -0.8px 0.8px 0 rgb(173, 173, 173), 0.8px -0.8px 0 rgb(173, 173, 173),
            0px 0.8px 0 rgb(173, 173, 173), 0-0.8px 0 rgb(173, 173, 173),
            -0.8px 0 0 rgb(173, 173, 173), 0.8px 0 0 rgb(173, 173, 173);
    }

    .top-purchase>ul li:not(:last-child) {
        margin-right: 0;
    }

    .top-purchase>ul li:nth-child(1) {
        margin-right: 1.5rem;
    }

    .top-purchase>ul li:nth-child(3) {
        margin-right: 1.5rem;
    }

    .top-purchase>ul li:nth-child(even) {
        margin-top: 4rem;
    }

    .top-purchase>ul li>div {
        width: 16rem;
        height: 34rem;
        background-size: 16rem 34rem;
    }

    .top-purchase .wrap-2 {
        background: url(../img/top-bg-2.png) no-repeat right bottom 12rem;
        background-size: 200% auto;
        height: 42rem;
    }

    .top-purchase .wrap-2>div:nth-of-type(1) {
        width: 85%;
        padding-left: 0;
    }

    .top-purchase .wrap-2>div:nth-of-type(2) {
        left: auto;
        right: 2rem;
        top: 8rem;
    }

    .top-purchase .wrap-2 figure {
        right: 0;
        top: auto;
        bottom: 0;
        height: 25rem;
    }

    .top-purchase .wrap-2 .issue-message.expanded {
        width: 22rem;
        right: 1rem;
    }

    .top-purchase .bg-rental {
        height: 38rem;
        bottom: 25rem;
        left: -38rem;
    }

    .top-purchase .bg-rental.expanded {
        width: 200%;
    }

    .top-purchase .wrap-3 {
        margin-top: 3rem;
        padding-bottom: 8rem;
        background:
            url(../img/deco-1.png) no-repeat left bottom 14rem,
            url(../img/deco-1.png) no-repeat right 2rem top;
        background-size: 12rem auto;
    }

    .top-purchase .wrap-3 ul {
        flex-wrap: wrap;
        width: 100%;
        padding: 0 3rem;
        justify-content: space-between;
    }

    .top-purchase .wrap-3 ul li:nth-child(1),
    .top-purchase .wrap-3 ul li:nth-child(4) {
        margin-top: 0;
    }

    .top-purchase .wrap-3 ul li:not(:last-child) {
        margin-right: 0;
    }

    .top-purchase .wrap-3 ul li {
        width: 49%;
    }

    .top-purchase .wrap-3 ul li:nth-child(n + 3) {
        margin-top: 2%;
    }

    .top-purchase .wrap-3>div {
        width: 100%;
        padding: 0 1rem;
        margin: 3rem auto 0 auto;
    }
}

@media screen and (max-width: 540px) {
    .top-purchase .bg-rental {
        height: 38rem;
        bottom: 1rem;
        left: -38rem;
    }
}

@media screen and (max-width: 414px) {
    .top-purchase .bg-rental {
        height: 38rem;
        bottom: 1rem;
        left: -38rem;
    }
}

/*  ----------------------------------------------------------

archive

----------------------------------------------------------  */
.top-archive {
    background: url(../img/top-bg-3.jpg) no-repeat center / cover;
    position: relative;
    padding: 10rem 0 4rem 0;
    overflow: hidden;
}

.top-archive h2 {
    position: absolute;
    right: 14rem;
    top: -1rem;
    width: 12rem;
    z-index: 99;
}

.top-archive .wrap {
    width: 64rem;
    margin: 0 auto;
    background: #fff;
    padding: 1rem 3rem 3rem 3rem;
}

.top-archive .wrap .slider-text {
    margin-bottom: 1rem;
    text-align: center;
}

.top-archive-slider>ul {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
}

.top-archive-slider>ul>li {
    width: 49%;
}

.top-archive-slider>ul>li:nth-child(n + 3) {
    margin-top: 2%;
}

.top-archive .img-1,
.top-archive .img-2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 16rem;
}

.top-archive .img-2 {
    left: auto;
    right: 0;
}

.top-archive .img-3 {
    position: absolute;
    left: 2rem;
    bottom: 0;
    width: 36rem;
}

.top-archive .img-3>img:nth-of-type(2) {
    position: absolute;
    right: 9rem;
    top: -12rem;
    width: 19rem;
}

.top-archive .img-3>img:nth-of-type(4) {
    position: absolute;
    right: 7.2rem;
    top: 6.4rem;
    width: 2.9rem;
}

.top-archive .img-4 {
    position: absolute;
    right: 13rem;
    bottom: 1rem;
    width: 24rem;
}

.top-archive .inifinite-bounce {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.top-archive .samurai-change {
    cursor: pointer;
}

.top-archive .samurai-change-img {
    position: absolute;
    right: 7.8rem !important;
    top: -13.9rem !important;
    width: 16rem !important;
    transform: rotate(-20deg);
    display: none;
}

@media screen and (max-width: 768px) {
    .top-archive {
        padding: 6rem 0;
    }

    .top-archive h2 {
        position: absolute;
        right: 0;
        top: -1rem;
        width: 8rem;
    }

    .top-archive .wrap {
        width: 100%;
        margin: 0 auto;
        background: #fff;
        padding: 1.5rem 3rem 3rem 3rem;
    }

    .top-archive .wrap .slider-text {
        line-height: 1.3;
    }

    .top-archive .img-1,
    .top-archive .img-2 {
        position: absolute;
        left: 0;
        top: 0;
        width: 10rem;
    }

    .top-archive .img-2 {
        left: auto;
        right: 0;
    }

    .top-archive .img-4 {
        right: 0;
        bottom: 1rem;
        width: 16rem;
    }
}



/*  ----------------------------------------------------------

area

----------------------------------------------------------  */
.top-area {
    padding: 6rem 15rem 25rem 15rem;
    display: flex;
    background: url(../img/top-bg-4.png) no-repeat left 16rem top 8rem;
    background-size: 42rem;
    align-items: flex-start;
}

.top-area h2 {
    width: 12rem;
}

.top-area>ul {
    width: calc(100% - 12rem);
    padding-left: 15rem;
    padding-top: 8rem;
    display: flex;
    flex-wrap: wrap;
}

.top-area>ul li {
    color: #2e5375;
    border: solid #2e5375 1px;
    background: #e5d7be;
    font-size: 2.4rem;
    padding: 0.2rem 1rem 0.3rem 1rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
    .top-area {
        padding: 8rem 3rem 10rem 3rem;
        background: url(../img/top-bg-4.png) no-repeat center;
        background-size: 36rem;
        justify-content: space-between;
    }

    .top-area h2 {
        width: 8rem;
    }

    .top-area>ul {
        width: calc(100% - 10rem);
        padding-left: 0;
        padding-top: 0;
    }
}



/*  ----------------------------------------------------------

company

----------------------------------------------------------  */
.top-company {
    position: relative;
    background: url(../img/deco-castle.png) no-repeat right bottom;
    background-size: 28rem auto;
    background-color: #2e5375;
    color: #fff;
    padding: 10rem 15rem;
}

.top-company::before {
    content: "";
    width: 100%;
    height: 10rem;
    background: url(../img/deco-wave.png) no-repeat center bottom;
    background-size: 100% auto;
    position: absolute;
    left: 0;
    top: -9.9rem;
}

.top-company a {
    color: #fff;
}

.top-company h2 {
    position: absolute;
    right: 14.9rem;
    top: 5rem;
    width: 12rem;
    z-index: 99;
}

.top-company .gmap {
    position: relative;
    z-index: 10;
}

.top-company dl {
    display: flex;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.top-company dl dt {
    width: 25%;
    border-right: solid 2px #2e5375;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-company dl dd {
    width: 75%;
    padding: 1.5rem;
}

.top-company dl dt:nth-of-type(odd),
.top-company dl dd:nth-of-type(odd) {
    background: rgba(255, 255, 255, 0.1);
}

.top-company .img-1,
.top-company .img-2,
.top-company .img-3 {
    position: absolute;
    z-index: 0;
}

.top-company .img-1 {
    width: 20rem;
    top: 7rem;
    left: 0;
}

.top-company .img-2 {
    width: 14rem;
    top: 30rem;
    right: 0;
}

.top-company .img-3 {
    width: 8rem;
    bottom: 5rem;
    left: 0;
}

@media screen and (max-width: 768px) {
    .top-company {
        padding: 8rem 0;
    }

    .top-company::before {
        background-size: 200% auto;
    }

    .top-company a {
        color: #fff;
    }

    .top-company h2 {
        position: absolute;
        right: 0;
        top: 4rem;
        width: 8rem;
        z-index: 99;
    }

    .top-company .gmap {
        position: relative;
        z-index: 10;
    }

    .top-company dl {
        display: block;
        padding: 0 3rem;
    }

    .top-company dl dt {
        width: 100%;
        border-right: none;
        padding: 1.5rem;
        justify-content: flex-start;
        background: rgba(255, 255, 255, 0.1);
    }

    .top-company dl dd {
        width: 100%;
        padding: 1.5rem;
    }

    .top-company dl dd:nth-of-type(odd) {
        background: none;
    }

    .top-company .img-1,
    .top-company .img-2,
    .top-company .img-3 {
        position: absolute;
        z-index: 0;
    }

    .top-company .img-1 {
        width: 12rem;
        top: 2rem;
        left: 0;
    }

    .top-company .img-2 {
        width: 10rem;
        top: 2rem;
        right: 0;
    }

    .top-company .img-3 {
        width: 6rem;
        bottom: 2rem;
    }
}

.bon {
    font-size: 2rem;
    font-weight: bold;
}


.top-clean {
    position: relative;
    background-color: #2e5375;
    color: #fff;
    padding: 3rem 15rem 8rem;
    background-image: url(../img/top-clean-bg.png);
    background-size: 30%;
    background-position: 100% 0;
    background-repeat: no-repeat;
}

.top-clean .img-1 {
    position: absolute;
    top: 15rem;
    left: 0;
    width: 15rem;
}

.top-clean .img-2 {
    position: absolute;
    top: 55rem;
    right: 0;
    width: 10rem;
    transform: scaleX(-1);
}

.top-clean .img-2 img {
    transform: scaleX(-1);
}

.top-clean .img-3 {
    position: absolute;
    bottom: 5rem;
    left: 0;
    width: 8rem;
}

.top-clean .sub-title {
    width: 50%;
    margin: 0 auto 3rem;
}

.top-clean-text {
    text-align: center;
    margin-bottom: 5rem;
}

.top-clean h2 {
    position: absolute;
    top: 0;
    left: 15rem;
    width: 12rem;
    z-index: 99;
}

.top-clean-contents {
    display: flex;
}

.top-clean-case1,
.top-clean-case2 {
    width: calc(50% - 20px * 1/2);
    margin-right: 20px;
}

.top-clean-case2 {
    margin-right: 0;
}

.top-clean-wrap {
    display: flex;
    align-items: center;
}

.top-clean-wrap .top-clean-img {
    width: calc(50% - 10px * 1/2);
}

.top-clean-title {
    border-top: solid 0.4rem #fff;
    border-bottom: solid 0.4rem #fff;
    padding: 0.4rem 0;
    margin-bottom: 3rem;
}

.top-clean-title span {
    border-top: solid 0.2rem #fff;
    border-bottom: solid 0.2rem #fff;
    display: block;
    text-align: center;
    font-size: 2rem;
    font-weight: normal;
}

.top-clean-wrap>span {
    width: 5%;
    margin: 0 5px;
    display: block;
}

.top-clean-img .case-ba {
    position: relative;
    background: #b49b78;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.6rem;
    border-radius: 20rem;
    width: 20rem;
    font-size: 1.8rem;
    margin: -2rem auto 0 auto;
}

.top-clean-img .case-ba img {
    position: absolute;
    left: 0rem;
    bottom: 0;
    width: 5rem;
}


@media screen and (max-width: 768px) {
    .top-clean {
        padding: 5rem 20px;
        background-position: 104% 0;
    }

    .top-clean .img-1 {
        display: none;
    }

    .top-clean .img-2 {
        top: 20rem;
        width: 7rem;
    }

    .top-clean .img-3 {
        bottom: 0;
    }

    .top-clean h2 {
        top: 0;
        left: 0;
        width: 8rem;
    }

    .top-clean .sub-title {
        width: 55%;
    }

    .top-clean-text {
        margin-bottom: 3rem;
    }

    .top-clean-contents {
        flex-direction: column;
    }

    .top-clean-case1,
    .top-clean-case2 {
        width: 100%;
        margin-right: 0;
    }

    .top-clean-case1 {
        margin-bottom: 5rem;
    }

    .top-clean-img .case-ba {
        width: 17rem;
        height: 2.5rem;
        margin: -1rem auto 0 auto;
        font-size: 1.5rem;
    }

    .top-clean-img .case-ba img {
        width: 3.5rem;
    }

    .top-clean-title {
        margin-bottom: 2rem;
    }

    .top-clean-title span {
        padding: 0;
        font-size: 2rem;
    }
}


