@charset "UTF-8";

/*general*/
html{
    scroll-behavior: smooth;
}

.pc_only{
    display:none;
}

@media screen and (min-width: 768px){
    .pc_only{
    display:block;
}
}

/*商品部分*/
.product-item {
    height: auto;
}

.product-item a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product {
    background-color: #fff;
    height: 100%;
}

.product-item.hayawari .product-pic::before {
    content: "";
    display: block;
    position: absolute;
    background-image: url(/chugen/2025/images/icon-hayawari.svg);
    background-size: 100%;
    width: 5rem;
    height: 5rem;
    top: 0;
    left: 0;
    margin: auto;
    z-index: 100;
}

.product-item.hayawari .product-pic:hover {
    opacity: 1;
}

.product-pic-box {
    position: relative;
    margin-bottom: 5px;
}


.product-detail {
    padding: 10px;
}

.product-detail-name {
    font-weight: bold;
    margin-bottom: 5px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 3em;
}

.product-detail-price-box {
    display: flex;
    margin-bottom: 5px;
}

.product-detail-discount_rate {
    background-color: #ff0000;
    color: #fff;
    font-weight: bold;
    padding: 0 10px;
    width: fit-content;
    margin-right: 5px;
}

.product-detail-price {
    font-weight: bold;
    font-size: 18px;
}

.product-detail-price:before {
    content: "¥";
}

.product-detail-discount_rate::after {
    content: "OFF";
}

.product-detail-price.discount_price {
    color: #ff0000;
}

.product-detail-txt {
    font-size: 1.2rem;
    margin-bottom: 5px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

@media only screen and (min-width: 768px) {

    .product-slider .product-list {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 40px;
        column-gap: 20px;
    }

    .product-slider .product-item {
        width: calc((100% - 20px) / 5);
    }

    .product-slider-container .swiper-button-next,
    .product-slider-container .swiper-button-prev,
    .product-slider-container .swiper-pagination {
        display: none;
    }
}


/*メインビジュアル*/
.mainvisual-area-pic h1{
    width:150px;
    display:block;
    margin:0 auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.mainvisual-area-pic{
    width: 100%;
    height: 400px;
    position: relative;
    background-size: contain;
    background-position-x: left;
    background-attachment:fixed;
    background-image: url(/reposcoffee/images/img-mainvisualsp.jpg);
}

/*
.scroll-wrap {
  height: 270px;
  position: absolute;
  bottom: -25%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.scrollbar-text {
  display: inline-block;
  position: absolute;
  bottom: 0;
  padding: 10px 10px 110px;
  color: #333333;
  font-size: 16px;
  font-family: "futura-pt", "source-han-sans-japanese", sans-serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  left: 50%;
  transform: translateX(-50%);
}
.scrollbar-text span{
    font-weight:bold;
}

.scrollbar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1px;
}

.scrollbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 100px;
  background: #333333;
  animation: liner 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes liner {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
*/
@media screen and (min-width: 768px){
    .mainvisual-area-pic h1{
    width: 250px;
}
    .mainvisual-area-pic{
    height: 500px;
    background-position-x: center;
    background-size: cover;
}

.mainvisual-area-pic{
    background-image: url(/reposcoffee/images/img-mainvisual.jpg);
}
}

/*メインリード*/

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');

.lead-copy {
  overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  font-family: 'Josefin Sans', sans-serif;
}

.lead-copy span {
  display: block;
  transform: translate(100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}

.-visible,
.-visible span {
  transform: translate(0, 0);
}


.main-lead{
    background-color:#F2F2F2;
    padding: 100px 0;
}

.main-lead .inner{
    display:flex;
    justify-content: center;
    flex-direction: column;
    padding:0 50px;
}

.main-lead .lead-copy{
    width:fit-content;
    border-bottom: 3px solid #393330;
    font-size: 32px;
    letter-spacing:2px;
    padding:0 0 20px;
}

.main-lead .lead-copy span{
    font-weight:bold;
}

.main-lead .lead-text {
    line-height: 2!important;
    padding:20px 0 0;
}

@media screen and (min-width: 768px){
    .main-lead{
    padding: 130px 0;
}
    .main-lead .inner{
    display:flex;
    justify-content: center;
    flex-direction:row;
}
    .main-lead .lead-copy{
    margin: 0 40px 0 0;
    border-bottom:none;
}
    .main-lead .lead-text {
    line-height: 2!important;
    padding: 0 0 0 40px;
    border-left: 3px solid #393330;
}
    .scroll-wrap {
        display:none;
    }
}
/*ラインナップ*/

.lineup-area .lineup-title{
    background-color:#212121;
    padding: 30px 0;
}

.lineup-area .lineup-title h2{
    color:#FFF;
    font-weight:bold;
    display: block;
    text-align: center;
    font-size: 48px;
    line-height: 1.4;
    letter-spacing: 3px;
    font-family: "futura-pt", "source-han-sans-japanese", sans-serif;
}

.lineup-area .lineup-title h2 span{
    display:block;
    letter-spacing: 1px;
    font-size: 16px;
}

.lineup-area .swiper{
    color:#FFF;
    overflow:hidden;
}

.lineup-area .product{
    height: 470px;
    background-size: 830px;
    background-position:center;
    transition:0.5s;
}
.lineup-area .product:hover{
    background-size: 850px;
    opacity:0.8;
}

.lineup-area #product-geisha .product{
    background-image:url(/reposcoffee/images/img-product-geisha.jpg);
}

.lineup-area #product-hawaii_kona .product{
    background-image:url(/reposcoffee/images/img-product-hawaiikona.jpg);
}

.lineup-area #product-blue_mountain .product{
    background-image:url(/reposcoffee/images/img-product-bluemountain.jpg);
    position: relative;
}

.lineup-area .product .product-wrap{
    position:absolute;
    bottom:50px;
    padding: 0 20px;
}

.product-text{
    color:#FFF;
    font-size: 12px;
}

    .lineup-area .product-title{
        font-family: "futura-pt", "source-han-sans-japanese", sans-serif;
        letter-spacing:2px;
        font-weight:bold;
        font-size: 32px;
        /* padding: 390px 0 0; */
        color:#FFF;
    }

.lineup-area #product-blue_mountain .product-title{
        /* padding: 355px 0 0; */
}
.swiper-pagination{
    margin:0 auto 10px
}

.swiper-button-next svg,
.swiper-button-prev svg {
    display: none !important;
}

.swiper-button-next {
    background-image: url(/kekkonuchiiwai/images/arrow.svg);
    right: -10px!important;
    height: 65px;
}

.swiper-button-prev {
    background-image: url(/kekkonuchiiwai/images/arrow.svg);
    transform: scale(-1, 1);
    height: 65px;
    left: -10px !important;
}


.swiper-pagination-bullet-active{
    background:#FFF !important;
}
.swiper-pagination-bullet{
    border: 1px solid #FFF;
    background:none;
    opacity: 1;
}

@media screen and (min-width: 768px) {
    .lineup-area .swiper-wrapper{
        display:flex;
}
    .lineup-area .swiper-slide{
    width: 33.33%;
    overflow:hidden;
}
    .lineup-area .product{
    height: 550px;
    background-size: 850px;
}
    .lineup-area .product:hover{
    background-size: 890px;
}
    .lineup-area #product-blue_mountain .product-title{
        vertical-align: bottom;
}

    .swiper-button-next,
.swiper-button-prev {
    display: none !important;
}
    .swiper-pagination{
    margin:0;
}
}

/*コーヒーエリア*/

.coffee-area{
    position:relative;
    background-attachment:fixed;
    background-image: url(/reposcoffee/images/img-geisha-bgsp.jpg);
    background-size: cover;
    background-position: center;
}
.coffee-area#hawaiikona{
    background-image: url(/reposcoffee/images/img-hawaiikona-bgsp.jpg);
}
.coffee-area#bluemountain{
    color:#FFF;
    background-image: url(/reposcoffee/images/img-bluemountain-bgsp.jpg);
}

.coffee-area .inner {
  width: 100%;
  margin: 0px auto;
  padding: 110px 0 80px;
  overflow: hidden;
}

.coffee-area .coffee-area-title {
  position: absolute;
  color: #212121;
  font-family: "futura-pt", "source-han-sans-japanese", sans-serif;
  font-size: 20px;
  letter-spacing: 5px;
  font-weight: bold;
  top: 13px;
  margin: 0 15px;
  z-index: 2;
}

.coffee-area#bluemountain .coffee-area-title{
    color:#FFF;
}

.coffee-area .coffee-area-title:before{
    content:"";
    background-image:url(/reposcoffee/images/icon-morning.svg);
    width: 20px;
    height: 20px;
    margin: 0 7px -5px 0;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
}
.coffee-area#hawaiikona .coffee-area-title:before{
    background-image:url(/reposcoffee/images/icon-afternoon.svg);
    margin: 0 7px -3px 0;
}
.coffee-area#bluemountain .coffee-area-title:before{
    background-image:url(/reposcoffee/images/icon-evening.svg);
    margin: 0 7px -3px 0;
}

.coffee-area .coffee-area-title-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  background: #B4D0E2;
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 80%);
}
.coffee-area#hawaiikona .coffee-area-title-shape {
  background: #FF6638;
}
.coffee-area#bluemountain .coffee-area-title-shape {
  background: #003849;
}

.coffee-pic{
    width:200px;
    margin:0 auto;
}

.coffee-wrap{
    display:flex;
    column-gap: 50px;
    row-gap: 24px;
    justify-content: center;
    flex-direction: column;
    padding: 0 30px;
}

.coffee-text{
    text-align:center;
}

.coffee-text h3{
    font-weight:bold;
    font-size: 32px;
    font-family: "futura-pt", "source-han-sans-japanese", sans-serif;
    letter-spacing:4px;
}

.coffee-text h3 span{
    font-weight:bold;
    display:block;
    font-size: 16px;
    letter-spacing:0px;
}

.coffee-text h3 span.small{
    display: inline;
    font-size: 12px;
}

.coffee-text .coffee-price{
    font-weight: bold;
    font-size: 32px;
    letter-spacing:2px;
    margin:0 0 5px;
}

.coffee-text .coffee-price:before{
    content:"￥";
    font-size:24px;
}

.coffee-text .coffee-price:after{
    content:"(税込)";
    font-size:10px;
}

.coffee-text .coffee-description{
    font-weight: bold;
    text-align:left;
    margin: 0 0 20px;
}

.coffee-text .coffee-link {
    position: relative;
    display: inline-block;
    font-family: "futura-pt", "source-han-sans-japanese", sans-serif;
    padding: 0 60px 10px 0;
    font-size: 20px;
    letter-spacing: 3px;
    font-weight: bold;
    color: #212121;
}

#bluemountain .coffee-text .coffee-link{
    color:#FFF;
}

.coffee-text .coffee-link::before, .coffee-text .coffee-link::after {
    content: '';
    position: absolute;
    display: block;
    height: 4px;
    right: 0;
    transition: transform 0.3s ease, right 0.3s ease;
}

.coffee-text .coffee-link::before {
    width: 100%;
    bottom: 0px;
    border-bottom: solid 4px #212121;
}

#bluemountain .coffee-text .coffee-link::before {
    border-bottom: solid 4px #ffffff;
}

.coffee-text .coffee-link::after {
    bottom: 0;
    transform-origin: right bottom;
    width: 25px;
    background-color: #212121;
    transform: rotate(45deg);
}

#bluemountain .coffee-text .coffee-link::after{
    background-color: #ffffff;
}

.coffee-text .coffee-link:hover::before, .coffee-text .coffee-link:hover::after {
    right: -10px;
}

@media screen and (min-width: 768px){
    .coffee-area{
    background-image: url(/reposcoffee/images/img-geisha-bg.jpg);
}
.coffee-area#hawaiikona{
    background-image: url(/reposcoffee/images/img-hawaiikona-bg.jpg);
}
.coffee-area#bluemountain{
    background-image: url(/reposcoffee/images/img-bluemountain-bg.jpg);
}
    
.coffee-area .coffee-area-title-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  clip-path: polygon(0 0, 100% 0, 100% 55%, 0 80%);
}

.coffee-area .coffee-area-title:before{
    width: 30px;
    height: 30px;
    margin: 0px 10px -5px 0;
}

.coffee-area .coffee-area-title {
  font-size: 32px;
  margin: 0 0 0 50px;
}
    
    .coffee-area .inner {
  max-width: 900px;
  padding: 200px 0 130px;
}
    .coffee-wrap{
    column-gap: 50px;
    justify-content: center;
    flex-direction: row;
    padding:0;
}

    .coffee-pic{
    width: auto;
}
    
.coffee-text{
    width: 50%;
    text-align:left;
}

    .coffee-text h3{
    font-size:48px;
    margin: -15px 0 0;
}

.coffee-text h3 span{
    font-size:24px;
}

.coffee-text h3 span.small{
    font-size: 12px;
}

.coffee-text .coffee-price{
    font-size:48px;
}
.coffee-text .coffee-price:before{
    font-size:32px;
}   
.coffee-text .coffee-price:after{
    font-size:16px;
}
}

/*アソートセット*/
.assort-area{
    background-color:#EFEFEF;
    padding:80px 0;
}

.assort-area .area-title{
    font-weight:bold;
    font-size:40px;
    font-family: "futura-pt", "source-han-sans-japanese", sans-serif;
    letter-spacing: 4px;
    text-align:center;
    margin: 0 0 40px;
}

.assort-area .area-title span{
    font-weight:bold;
    display:block;
    font-size: 16px;
    letter-spacing: 1px;
}

@media screen and (max-width: 768px){

.assort-area .product-list{
    display:flex;
    justify-content: center;
    column-gap: 2%;
}

.assort-area .product-list li{
    width: 47%;
}}