@charset "UTF-8";

/* COUPON PAGE 
============================================ */
.sec_coupon,
.other_brands_box .inner{
  max-width: 56rem;
  margin: auto;
}
.coupon_main_ttl{
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 1em 0;
  text-align: center;
  color: var(--color-set-a);
}
.coupon-page .coupon_img {
  display: block;
  padding: 1em 0 1.5em;
  filter: drop-shadow(.5em .5em .5em rgba(180, 180, 180, 0.5));
  margin: auto;
  max-width: 38rem;
}

.coupon_sub_ttl {
  position: relative;
  width: 100%;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.5;
  padding: 1.5em 0 2em;
  margin: 0 auto;
}
.coupon_sub_ttl::after{
  content: "";
  position: absolute;
  bottom: 0;
  background-image: url(/img/coupon_speach_line.svg);
  display: block;
  width: 100%;
  height: 1.3rem;
  background-size: auto 100%;
  background-position: center;
}
.coupon_desc,
.other_brands_desc{
  font-size: 1.2rem;
  font-family: sans-serif;
  color: #333;
  font-weight: 400;
  line-height: 1.7;
  padding: 1em 0;
}
.coupon_asterisk{
  font-family: sans-serif;
  font-weight: 400;
  color: var(--color-set-a);
}

.other_brands_box{
  padding: 2em 0 4em;
}

.other_brands_name{
  position: relative;
  font-size: 2.4rem;
  text-align: center;
  padding: .6em 0 .4em;
}
.other_brands_name::after{
  content: "";
  position: absolute;
  display: block;
  width: .9rem;
  height: .9rem;
  background-color: var(--color-set-a);
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.other_brands_link{
  display: block;
  position: relative;
  margin: 1em 0;
  aspect-ratio: 4 / 3;
}
.other_brands_link::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  mix-blend-mode: multiply;
  opacity: .5;
  transition: opacity .6s;
}
.other_brand_logo{
  position: absolute;
  width: 20rem;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 5;
}
.noacoffee .other_brand_logo{
  position: absolute;
  width: 16rem;
}
.other_brand_img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .coupon_main_ttl{
    font-size: 3.2rem;
  }
  .coupon_sub_ttl{
    font-size: 2.4rem;
    padding: 1.5em 0 1.1em
  }
  .coupon_sub_ttl::after {
    height: 1.5rem;
  }
  .coupon-page .coupon_img {
    width: 100%;
  }
  .other_brands_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3em 6em 5em;
  }
  .other_brands_box:nth-child(even) {
    flex-direction: row-reverse;
  }
  .other_brands_box .inner {
    width: 48%;
    padding: 0;
    margin: 0;
  }
  .other_brands_link{
    display: flex;
    width: 47%;
    margin: 0;
  }
  /* .other_brands_name {
    font-size: 3.2rem;
    line-height: 1.3;
  } */
  .other_brand_logo {
    width: 22rem;
  }
  .noacoffee .other_brand_logo {
    width: 19rem;
  }
  .other_brands_link:hover::after{
    opacity: .3;
  }
}/* 768 end */


/* SHOP PAGE 
============================================ */
.sec_shop_info .inner{
  max-width: 60rem;
  margin: auto;
}
.shop_title{
  font-size: 2.3rem;
  font-weight: bold;
  padding: 1em 0;
  color: #333;
}
.shop_desc{
  font-size: 1.2em;
  letter-spacing: 0.03em;
  line-height: 2.2;
  padding: .6em 0 ;
  color: #333;
}
.shop_desc_wrap{
  padding: 1em 0;
}
.shop_slider_wrap{
  padding: 2em 0;
}
.shop_img_wrap{
  position: relative;
  padding-top: 72%;
}
.shop_img{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  object-fit: cover;
  height: 100%;
}
.shop_img_slide_inner{
  position: relative;
}
/* .shop_img_slide_inner::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-set-a);
  mix-blend-mode: multiply;
  opacity: .5;
} */
.shop_img_ttl{
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: fit-content;
  font-size: 1.8em;
  letter-spacing: 0.03em;
  padding: .2em 1em .3em;
  color: transparent;

  transition: color .6s .8s;
}
.shop_img_ttl::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  border-radius: 0 .6em 0 0;
  background-color: var(--color-set-a);
  z-index: -1;
  opacity: 0;
  transition: width .4s .4s , opacity .4s .4s;
}

.slick-current .shop_img_ttl{
  color: #fff;
}
.slick-current .shop_img_ttl::before{
  opacity: 1;
  width: 100%;
}
.slick-current .shop_img_slide_inner::after{
  opacity: 0;
}

@media (min-width: 768px) {
  .shop_img_slide_inner{
    margin: 0 1em;
  }
  .shop_img_wrap{
    padding-top: 58%;
  }
  .shop_desc{
    font-size: 15px;
  }
  .shop_img_ttl{
    transition: color .6s 2.5s;
  }
  .shop_img_ttl::before{
    transition: width .4s 2s , opacity .4s 2s;
  }
}/* 768 end */

@media (min-width: 1200px) {
  .shop_img_wrap{
    padding-top: 48%;
  }
}/* 1200 end */



/* CONPANY PAGE 
============================================ */
.company_data_block{
  font-size: 1.2rem;
  letter-spacing: .03em;
  text-align: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--color-set-b);
}
.company_data_ttl{
  font-weight: bold;
  padding: .5em 0 .2em;
}
.company_data_data{
  color: #333;
  padding: .5em 0;
}
.company_data_link{
  display: block;
  margin-top: 0.2em;
}
.company-detail p {
  font-family: sans-serif !important;
}

@media (min-width: 768px) {
  .company_data_block{
    display: flex;
    text-align: left;
    max-width: 52rem;
    margin: auto;
  }
  .company_data_ttl{
    width: 7.4rem;
    text-align-last: justify;
    margin: 0 2em 0 1em;
  }
  .company_data_link{
    display: inline-block;
    margin-top: 0;
  }
}/* 768 end */

/* SITEMAP PAGE 
============================================ */
.sec_sitemap{
  max-width: 56rem;
  margin: auto;
}
.sitemap_block{
  padding: 2em 0;
  text-align: center;
}
.sitemap_block .nav_li{
  padding: 1.8em 0;
  border-bottom: 1px solid var(--color-set-b);
}
.sitemap_block .nav_li .en{
  font-size: 2.1rem;
  line-height: 1.3;
  letter-spacing: .01em;
}
.sitemap_block .nav_li .ja{
  display: block;
  font-size: 1.2rem;
}
.nav_contain_ul{
  display: block;
  padding: 1.5em 0 0;
}
.nav_contain_li{
  font-size: 1.2rem;
  padding: .3em 0;
}