#mv {
    width: 100%;
    height: 90vh;
}
#mv .main {
    position: relative;
}
#mv .mv_image {
    height: 90vh;
    object-fit: cover;
}
#mv .main img {
    width: 100%;
}
#mv .main .sidebar {
    position: absolute;
    top: 0;
    left: 0;
    width: 230px;
    background-color: #fff;
    padding-top: 30px;
    height: 100%;
}
#mv .main .sidebar .block {
    position: relative;
    height: 100%;
}
#mv .main .sidebar .logo {
    width: 65%;
    margin: 0 auto;
}
#mv .main .sidebar .logo img {
    width: 100%;
}
#mv .main .sidebar .sns {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed; 
    font-feature-settings: "pkna"; 
    font-size: 15px;
    font-weight: bold;
}
#mv .main .sidebar .sns a:hover {
    opacity: 0.6;
}
#mv .main .sidebar .bird {
    position: absolute;
    top: 30%;
    right: -35%;
    width: 60%;
    max-width: 160px;
}

#mv .main .rain {
    width: 15%;
    position: absolute;
    top: 10%;
    right: 0;
}
#mv .main .humans {
    width: 26.5%;
    max-width: 340px;
    position: absolute;
    bottom: 0;
    left: 80px;
}
#mv .main .vector {
    width: 38%;
    position: absolute;
    bottom: 0;
    right: 0;
}
#mv .copy {
    position: absolute;
    bottom: 75px;
    right: 7%;
    color: #fff;
    font-weight: bold;
}
#mv .copy h2 {
    position: relative;
    line-height: 1.4;
    font-size: 55px;
    letter-spacing: 10%;
    text-decoration-line: underline;
    text-decoration-color: #ffffff6f;   /* 色 */
    text-decoration-thickness: 18px;   /* 太さ */
    text-underline-offset: -5px;      /* 文字からの距離 */
    text-decoration-skip-ink: auto;   /* 画面映えを良くする（デフォルト） */
}
@media screen and (max-height: 800px) {
    #mv .main .sidebar {
        width: 190px;
    }
    #mv .mv_image {
        object-position: center 20%;  /* ← これを追加 */
    }
    #mv .main .humans {
        width: 20.5%;
    }
    #mv .main .vector {
        width: 30%;
    }
    #mv .main .sidebar .bird {
        width: 50%;
    }
    #mv .copy h2 {
        font-size: 45px;
    }
}

@media screen and (max-width: 768px) {
    #mv {
        height: calc(100vh - 75px);
    }
    #mv .mv_image {
        height: calc(100vh - 75px);
        object-fit: cover;
    }
    #mv .copy {
        top: 45%;
        transform: translateY(-45%);
        left: 30px;
        height: fit-content;
    }
    #mv .copy h2 {
        position: relative;
        line-height: 1.4;
        font-size: 27.5px;
        letter-spacing: 10%;
        writing-mode: vertical-rl;
        text-decoration: none;
    }
    #mv .bird {
        position: absolute;
        left: 22%;
        width: 90px;
        top: 35px;
    }
    #mv .main .rain {
        width: 35%;
        position: absolute;
        top: auto;
        bottom: 35px;
    }
    #mv .main .sns {
        position: absolute;
        top: 30%;
        left: auto;
        right: 14px;
        font-weight: bold;
        color: #fff;
        transform: translateY(-30%);
        writing-mode: vertical-rl;
        text-orientation: mixed; 
        font-feature-settings: "pkna"; 
        font-size: 15px;
    }
    #mv .main .sns a {
        color: #fff;
    }
}

#thought {
    position: relative;
    background-color: #FEF2E2;
    padding: 100px 0;
    border-radius: 0 0 150px 0;
}
#thought .lt {
    width: 27.8%;
    position: absolute;
    top: 60px;
    left: 0;
}
#thought .rb {
    width: 27.8%;
    position: absolute;
    bottom: 0;
    right: 0;
}
#thought .butterfly {
    position: absolute;
    animation-name: anim_po;
    width: 10%;
    top: 50px;
    right: 12.5%;
    animation: sway 3s ease-in-out infinite;
    transform-origin: center center;
}
@keyframes sway {
  0%   { transform: rotate(0deg) translateY(0px); }
  25%  { transform: rotate(4deg) translateY(-4px); }
  50%  { transform: rotate(0deg) translateY(0px); }
  75%  { transform: rotate(-4deg) translateY(4px); }
  100% { transform: rotate(0deg) translateY(0px); }
}
#thought .lt img, 
#thought .rb img, 
#thought .butterfly img {
    width: 100%;
}
#thought .block {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
}
#thought .block .ttl {
    display: flex;
    margin-bottom: 45px;
}
#thought .block h2 {
    writing-mode: vertical-rl;
    text-orientation: mixed; 
    font-feature-settings: "pkna"; 
    font-size: 40px;
    margin-right: 50px;
}
#thought .block p {
    width: 90%;
    max-width: 326px;
    margin-right: 80px;
    margin-top: 50px;
    line-height: 2;
}
#thought .nav .item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}
#thought .nav .item .thumb {
    position: relative;
    width: 176px;
    height: 176px;
}
#thought .nav .item .thumb::before {
    content: "";
    position: absolute;
    inset: -7px;              /* にじみの広がり */
    background: #fff;
    filter: blur(15px);        /* ぼかし量 */
    border-radius: inherit;
    pointer-events: none;
    z-index: -1;
}
#thought .nav .item .nav-btn {
    width: 220px;
    padding-left: 45px;
    margin-left: 30px;
}
#thought .nav .item .nav-btn img {
    right: 11px;
}
@media screen and (max-width: 768px) {
    #thought {
        padding: 70px 0;
        border-radius: 0 0 150px 0;
    }
    #thought .lt {
        width: 56%;
        top: 65px;
    }
    #thought .block {
        display: block;
    }
    #thought .block .ttl {
        padding: 0 20px 0 40px;
    }
    #thought .block h2 {
        font-size: 25px;
        margin-right: 23px;
    }
    #thought .block p {
        width: 100%;
        margin-right: 0;
        margin-top: 0;
        font-size: 14px;
        line-height: 2;
    }
    #thought .nav {
        width: calc(100% - 40px);
        margin: 0 auto;
    }
    #thought .nav .item {
        justify-content: center;
        align-items: center;
        margin-bottom: 15px;
    }
    #thought .nav .item .thumb {
        position: relative;
        width: 165px;
        height: auto;
    }
    #thought .nav .item .thumb img {
        aspect-ratio: 33 / 20;
        object-fit: cover;
        border-radius: 20px;
    }
    #thought .nav .item .nav-btn {
        width: 165px;
        padding-left: 30px;
        margin-left: 7px;
        font-size: 16px;
    }
    #thought .nav .item .nav-btn img {
        right: 11px;
    }
}
#m-lineup {
    position: relative;
    border-radius: 100px 0 0 0;
    padding: 90px 0;
    background-color: #fff;
}
#m-lineup::after {
    content: "";
    position: absolute;
    z-index: -10;
    bottom: 0;
    left: 0;
    top: 0;
    width: 220px;
    height: 120px;
    background: #FEF2E2;
}
#m-lineup .ttl {
    position: relative;
    text-align: center;
    width: fit-content;
    margin: 0 auto 60px;
}
#m-lineup .ttl h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}
#m-lineup .ttl .tree {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
}
#m-lineup .ttl .tree.left {
    left: -64px;
}
#m-lineup .ttl .tree.right {
    right: -64px;
}
#m-lineup .links {
    width: 72%;
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
#m-lineup .links .item {
    position: relative;
    width: 23.6%;
    display: flex;
    align-items: center;
    background-color: #FEF2E2;
    border-radius: 30px;
    padding: 20px 0;
}
#m-lineup .links .item .logo img {
    width: 84%;
    margin: 0 auto;
}
#m-lineup .links .item .arrow {
    width: 20px;
    position: absolute;
    bottom: 20px;
    right: 20px;
}
@media screen and (max-width: 768px) {
    #m-lineup {
        padding: 45px 0;
    }
    #m-lineup .ttl {
        position: relative;
        text-align: center;
        width: fit-content;
        margin: 0 auto 60px;
    }
    #m-lineup .ttl h2 {
        font-size: 25px;
        margin-bottom: 10px;
    }
    #m-lineup .ttl p {
        font-size: 15px;
        font-weight: 500;
    }
    #m-lineup .ttl .tree {
        top: -5px;
        transform: translateY(0);
        width: 32px;
    }
    #m-lineup .ttl .tree.left {
        left: 23%;
    }
    #m-lineup .ttl .tree.right {
        right: 23%;
    }
    #m-lineup .links {
        width: calc(100% - 40px);
        margin: auto;
        flex-wrap: wrap;
    }
    #m-lineup .links .item {
        width: 48%;
        margin-bottom: 17px;
        aspect-ratio: 31 / 28;
    }
    #m-lineup .links .item .arrow {
        width: 15px;
        position: absolute;
        bottom: 10px;
        right: 50%;
        transform: translateX(50%);
    }
}

#members {
    position: relative;
    z-index: 100;
    padding-bottom: 220px;
    background-color: #fff;
    background-image: url("../img/member-bg.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0 90px;
}
#members .ttl {
    width: fit-content;
    margin: 0 auto 60px;
    position: relative;
    text-align: center;
}
#members .ttl h2 {
    font-size: 40px;
    margin-bottom: 45px;
}
#members .block {
    width: 70%;
    max-width: 885px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
#members .block .member-item {
    position: relative;
    width: 30%;
    aspect-ratio: 1 / 1;
    height: 100%;
    margin-bottom: 70px;
    margin-right: 3%;
    perspective: 1000px;
}
#members .block .item-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    transform-origin: center; /* 中心を基準に回転 */
}
#members .block .member-item .front,
#members .block .member-item .back {
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    border-radius: 10px;
    transition: transform 0.8s;
}
#members .block .member-item .front {
    width: 100%;
    transform: rotateY(0deg);
}
#members .block .member-item .back {
    width: 83%;
    transform: rotateY(180deg);
}
#members .block .member-item.flipped .front {
  transform: rotateY(180deg);
}

#members .block .member-item.flipped .back {
  transform: rotateY(360deg);
}
/* ホバーで回転 */
#members .block .member-item:hover .front {
  transform: rotateY(180deg);
}

#members .block .member-item:hover .back {
  transform: rotateY(360deg);
}

#members .block .member-item:nth-child(3),
#members .block .member-item:nth-child(5) {
    margin-right: 0;
}
#members .block .member-item:nth-child(4),
#members .block .member-item:nth-child(5),
#members .block .member-item:nth-child(6),
#members .block .member-item:nth-child(7) {
    margin-bottom: 0;
}
#members .block .member-item .arrow {
    width: 20px;
    position: absolute;
    right: 60px;
    top: 30%;
    transform: translateY(-30%);
}
#members .block .member-item .bird {
    width: 60px;
    position: absolute;
    right: -15px;
    top: 5%;
    transform: translateY(-5%);
}
#members .block .member-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
#members .obj {
    width: 29%;
    z-index: 10;
    max-width: 370px;
    position: absolute;
    right: 90px;
    bottom: -50px;
}
@media screen and (max-width: 768px) {
    #members {
        padding-bottom: 100px;
    }
    #members .ttl {
        margin-bottom: 50px;
    }
    #members .ttl h2 {
        font-size: 25px;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    #members .block {
        width: calc(100% - 40px);
        margin: auto;
    }
    #members .block .member-item {
        position: relative;
        width: 47%;
        margin-bottom: 25px;
    }
    #members .block .member-item:nth-child(3),
    #members .block .member-item:nth-child(5) {
        margin-right: 3%;
    }
    #members .block .member-item:nth-child(2n) {
        margin-right: 3%;
    }
    #members .block .member-item:nth-child(4) {
        margin-bottom: 25px;
    }
    #members .block .member-item:nth-child(5),
    #members .block .member-item:nth-child(6) {
        margin-bottom: 0;
    }
    #members .obj {
        width: 60%;
        z-index: 1;
        max-width: 370px;
        position: absolute;
        right: 0;
        bottom: -75px;
    }
}

#book {
    padding: 115px 0 90px 0;
    background-color: #FEF2E2;
    border-radius: 100px 0 0 0;
}
#book .block {
    width: 75%;
    max-width: 965px;
    margin: auto;
}
#book .block .ttl {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#book .block .ttl h2 {
    font-size: 40px;
    writing-mode: vertical-rl;
    text-orientation: mixed; 
    font-feature-settings: "pkna"; 
    letter-spacing: 3px;
    margin-right: 8px;
}
#book .block .ttl img {
    width: 116px;
    height: auto;
    flex: 0 0 auto;           /* ← 余白で伸びない */
    align-self: flex-start;
}
#book .block .ttl .swiper-btn-pc {
    display: flex;
    justify-content: space-between;
    width: 190px;
    height: 70px;
    margin-bottom: 10px;
}
#book .block .swiper-btn-sp {
    display: none;
}
#book .block .ttl .swiper-btn-pc .swiper-button-next, 
#book .block .ttl .swiper-btn-pc .swiper-button-prev {
    position: relative;
    background-color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}
#book .block .ttl .swiper-btn-pc .swiper-button-next::after, 
#book .block .ttl .swiper-btn-pc .swiper-button-prev::after {
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    width: 25px;
    height: 11px;
}
#book .block .ttl .swiper-btn-pc .swiper-button-prev::after {
    background-image: url("../img/btn-prev.png");
}
#book .block .ttl .swiper-btn-pc .swiper-button-next::after {
    background-image: url("../img/btn-next.png");
}
#book .block .main-slide {
    position: relative;
    width: 68%;
}
#book .block .main-slide .swiper-slide {
    position: relative;
    width: 32%;
    border-radius: 20px 40px 20px 20px;
    background-color: #fff;
    overflow: hidden;
}
#book .block .main-slide .swiper-slide .rb {
    position: absolute;
    background-color: #00A048;
    width: 60px;
    height: 30px;
    border-radius:0 0 100px 100px;
    transform: rotate(-45deg);
    bottom: -4px;
    right: -33px;
}
#book .block .main-slide .swiper-slide a:hover {
    opacity: 0.6;
}
#book .block .main-slide .swiper-slide .thumb img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px 40px 0 0;
    aspect-ratio: 45 / 28;
}
#book .block .main-slide .swiper-slide .content {
    position: relative;
    padding: 15px 10px 20px 10px
}
#book .block .main-slide .swiper-slide .content .cat {
    position: absolute;
    top: -10px;
    left: 0;
}
#book .block .main-slide .swiper-slide .content .cat p {
    background: #262C35;
}
#book .block .main-slide .swiper-slide .content .date {
    color: #9C9B9B;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.75;
}
#book .block .main-slide .swiper-slide .content h3 {
    font-size: 16px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical; 
    -webkit-line-clamp: 2;
    overflow: hidden; 
}
#book .block .main-slide .swiper-slide .content .author {
    display: flex;
}
#book .block .main-slide .swiper-slide .content .author img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}
#book .block .main-slide .swiper-slide .content .author ul li {
    font-size: 14px;
    line-height: 1.75;
}
#book .block .bottom-slide {
    display: flex;
    margin-top: 40px;
    margin-bottom: 30px;
}
#book .block .bottom-slide .item {
    width: 15%;
    margin-right: 2%;
}
#book .block .bottom-slide .item:last-child {
    margin-right: 0;
}
#book .block .bottom-slide .item:hover {
    opacity: 0.6;
}
#book .block .bottom-slide .item img {
    width: 100%;
    aspect-ratio: 44 / 25;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 10px;
}
#book .block .bottom-slide .item h3 {
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical; 
    -webkit-line-clamp: 2;
    overflow: hidden; 
}
#book .block .nav-btn {
    width: 260px;
    padding-left: 65px;
    margin: auto;
}
#book .block .nav-btn img {
    right: 18px;
}
@media screen and (max-width: 768px) {
    #book {
        position: relative;
        z-index: 10;
        padding: 100px 0 60px 0;
        border-radius: 0 0 0 0;
    }
    #book .block {
        width: 100%;
    }
    #book .block .ttl .flex {
        width: fit-content;
        flex-direction: column;
        align-items: center;
    }
    #book .block .ttl h2 {
        font-size: 30px;
        letter-spacing: 3px;
        margin-bottom: 40px;
        margin-right: 0;
    }
    #book .block .ttl .swiper-btn-pc {
        display: none;
    }
    #book .block .swiper-btn-sp {
        display: flex;
        justify-content: space-between;
        width: 190px;
        height: 70px;
        margin-bottom: 10px;
        margin-top: 30px;
    }
    #book .block .swiper-btn-sp .swiper-button-next, 
    #book .block .swiper-btn-sp .swiper-button-prev {
        position: relative;
        background-color: #fff;
        width: 70px;
        height: 70px;
        border-radius: 50%;
    }
    #book .block .swiper-btn-sp .swiper-button-next::after, 
    #book .block .swiper-btn-sp .swiper-button-prev::after {
        content: "";
        background-repeat: no-repeat;
        background-size: contain;
        width: 25px;
        height: 11px;
    }
    #book .block .swiper-btn-sp .swiper-button-prev::after {
        background-image: url("../img/btn-prev.png");
    }
    #book .block .swiper-btn-sp .swiper-button-next::after {
        background-image: url("../img/btn-next.png");
    }
    #book .block .bottom-slide {
        width: calc(100% - 40px);
        margin: auto;
        display: flex;
        flex-wrap: wrap;
        margin-top: 40px;
        margin-bottom: 30px;
    }
    #book .block .bottom-slide .item {
        width: 46%;
        margin-right: 4%;
        margin-bottom: 20px;
    }
    #book .block .bottom-slide .item:nth-child(2n) {
        margin-right: 0;
    }
    #book .block .bottom-slide .item:hover {
        opacity: 0.6;
    }
    #book .block .bottom-slide .item img {
        width: 100%;
        aspect-ratio: 44 / 25;
        object-fit: cover;
        border-radius: 20px;
        margin-bottom: 10px;
    }
    #book .block .bottom-slide .item h3 {
        font-size: 14px;
    }
    #book .block .nav-btn {
        margin-top: 30px;
        margin-bottom: 60px;
    }
}

#product {
    padding: 100px 0 150px 0;
}
#product h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
}
#product .product-slide {
    margin-bottom: 30px;
}
#product .swiper-slide {
    position: relative;
}
#product .swiper-slide a:hover {
    opacity: 0.6;
}
#product .swiper-slide img {
    width: 100%;
    aspect-ratio: 44 / 56;
    object-fit: cover;
    border-radius: 15px;
}
#product .swiper-slide p {
    position: absolute;
    width: calc(100% - 40px);
    background-color: #ffffffbd;
    left: 50%;
    bottom: 15px;
    font-size: 12px;
    padding: 3px;
    transform: translateX(-50%);
    display: -webkit-box;
    -webkit-box-orient: vertical; 
    -webkit-line-clamp: 2;
    overflow: hidden; 
}
#product .nav-btn {
    width: 260px;
    padding-left: 65px;
    margin: auto;
}
#product .nav-btn img {
    right: 18px;
}
@media screen and (max-width: 768px) {
    #product {
        padding: 60px 0 56px 0;
    }
    #product h2 {
        font-size: 25px;
        margin-bottom: 30px;
    }
    #product .swiper-slide img {
        border-radius: 5px;
    }
    #product .swiper-slide p {
        width: calc(100% - 20px);
    }
}

#event {
    position: relative;
    background-color: #FEF2E2;
    padding: 100px 0 100px 12.5%;
}
#event .block {
    position: relative;
    z-index: 10;
}
#event .item {
    width: 47.6%;
    margin-bottom: 30px;
}
#event .item h2 {
    font-size: 40px;
    margin-bottom: 30px;
}
#event .item.card {
    background-color: #fff;
    border-radius: 30px;
    padding: 35px 35px 30px 35px;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}
#event .item.card .ttl {
    border-top: 1px solid #CBC4BB;
    border-bottom: 1px solid #CBC4BB;
    font-weight: bold;
    font-size: 14px;
    padding: 10px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical; 
    -webkit-line-clamp: 2;
    overflow: hidden; 
}
#event .item.card .ttl:hover {
    opacity: 0.6;
}
#event .item.card.event .content {
    margin-bottom: 20px;
}
#event .item.card .cat {
    font-size: 14px;
    color: #C21919;
    font-weight: bold;
    margin-bottom: 15px;
}
#event .item.card .time {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
}
#event .item.card .time img {
    width: 20px;
    margin-right: 15px;
}
#event .item.news {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 65px;
}
#event .item.news ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
}
#event .item.news ul li img {
    width: 20px;
    margin-right: 15px;
}
#event .item.news ul li a:hover {
    opacity: 0.6;
}
#event .item .nav-btn {
    width: 260px;
    margin: 30px auto 0;
    padding-left: 65px;
}
#event .item.card.model .nav-btn {
    background-color: #A2D064;
}
#event .item.news .nav-btn {
    background: none;
    color: #262C35;
    border: 2px solid #262C35;
}
#event .item .nav-btn img {
    right: 12px;
}
#event .item.news .nav-btn img {
    width: 15px !important;
    height: 12px !important;
}
#event .lt-pickup {
    width: 55.5%;
    max-width: 700px;
    position: absolute;
    z-index: 1;
    top: -100px;
    left: 0;
}
#event .rb-pickup {
    width: 36.5%;
    max-width: 470px;
    position: absolute;
    z-index: 1;
    bottom: -68px;
    right: 0;
}
#event .lb-pickup {
    width: 33.5%;
    max-width: 430px;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: -50px;
}
#event .road {
    position: absolute;
    width: 100%;
    right: 0;
    top: 0;
    z-index: 5;
}
#event .house {
    position: absolute;
    width: 38%;
    max-width: 485px;
    left: 10px;
    bottom: -10px;
    z-index: 5;
}
@media screen and (max-width: 768px) {
    #event {
        position: relative;
        background-color: #FEF2E2;
        padding: 50px 20px 50px 20px;
    }
    #event .item {
        width: 100%;
        margin-bottom: 30px;
    }
    #event .item h2 {
        font-size: 20px;
        margin-bottom: 17px;
    }
    #event .item.card {
        background-color: #ffffffd9;
        border-radius: 0;
        padding: 20px 35px 25px 35px;
        box-shadow: none;
    }
    #event .item.card .ttl:hover {
        opacity: 0.6;
    }
    #event .item.card.event .content {
        margin-bottom: 20px;
    }
    #event .item.card .cat {
        margin-bottom: 10px;
    }
    #event .item.news {
        margin-top: 0;
    }
    #event .item.news ul li {
        font-size: 14px;
    }
    #event .item.news ul li img {
        width: 15px;
    }
    #event .item.news .nav-btn {
        background: #ECA65C;
        color: #fff;
        border: none;
    }
    #event .lt-pickup {
       display: none;
    }
    #event .rb-pickup {
        display: none;
    }
    #event .lb-pickup {
        display: none;
    }
    #event .road {
        position: absolute;
        width: 100%;
        height: 100%;
        right: 0;
        top: 0;
        z-index: 5;
        overflow: hidden;
    }
    #event .house {
        position: absolute;
        width: 84%;
        left: -25%;
        bottom: 0;
        z-index: 5;
    }
}