@charset "UTF-8";
/*--------------------------------
----------------------------------
トップページにのみ反映されるCSSです
----------------------------------
----------------------------------*/
/* #mv */
#mv {
    background: #000;
    color: #fff;
    padding: var(--h_height) 0 100px;
}
#mv h1{
    font-size: var(--f46px);
    margin: 0;
    line-height: 1.5;
    position: relative;
    z-index: 5;
    padding: 0 min(50px,var(--side));
}
#mv .mv__slide {
    margin-top: -100px;
    margin-bottom: 50px;
    position: relative;
}
#mv .mv__slide::after {
    content: "";
    display: block;
    width: 100%;
    height: 200px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.85) 24%, rgba(0,0,0,0) 100%);

}
#mv .desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 90px;
}
#mv .desc p {
    font-size: var(--f18px);
    line-height: 2.8;
}

/* #product */
#product {
    background: #F8F8F8;
    padding: 70px var(--side);
}

.product__slide.slick-slider {
    transition: none;
    position: relative;
}
.product__slide.slick-slider::before,
.product__slide.slick-slider::after {
    content: "";
    display: block;
    width: 1px;
    height: calc(100% + 50px);
    background: #000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}
.product__slide.slick-slider::before{
    left: 0;
}
.product__slide.slick-slider::after{
    right: 0;
}
.product__slide span.slick-arrow {
    position: absolute;
    top: 50%;
    cursor: pointer;
    transition: opacity .2s;
    max-width: calc(var(--side) - 2px);
}
.product__slide span.slick-arrow svg{
    width: 100%;
    height: 100%;
}
.product__slide span.slick-arrow:hover {
    opacity: 0.6;
}
.product__slide span.prev-arrow.slick-arrow {
    left: 0;
    transform: translateY(-50%) translateX(-100%);
}
.product__slide span.next-arrow.slick-arrow {
    right: 0;
    transform: translateY(-50%) translateX(100%);
}

.product__slide__item.slick-slide {
    display: flex;
    gap: 20px;
    margin: 0 30px;
    align-items: flex-start;
}

.product__slide__item .images {
    display: grid;
    grid-template-columns: 5fr 1fr 2.3fr;
    grid-template-rows: auto 10px;
    width: 50%;
    flex-shrink: 0;
}
.product__slide__item .images .fukuro{
    grid-column: 1/3;
    grid-row: 1/2;
}
.product__slide__item .images .kona{
    grid-column: 2/4;
    grid-row: 1/3;
    align-self: end;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 10em;
}
.product__slide__item .images .kona img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product__slide__item .txt p.label {
    margin: 0;
}
.product__slide__item .txt h3 {
    font-size: var(--f36px);
    margin: 0;
    line-height: 1.4;
}
.product__slide__item .txt p.desc {
    font-size: var(--f18px);
}
.product__slide__item .chart dl{
    margin: 5px 0;
}
.product__slide__item .chart dd {
    width: 100%;
    height: 24px;
    border: solid 1px;
    margin: 0;
    display: flex;
    justify-content: space-evenly;
    position: relative;
    background: #fff;
}
.product__slide__item .chart dd p.min,
.product__slide__item .chart dd p.max {
    position: absolute;
    top: 50%;
    margin: 0;
    transform: translateY(-50%);
    font-size: var(--f14px);
}
.product__slide__item .chart dd p.min{
    left: 2px
}
.product__slide__item .chart dd p.max{
    right: 2px;
}
.product__slide__item .chart dd span {
    width: 1px;
    height: 100%;
    background: currentColor;
    display: block;
}
.product__slide__item .chart dd::before{
    content: "";
    display: block;
    background: rgba(0, 0, 0, 0.3);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.product__slide__item .chart dd[data-num="1"]::before{
    width: calc((100% / 8) * 1);
}
.product__slide__item .chart dd[data-num="2"]::before{
    width: calc((100% / 8) * 2);
}
.product__slide__item .chart dd[data-num="3"]::before{
    width: calc((100% / 8) * 3);
}
.product__slide__item .chart dd[data-num="4"]::before{
    width: calc((100% / 8) * 4);
}
.product__slide__item .chart dd[data-num="5"]::before{
    width: calc((100% / 8) * 5);
}
.product__slide__item .chart dd[data-num="6"]::before{
    width: calc((100% / 8) * 6);
}
.product__slide__item .chart dd[data-num="7"]::before{
    width: calc((100% / 8) * 7);
}
.product__slide__item .chart dd[data-num="8"]::before{
    width: calc((100% / 8) * 8);
}

/* #mise */
#mise {
    background: #000;
    padding: 60px var(--side);
}
#mise a {
    display: flex;
    background: #fff;
    text-decoration: none;
}
#mise a .img{
    width: min(40%,340px);
    overflow: hidden;
    background: #000;
}
#mise a .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#mise a .txt{
    padding: 0.5em 1em;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
#mise a .txt .ttl{
    font-size: var(--f24px);
    border-bottom: solid 1px #C1C1C1;
    padding-bottom: 0.5em;
    margin: 0;
}
#mise a .txt .link {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: flex-end;
}

#mise a:hover .img img{
    transform: scale(1.1);
    opacity: 0.8;
}
#mise a:hover .txt{
    background: #f0f0f0;
}
#mise a:hover .txt .link .icon{
    transform: translateX(2px);
}


/* #news */
#news {
    padding: 70px var(--side);
}
.newslist{
    border-top: solid 1px #EAEAEA;
    margin-bottom: 20px;
}
.newslist__item a {
    display: flex;
    align-items: baseline;
    text-decoration: none;
    gap: 0 20px;
    border-bottom: solid 1px #EAEAEA;
    padding: 1.25em 0.5em;
}
.newslist__item a:hover {
    background: #f2f2f2;
}
.newslist__item a h3{
    margin: 0;
}

/* #hr */
#hr {
    display: flex;
    gap: 1rem;
    overflow: hidden;
    justify-content: center;
}
#hr .hrimg{
    width: 33%;
    aspect-ratio: 3/2;
    flex-shrink: 0;
}
#hr .hrimg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* #contact */
#contact {
    padding-left: var(--side);
    display: flex;
    align-items: flex-end;
}
#contact > .txt {
    flex-grow: 1;
}
#contact > .txt p {
    line-height: 2.8;
}
#contact .img {
    width: 50%;
    height: 100%;
    padding-left: 1rem;
    overflow: hidden;
}
#contact .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*--------------------------------------------------------------------------------------------------------------------------------
 Break Point----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------------*/
@media (max-width:1024px) {
    /* product */
    .product__slide.slick-slider {
        max-width: 90vw;
        margin: 0 auto;
    }
    .product__slide span.slick-arrow {
        width: calc(5vw - 2px);
        max-width: unset;
    }
    .product__slide span.prev-arrow.slick-arrow {
        left: 1px;
    }
    .product__slide span.next-arrow.slick-arrow {
        right: 1px;
    }

    /* contact */
    #contact {
        flex-direction: column;
        align-items: stretch;
    }
    #contact .img {
        width: 70%;
        aspect-ratio: 16/9;
        order: -1;
        align-self: flex-end;
        padding: 0;
    }
    #contact > .txt {
        margin-top: -100px;
        width: fit-content;
        background: rgb(255 255 255 / 80%);
    }
}


@media (max-width:768px) { /* hamburger size */
    /* mv */
    #mv .mv__slide {
        margin-top: calc(0% - var(--h_height));
    }
    #mv .mv__slide {
        height: min(100vh,600px);
    }
    #mv .slick-list,
    #mv  .slick-track,
    #mv  .mv__slide__item {
        height: 100%;
    }
    #mv  .mv__slide__item img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    /* product */
    .product__slide__item.slick-slide {
        flex-direction: column;
        margin: 0 20px;
    }
    .product__slide__item .images {
        width: clamp(80%,400px,100%);
    }

    /* news */
    .newslist__item a {
        flex-direction: column;
    }

    /* contact */
    #contact .img {
        aspect-ratio: auto;
    }
}


@media (max-width:540px) {
    /* contact */
    #contact .img {
        width: 100%;
    }
    #contact > .txt {
        margin-top: 0;
        padding-right: var(--side);
    }
}
