@charset "UTF-8";

/*-------------------------------------------------------------*/
/* common */

html {
    scroll-padding-top: 120px;
}

.pc-only {
    display:block;
}

.sp-only {
    display:none;
}

.entire {
    overflow: hidden;
}

.hidden-block {
    display: none;
}

@media screen and (max-width: 767px) {
    .pc-only {
        display:none;
    }

    .sp-only {
        display:block;
    }
}

/*-------------------------------------------------------------*/
/* animation */

.fadeIn_left {
    opacity: 0;
    transform: translate(-10%, 0);
    transition: 1s;
}

.fadeIn_left.is-show {
    transform: translate(0, 0);
    opacity: 1;
}

.fadeIn_right {
    opacity: 0;
    transform: translate(10%, 0);
    transition: 1s;
}

.fadeIn_right.is-show {
    transform: translate(0, 0);
    opacity: 1;
}

.fadeIn_up {
    opacity: 0;
    transform: translate(0, 10%);
    transition: 1s;
}

.fadeIn_up.is-show {
    transform: translate(0, 0);
    opacity: 1;
}

/*-------------------------------------------------------------*/
/* mv */

.mv::after {
    content: none;
}

.mv-catch-box {
    box-sizing: border-box;
    position: absolute;
    top: 42%;
    left: 0;
    transform: translateY(-50%);
    width: 813px;
    background: rgba(19, 19, 19, .5);
    padding: 5px 0 15px 180px;
    z-index: 1;
}

.mv-catch {
    font-weight: 700;
    font-size: 70px;
    line-height: 1.3;
    color: #fff;
}

.mv-box {
    position: absolute;
    bottom: 0;
    background: rgba(44, 106, 250, .82);
    padding: 33px 0 30px;
    width: 100%;
    height: 210px;
    z-index: 1;
    box-sizing: border-box;
}

.mv-box-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1530px;
    margin: auto;
}

.mv-box-main-title {
    font-weight: 700;
    font-size: 26px;
    color: #fff;
}

.mv-box-btn {
    position: relative;
    display: grid;
    place-items: center;
    text-decoration: none;
    font-size: 26px;
    width: 300px;
    height: 84px;
    background: #fee825;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    border-radius: 44px;
    margin-top: 25px;
    margin-left: 74px;
    overflow: hidden;
}

.mv-box-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -130%;
    background: #000;
    width: 120%;
    height: 100%;
    transform: skewX(-25deg);
}

.mv-box-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 33px;
    transform: translateY(-50%);
    background: url(https://up-vision.jp/assets/images/common/icon-arrow.svg) center/cover no-repeat;
    width: 28px;
    height: 10px;
}

.mv-box-btn span {
    position: relative;
    color: #1a1a1a;
    z-index: 1;
}

.mv-box-btn:hover span {
    color:white;
}

.mv-box-btn:hover::before {
    animation: skewanime .5s forwards;
}

.mv-box-btn:hover::after {
    background: url(https://up-vision.jp/assets/images/common/icon-arrow-w.svg) center/cover no-repeat;
}

@keyframes skewanime {
    100% {
        left: -10%;
    }
}

.mv-box-text-wrap {
    display: flex;
    align-items: center;
    color: white;
}

.mv-box-text-wrap .mv-box-text:not(:last-child) {
    border-right: solid 1px white;
    padding-right: 26px;
    margin-right: 26px;
}

.mv-box-text {
    font-weight: 700;
    font-size: 70px;
}

.mv-box-prices-wrap {
    display: none;
}

.mv-box-prices {
    display: flex;
    gap: 30px;
    color: white;
    font-weight: 700;
}

.mv-box-prices .mv-box-price:not(:last-child) {
    border-right: solid 1px white;
    padding-right: 26px;
}

.mv-box-price-title {
    font-size: 30px;
}

.mv-box-price-num {
    font-family: "Noto Serif JP";
    font-size: 70px;
}

.mv-box-price-num span {
    font-family: "Noto Sans JP";
    font-size: 28px;
}

@media screen and (max-width: 1560px) {
    .mv-box-inner {
        width: 95%;
        margin: auto;
    }
}

@media screen and (max-width: 1490px) {
    .mv-box-text-wrap .mv-box-text:not(:last-child) {
        padding-right: 1.61vw;
        margin-right: 1.61vw;
    }

    .mv-box-text {
        font-size: 4.69vw;
    }

    .mv-box-main-title {
        font-size: 20px;
    }

    .mv-box-main {
        flex: 1;
    }
}

@media screen and (max-width: 1320px) {
    .mv-box-btn {
        font-size: 24px;
        width: 260px;
        height: 70px;
        margin: 15px auto 0;
    }

    .mv-box-btn::after {
        right: 20px;
    }

    .mv-box-prices {
        gap: 20px;
    }

    .mv-box-prices .mv-box-price:not(:last-child) {
        padding-right: 15px;
    }

    .mv-box-price-title {
        font-size: 24px;
    }

    .mv-box-price-num {
        font-size: 50px;
        line-height: 1.2;
    }

    .mv-box-price-num span {
        display: block;
        font-size: 20px;
    }
}

@media screen and (max-width: 767px) {
    .mv-box-text-wrap {
        justify-content: center;
        margin-top: 20px;
    }

    .mv-box-text {
        font-size: 26px;
    }

    .mv {
        padding-bottom: 250px;
    }

    .mv-catch-box {
        top: 30%;
        width: auto;
        padding: 10px;
    }

    .mv-catch {
        font-size: 40px;
    }

    .mv-box {
        padding: 15px 0;
        height: auto;
    }

    .mv-box-inner {
        display: block;
    }

    .mv-box-main-title {
        font-size: 20px;
        text-align: center;
    }

    .mv-box-btn {
        font-size: 18px;
        width: 230px;
        height: 50px;
        background: #fee825;
        margin: 20px auto 0;
    }

    .mv-box-prices {
        justify-content: center;
        gap: 15px;
        padding: 0 10px;
        margin-top: 20px;
    }

    .mv-box-prices .mv-box-price:not(:last-child) {
        padding-right: 10px;
    }

    .mv-box-price-title {
        font-size: 18px;
    }

    .mv-box-price-num {
        font-size: 40px;
    }

    .mv-box-price-num span {
        font-size: 16px;
    }
}

/*-------------------------------------------------------------*/
/* selling */

.home-selling-wrap {
    position: relative;
    padding: 39px 0 117px;
}

.home-selling-wrap::after {
    content: "";
    position: absolute;
    bottom: -487px;
    right: 0;
    background: url(https://up-vision.jp/assets/images/home/home-selling-wrap-bg.png) center/cover no-repeat;
    width: 360px;
    height: 686px;
    z-index: 1;
}

.home-selling {
    position: relative;
    padding-top: 83px;
}

.home-selling::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background: url(https://up-vision.jp/assets/images/home/home-selling-bg.png) center/cover no-repeat;
    width: 1198px;
    height: 877px;
}

.home-selling-main {
    box-sizing: border-box;

    position: relative;
    width: 600px;
    background: rgba(255, 255, 255, .85);
    box-shadow: -20px 20px 20px rgba(0, 0, 0, 0.16);
    z-index: 1;
    padding: 61px 46px 65px 24px;
    margin-left: 360px;
}

.home-selling-main-title {
    border-bottom: solid 1px #1A1A1A;
    padding-bottom: 17px;
    margin-bottom: 35px;
}

.home-selling-main-list {

    list-style: none;
    margin-bottom: 56px;
}

.home-selling-main-list li {
    display: flex;
    align-items: center;
    position: relative;
    font-size: 20px;
    line-height: 32px;
    color: #1a1a1a;
}

.home-selling-main-list li + li {
    margin-top: 10px;
}

.home-selling-main-list li::before {
    content: "";
    background: url(https://up-vision.jp/assets/images/home/icon-check.png) center/cover no-repeat;
    width: 57px;
    height: 55px;
    margin-top: 9px;
    margin-right: 19px;
}

.home-selling-main-list li span {
    flex: 1;
}

.home-selling-btn,
.home-selling-btn-bk {
    position: relative;
    display: grid;
    place-items: center;
    width: 306px;
    height: 74px;
    border-radius: 37px;
    background: #fff;
    border: 1px solid #707070;
    margin: auto;
    text-decoration: none;
    font-size: 22px;
    padding-right: 15px;
    overflow: hidden;
}

.home-selling-btn span {
    color: #1A1A1A;
    z-index: 1;
}

.home-selling-btn-bk span {
    color: white;
    z-index: 1;
}

.home-selling-btn::before,
.home-selling-btn-bk::before {
    content: '';
    position: absolute;
    top: 0;
    left: -130%;
    background: #000;
    width: 120%;
    height: 100%;
    transform: skewX(-25deg);
}

.home-selling-btn::after,
.home-selling-btn-bk::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 21px;
    transform: translateY(-50%);
    background: url(https://up-vision.jp/assets/images/common/icon-arrow.svg) center/cover no-repeat;
    width: 28px;
    height: 10px;
}

.home-selling-btn-bk {
    background: #0B0B0B;
    margin-bottom: 34px;
}

.home-selling-btn-bk::before {
    background: white;
}

.home-selling-btn-bk::after {
    background: url(https://up-vision.jp/assets/images/common/icon-arrow-w.svg) center/cover no-repeat;
}

.home-selling-btn:hover span {
    color: white;
}

.home-selling-btn-bk:hover span {
    color: #1A1A1A;
}

.home-selling-btn-bk:hover::before,
.home-selling-btn:hover::before {
    animation: skewanime .5s forwards;
}

.home-selling-btn:hover::after {
    background: url(https://up-vision.jp/assets/images/common/icon-arrow-w.svg) center/cover no-repeat;
}

.home-selling-btn-bk:hover::after {
    background: url(https://up-vision.jp/assets/images/common/icon-arrow.svg) center/cover no-repeat;
}

@media screen and (max-width: 1010px) {
    .home-selling-main {
        margin-left: auto;
        margin-right: 20px;
    }
}

@media screen and (max-width: 767px) {
    .home-selling-wrap {
        padding: 0;
    }

    .home-selling::after,
    .home-selling-wrap::after {
        content: none;
    }

    .home-selling {
        padding-top: 0;
    }

    .home-selling-main {
        width: 95%;
        padding: 15px 15px 30px;
        margin: 20px auto 40px;
        box-shadow: none;
    }

    .home-selling-main-title {
        margin-bottom: 20px;
    }

    .home-selling-main-list {
        margin-bottom: 30px;
    }

    .home-selling-main-list li {
        font-size: 16px;
        line-height: 1.6;
    }

    .home-selling-main-list li + li {
        margin-top: 10px;
    }

    .home-selling-main-list li::before {
        width: 25px;
        height: 25px;
        margin-top: 4px;
        margin-right: 10px;
    }

    .home-selling-btn,
    .home-selling-btn-bk {
        width: 220px;
        height: 50px;
        font-size: 18px;
        padding-right: 25px;
        overflow: hidden;
    }

    .home-selling-btn::after,
    .home-selling-btn-bk::after {
        right: 10px;
    }

    .home-selling-btn-bk {
        margin-bottom: 20px;
    }
}

/*-------------------------------------------------------------*/
/* rent */

.home-rent-wrap {
    position: relative;
}

.home-rent-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url(https://up-vision.jp/assets/images/home/home-rent-wrap-bg.jpg) center/cover no-repeat;
    width: 100%;
    height: 258px;
}

.home-rent {
    position: relative;
    padding-top: 324px;
    padding-bottom: 174px;
}

.home-rent::before {
    content: "";
    position: absolute;
    top: 324px;
    left: 0;
    background: url(https://up-vision.jp/assets/images/home/home-rent-bg.jpg) center/cover no-repeat;
    width: 960px;
    height: 784px;
}

.home-rent-inner {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    gap: 147px;
    max-width: 1430px;
    margin: auto;
}

.home-rent-main {

    position: relative;
    width: 708px;
    background: rgba(255, 255, 255, .79);
    box-shadow: -20px 20px 20px rgba(0, 0, 0, 0.16);
    padding: 70px 88px 60px 41px;
    margin-top: 51px;
    box-sizing: border-box;
    z-index: 1;
    color: #1a1a1a;
}

.home-rent-main-title {
    border-bottom: solid 1px #707070;
    padding-bottom: 24px;
    margin-bottom: 33px;
}

.home-rent-main-list li {
    display: flex;
    align-items: flex-start;
    gap: 35px;
}

.home-rent-main-list li + li {
    margin-top: 30px;
}

.home-rent-main-list-en {
    text-align: center;
}

.home-rent-main-list-num {
    box-sizing: border-box;
    display: grid;
    place-items: center;
    font-size: 46px;
    line-height: .5;
    border: solid 1px #1A1A1A;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    padding-bottom: 5px;
}

.home-rent-main-list-icon {
    width: 58px;
    padding-top: 10px;
}

.home-rent-main-list-body {
    flex: 1;
}

.home-rent-main-list-title {
    font-weight: 700;
    font-size: 24px;
}

.home-rent-main-list-text {

    font-size: 18px;
    line-height: 24px;
}

@media screen and (max-width: 1210px) {
    .home-rent-inner {
        gap: 20px;
    }
}

@media screen and (max-width: 980px) {
    .home-rent::before {
        left: -200px;
    }
}

@media screen and (max-width: 767px) {
    .home-rent-main-list-icon {
        width: 25px;
        padding-top: 5px;
    }

    .home-rent::before,
    .home-rent-wrap::before {
        content: none;
    }

    .home-rent {
        padding: 0 0 30px;
    }

    .home-rent-inner {
        display: block;
    }

    .home-rent-main {
        width: 95%;
        padding: 15px 15px 30px;
        margin: 20px auto 30px;
        box-shadow: none;
    }

    .home-rent-main-list li {
        gap: 15px;
    }

    .home-rent-main-list-en {
        font-size: 12px;
    }

    .home-rent-main-list-num {
        font-size: 30px;
        width: 30px;
        height: 30px;
        margin: auto;
    }

    .home-rent-main-list-title {
        font-size: 18px;
    }

    .home-rent-main-list-text {
        font-size: 14px;
        line-height: 1.6;
    }
}

/*-------------------------------------------------------------*/
/* advert */

.home-advert-wrap {
    position: relative;
    background: #F2F2F2;
}

.home-advert {
    color: #1a1a1a;
    padding-bottom: 60px;
}

.home-advert-title {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.home-advert-read {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 40px;
    text-align: center;
    margin-bottom: 59px;
}

.home-advert-list {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}

.home-advert-item {
    position: relative;
    width: 300px;
}

.home-advert-item:nth-child(2) {
    padding: 0 80px;
    margin: 0 70px;
    transition-delay: .4s;
}

.home-advert-item:nth-child(2)::before,
.home-advert-item:nth-child(2)::after {
    content: "";
    position: absolute;
    top: 22px;
    right: 0;
    border-right: solid 1px #707070;
    height: 333px;
}

.home-advert-item:nth-child(2)::before {
    left: 0;
    right: auto;
}

.home-advert-item:nth-child(3) {
    transition-delay: .8s;
}

.home-advert-list-title {
    position: relative;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    padding-left: 49px;
    margin-bottom: 40px;
}

.home-advert-list-title::before {
    content: "";
    position: absolute;
    top: 60%;
    left: 0;
    transform: translateY(-50%);
    background: url(https://up-vision.jp/assets/images/home/icon-check.png) center/cover no-repeat;
    width: 36px;
    height: 34px;
}

.home-advert-list-subtitle {
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 16px;
}

.home-advert-list-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
}

.home-advert-list-text + .home-advert-list-subtitle {
    margin-top: 16px;
}

.home-advert-list-text + .home-advert-list-text {
    margin-top: 24px;
}

@media screen and (max-width: 1240px) {
    .home-advert-item:nth-child(2) {
        padding: 0 20px;
        margin: 0 35px;
    }
}

@media screen and (max-width: 1040px) {
    .home-advert-list {
        width: 95%;
        margin: auto;
    }
}

@media screen and (max-width: 767px) {
    .home-advert-wrap::before {
        content: none;
    }

    .home-advert {
        padding: 0 0 40px;
    }

    .home-advert-inner {
        max-width: 90%;
        margin: auto;
    }

    .home-advert-read {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .home-advert-list {
        display: block;
        width: 100%;
    }

    .home-advert-item {
        width: 100%;
    }

    .home-advert-item:nth-child(2) {
        padding: 0;
        margin: 0;
    }

    .home-advert-item:nth-child(2)::before,
    .home-advert-item:nth-child(2)::after {
        content: none;
    }

    .home-advert-item + .home-advert-item {
        margin-top: 30px;
    }

    .home-advert-list-title {
        font-size: 20px;
        padding-left: 25px;
        margin-bottom: 20px;
    }

    .home-advert-list-title::before {
        width: 20px;
        height: 20px;
    }

    .home-advert-list-subtitle {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .home-advert-list-text {
        font-size: 16px;
        line-height: 1.6;
    }
}

/*-------------------------------------------------------------*/
/* vision */

.home-vision {
    color: #1a1a1a;
    padding: 190px 0;
}

.home-vision-title {
    display: flex;
    justify-content: center;
    margin-bottom: 75px;
}

.home-vision-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 70px 21px;
    max-width: 1200px;
    margin: auto;
}

.home-vision-list li {
    width: calc((100% - (21px * 2)) / 3);
    background: #fff;
    box-shadow: -3px 3px 6px rgba(0, 0, 0, 0.16);
    min-height: 480px;
}

.home-vision-list-img img {
    max-width: 100%;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.home-vision-list-body {
    padding: 19px 35px 30px;
}

.home-vision-list-title {
    position: relative;
    font-weight: 600;
    font-size: 26px;
    text-align: center;
    margin-bottom: 45px;
}

.home-vision-list-title::after {
    content: "";
    position: absolute;
    bottom: -27px;
    left: 50%;
    transform: translateX(-50%);
    background: url(https://up-vision.jp/assets/images/home/icon-break.svg) center/cover no-repeat;
    width: 40px;
    height: 8px;
}

.home-vision-list-text {
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
}

@media screen and (max-width: 1230px) {
    .home-vision-list {
        width: 95%;
        margin: auto;
    }
}

@media screen and (max-width: 767px) {
    .home-vision {
        padding: 40px 0;
    }

    .home-vision-title {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }

    .home-vision-list {
        gap: 30px 10px;
        max-width: 90%;
    }

    .home-vision-list li {
        width: calc((100% - 10px) / 2);
        min-height: auto;
    }

    .home-vision-list-body {
        padding: 10px 10px 20px;
    }

    .home-vision-list-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .home-vision-list-title::after {
        bottom: -10px;
        width: 20px;
        height: 4px;
    }

    .home-vision-list-text {
        font-size: 15px;
        line-height: 1.6;
    }
}

@media screen and (max-width: 540px) {
    .home-vision-list li {
        width: 100%;
    }
}

/*-------------------------------------------------------------*/
/* advantage */

.home-adv {
    display: flex;
    background: #F2F2F2;
}

.home-adv-main {
    box-sizing: border-box;
    width: 50%;
    padding: 43px 79px 41px 0;
}

.home-adv-main-inner {
    max-width: 660px;
    margin-left: auto;
}

.home-adv-title-wrap {
    display: flex;
    align-items: flex-end;
    gap: 11px;
}

.home-adv-title-wrap.sm {
    align-items: flex-start;
    gap: 15px;
}

.home-adv-title-icon {
    margin-bottom: -7px;
}

.home-adv-title {
    flex: 1;
    font-weight: 700;
    font-size: 40px;
    color: #35c5a7;
    border-bottom: solid 1px #01A1A1;
    padding-bottom: 7px;
}

.home-adv-title-wrap.sm .home-adv-title {
    font-size: 32px;
    line-height: 1.3;
    padding-bottom: 19px;
}

.home-adv-list {
    list-style: none;
    margin-top: 23px;
    margin-bottom: 40px;
}

.home-adv-list li {
    position: relative;
    font-weight: 500;
    font-size: 24px;
    padding-left: 58px;
}

.home-adv-list li + li {
    margin-top: .5em;
}

.home-adv-list li::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    background: url(https://up-vision.jp/assets/images/home/icon-check.png) center/cover no-repeat;
    width: 38px;
    height: 36px;
}

.home-adv-choose {
    list-style: none;
    margin-top: 52px;
}

.home-adv-choose li {
    display: flex;
    gap: 20px;
    margin-bottom: 2em;
}

.home-adv-choose-main {
    flex: 1;
}

.home-adv-choose-title {
    font-weight: 500;
    font-size: 24px;
}

.home-adv-choose-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
}

.home-adv-images {
    position: relative;
    width: 50%;
}

.home-adv-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.home-adv-images-inner {
    position: absolute;
    top: 257px;
    left: 0;
    width: 100%;
}

.home-adv-images-box {
    background: rgba(255, 255, 255, .9);
    padding: 32px 54px 32px 52px;
}

.home-adv-images-text {
    position: relative;
    font-weight: 500;
    font-size: 24px;
    line-height: 46px;
    padding-left: 45px;
    border-left: solid 1px #35C5A7;
}

.home-adv-images-text::after,
.home-adv-images-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-top: solid 1px #35C5A7;
    width: 17px;
}

.home-adv-images-text::after {
    bottom: 0;
    border-bottom: solid 1px #35C5A7;
}

.home-adv-btn {
    position: relative;
    display: grid;
    place-items: center;
    text-decoration: none;
    font-size: 26px;
    width: 300px;
    height: 84px;
    background: #fee825;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    border-radius: 44px;
    margin: 87px auto 0;
    overflow: hidden;
}

.home-adv-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -130%;
    background: white;
    width: 120%;
    height: 100%;
    transform: skewX(-25deg);
}

.home-adv-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 33px;
    transform: translateY(-50%);
    background: url(https://up-vision.jp/assets/images/common/icon-arrow.svg) center/cover no-repeat;
    width: 28px;
    height: 10px;
}

.home-adv-btn span {
    position: relative;
    color: #1a1a1a;
    z-index: 1;
}

.home-adv-btn:hover span {
    color: #1a1a1a;
}

.home-adv-btn:hover::before {
    animation: skewanime .5s forwards;
}

@media screen and (max-width: 1540px) {
    .home-adv-main {
        padding: 43px 20px 41px;
    }
}

@media screen and (max-width: 767px) {
    .home-adv {
        display: block;
        padding-bottom: 40px;
    }

    .home-adv-main {
        width: 100%;
        padding: 15px 10px 0;
    }

    .home-adv-title-wrap {
        gap: 7px;
    }

    .home-adv-title-wrap.sm {
        gap: 10px;
    }

    .home-adv-title {
        font-size: 26px;
        padding-bottom: 4px;
    }

    .home-adv-title-wrap.sm .home-adv-title {
        font-size: 20px;
        padding-bottom: 8px;
    }

    .home-adv-list {
        margin-top: 23px;
        margin-bottom: 40px;
    }

    .home-adv-list li {
        font-size: 18px;
        padding-left: 25px;
    }

    .home-adv-list li + li {
        margin-top: .5em;
    }

    .home-adv-list li::before {
        width: 20px;
        height: 20px;
    }

    .home-adv-choose {
        margin-top: 30px;
    }

    .home-adv-choose li {
        gap: 10px;
        margin-bottom: 1.5em;
    }

    .home-adv-choose-title {
        font-size: 20px;
        margin-bottom: 3px;
    }

    .home-adv-choose-text {
        font-size: 16px;
        line-height: 1.6;
    }

    .home-adv-images {
        width: 100%;
    }

    .home-adv-images-inner {
        position: static;
    }

    .home-adv-images-box {
        padding: 15px 15px 20px;
    }

    .home-adv-images-text {
        font-size: 18px;
        line-height: 1.6;
        padding-left: 20px;
    }

    .home-adv-images-text::after,
    .home-adv-images-text::before {
        width: 10px;
    }

    .home-adv-btn {
        font-size: 18px;
        width: 230px;
        height: 50px;
        margin: 40px auto 0;
    }

    .home-adv-btn::after {
        right: 20px;
    }
}

/*-------------------------------------------------------------*/
/* led */

.led {
    padding-bottom: 1px;
}

/*-------------------------------------------------------------*/
/* example */

.example {
    margin-bottom: 130px;
}

/*-------------------------------------------------------------*/
/* footer */

.footer {
    background: white;
}

.footer__detail,
.footer__ttl {
    color: #1E1E1E;
}

.footer__img2 .pc__img {
    filter: invert(0);
}

/*-------------------------------------------------------------*/
/* lower */

.general_rental_indoor .detail,
.general_rental_outdoor .detail,
.general_sale_indoor .detail,
.general_sale_outdoor .detail {
    padding-top: 95px;
}

.lower-kv {
    margin-bottom: 88px;
}

@media screen and (max-width: 767px) {
    .general_rental_indoor .detail,
    .general_rental_outdoor .detail,
    .general_sale_indoor .detail,
    .general_sale_outdoor .detail {
        padding-top: 0;
    }

    .lower-kv {
        margin-bottom: 40px;
    }
}

/*-------------------------------------------------------------*/
/* general_sale_outdoor */

.outdoor-type {
    color: #1a1a1a;
    padding-bottom: 195px;
}

.outdoor-type-inner {
    max-width: 1200px;
    margin: auto;
}

.outdoor-type-title-lv2 {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 63px;
}

.outdoor-type-title-lv2 .num {
    font-family: "Noto Serif JP";
    font-size: 50px;
    color: #92d6de;
    margin-right: 20px;
}

.outdoor-type-lead {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 58px;
}

.outdoor-type-col {
    display: flex;
    gap: 25px;
    margin-bottom: 63px;
}

.outdoor-type-col-img {
    flex: 1;
    max-width: 600px;
}

.outdoor-type-col-main {
    flex: 1;
}

.outdoor-type-col-title {
    position: relative;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 27px;
}

.outdoor-type-col-title::after {
    content: "";
    position: absolute;
    bottom: -9px;
    left: 0;
    background: url(https://up-vision.jp/assets/images/general/general_sale_outdoor/outdoor-type-col-title-bar01.svg) center/cover no-repeat;
    width: 188px;
    height: 7px;
}

.outdoor-type-col-title.bar02::after {
    background: url(https://up-vision.jp/assets/images/general/general_sale_outdoor/outdoor-type-col-title-bar02.svg) center/cover no-repeat;
    width: 150px;
}

.outdoor-type-col-list {
    list-style: none;
}

.outdoor-type-col-list li {
    position: relative;
    font-weight: 500;
    font-size: 20px;
    padding-left: 44px;
}

.outdoor-type-col-list li + li {
    margin-top: 1em;
}

.outdoor-type-col-list li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url(https://up-vision.jp/assets/images/general/general_sale_outdoor/icon-check.svg) center/cover no-repeat;
    width: 18px;
    height: 12px;
}

.outdoor-type-col-list + .outdoor-type-col-title {
    margin-top: 74px;
}

.outdoor-type-title-lv3 {
    position: relative;
    display: inline-block;
    font-weight: 600;
    font-size: 24px;
    border-bottom: solid 1px #92D6DE;
    padding: 0 22px 8px 20px;
    margin-bottom: 56px;
}

.outdoor-type-title-lv3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 6px;
    border-left: solid 1px #92D6DE;
    height: 51px;
}

.outdoor-type-table-scroll + .outdoor-type-table-scroll {
    margin-top: 108px;
}

.outdoor-type-table-scroll + .outdoor-type-title-lv3 {
    margin-top: 148px;
}

.outdoor-type-table-col,
.outdoor-type-table-row {
    border-top: solid 1px #D7DEDD;
    border-collapse: collapse;
    width: 100%;
}

.outdoor-type-table-row th,
.outdoor-type-table-row td {
    border-bottom: solid 1px #D7DEDD;
    border-right: solid 1px #D7DEDD;
    width: calc(100% / 6);
    padding: 17px 0;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
}

.outdoor-type-table-row th {
    font-weight: 600;
    background: #92D6DE;
}

.outdoor-type-table-row.lg th,
.outdoor-type-table-row.lg td {
    text-align: left;
    font-size: 18px;
    vertical-align: top;
    padding: 10px 10px 10px 43px;
}

.outdoor-type-table-row.lg th {
    width: 300px;
}

.outdoor-type-table-row.lg td {
    width: calc(100% - 300px);
}

.outdoor-type-table-col th:last-child,
.outdoor-type-table-col td:last-child,
.outdoor-type-table-row td:last-child {
    border-right: none;
}

.outdoor-type-table-col th,
.outdoor-type-table-col td {
    border-bottom: solid 1px #D7DEDD;
    border-right: solid 1px #D7DEDD;
    width: calc(100% / 4);
    padding: 28px 0;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    box-sizing: border-box;
}

.outdoor-type-table-col th {
    font-size: 24px;
    font-weight: 700;
    background: #92D6DE;
}

.outdoor-type-table-col.md th,
.outdoor-type-table-col.md td {
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    padding: 28px;
    width: auto;
}

.outdoor-type-table-col.md th:nth-child(1),
.outdoor-type-table-col.md th:nth-child(2) {
    width: 300px;
}

.outdoor-type-table-col.md th:nth-child(3) {
    width: auto;
}

.outdoor-type-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
}

.outdoor-type-title-lv4 {
    font-weight: 500;
    font-size: 24px;
    margin: 72px 0 36px;
}

.outdoor-type-point {
    font-family: "Zen Maru Gothic", sans-serif;
    display: flex;
    gap: 66px;
    align-items: center;
    max-width: 1560px;
    margin: 113px auto 0;
}

.outdoor-type-point .mv-box-btn {
    font-family: "Noto Sans JP", sans-serif;
    margin: 102px auto 0;
}

@media screen and (max-width: 1240px) {
    .outdoor-type-point {
        gap: 20px;
    }

    .outdoor-type-inner {
        width: 90%;
        margin: auto;
    }

    .outdoor-type-table-row.lg th {
        width: 200px;
    }

    .outdoor-type-table-col.md th:nth-child(1),
    .outdoor-type-table-col.md th:nth-child(2) {
        width: 250px;
    }
}

@media screen and (max-width: 767px) {
    .outdoor-type {
        padding-bottom: 80px;
    }

    .outdoor-type-inner {
        max-width: 95%;
    }

    .outdoor-type-title-lv2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .outdoor-type-title-lv2 .num {
        font-size: 30px;
        margin-right: 10px;
    }

    .outdoor-type-lead {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .outdoor-type-col {
        display: block;
        margin-bottom: 40px;
    }

    .outdoor-type-col-img {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .outdoor-type-col-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .outdoor-type-col-list li {
        font-size: 18px;
        padding-left: 25px;
    }

    .outdoor-type-col-list li::before {
        top: 55%;
        width: 16px;
        height: 10px;
    }

    .outdoor-type-col-list li + li {
        margin-top: 0.5em;
    }

    .outdoor-type-col-list + .outdoor-type-col-title {
        margin-top: 40px;
    }

    .outdoor-type-title-lv3 {
        font-size: 20px;
        padding: 0 10px 4px 13px;
        margin-bottom: 25px;
    }

    .outdoor-type-title-lv3::before {
        height: 42px;
    }

    .outdoor-type-table-scroll {
        overflow-x: scroll;
        width: 100%;
    }

    .outdoor-type-table-scroll + .outdoor-type-table-scroll {
        margin-top: 50px;
    }

    .outdoor-type-table-col,
    .outdoor-type-table-row {
        width: 1000px;
    }

    .outdoor-type-table-row th,
    .outdoor-type-table-row td {
        padding: 10px 0;
        font-size: 15px;
    }

    .outdoor-type-table-col th,
    .outdoor-type-table-col td {
        padding: 15px 0;
        font-size: 16px;
    }

    .outdoor-type-table-col th {
        font-size: 18px;
    }

    .outdoor-type-table-scroll + .outdoor-type-title-lv3 {
        margin-top: 60px;
    }

    .outdoor-type-table-row.lg th,
    .outdoor-type-table-row.lg td {
        font-size: 16px;
        padding: 10px;
    }

    .outdoor-type-text {
        font-size: 16px;
        line-height: 1.6;
    }

    .outdoor-type-title-lv4 {
        font-size: 18px;
        margin: 30px 0 15px;
    }

    .outdoor-type-table-col.md th,
    .outdoor-type-table-col.md td {
        font-size: 16px;
        padding: 10px;
    }

    .outdoor-type-table-col.md th:nth-child(1),
    .outdoor-type-table-col.md th:nth-child(2) {
        width: 200px;
    }

    .outdoor-type-point {
        display: block;
        margin: 60px auto 0;
    }

    .outdoor-type-point-main {
        width: 95%;
        margin: 20px auto 0;
    }

    .outdoor-type-point .mv-box-btn {
        margin: 50px auto 0;
    }
}








