#main_visual{
    width: 100%;
    position: relative;
    margin-top:100px;
    padding: 40px 0;
    margin-bottom: var(--section-margin3);
}

.main-visual-swiper {
    width: 100%;
    margin: 0 auto;
}

.main-visual-swiper .swiper-pagination {
    bottom: 20px;
}

.main-visual-swiper .swiper-pagination-bullet {
    background: var(--color-red);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.main-visual-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* news */
#news{
    width: 100%;
    padding: 0 0 var(--section-margin6);
}

.news_wrap{
    width: 100%;
    background-color: #FFF;
    display: flex;
    flex-direction: row;
}

.news_title{
    width: 30%;
    padding: 20px;
    background-color: var(--color-red);
    color: #FFF;
    font-size: var(--font-l);
    font-weight: bold;
}

.news_contents{
    width: 70%;
    padding: 20px;
    color: #000;
    font-size: var(--font-m);
    line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .news_wrap{
    flex-direction: column;
  }
  .news_title{
    width: 100%;
  }
  .news_contents{
    width: 100%;
  }
}
/* movie */
#movie {
    width: 100%;
    padding: 0 0 var(--section-margin6);
}

#movie iframe {
    width: 100%;
    aspect-ratio: 16/9;
    max-width: 800px;
    margin: 0 auto;
    display: block;
}
/* product */
#product{
    width: 100%;
    padding: 0 0 var(--section-margin6);
}

.product_wrap{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.sagetora_wrap{
    width: calc((100% - 20px) / 2);
}

.agetora_wrap{
    width: calc((100% - 20px) / 2);
}

#product .product_title{
    width: 100%;
    margin-bottom: var(--section-margin3);
}
#product ul.product_list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#product ul.product_list li{
    width: 100%;
    border:20px
}
#product ul.product_list li img{
    height: 200px;
    object-fit: cover;
}
#product ul.product_list.sagetora li{
    border:20px solid var(--primary-color);
}

#product ul.product_list.agetora li{
    border:20px solid var(--secondary-color);
}


@media screen and (max-width: 768px) {
    .product_wrap{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .sagetora_wrap{
        width: 100%;
    }
    
    .agetora_wrap{
        width: 100%;
    }
    
}
