@charset "utf-8";
/* スライダー */
.swiper-container .swiper-button-next, .swiper-container .swiper-button-prev {
  top: 50%;
  opacity: 0.7;
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 9px;
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 7px;
}
.swiper-pagination-bullet{
  background: #FFFFFF;
  opacity: 1;
  width: 12px;
  height: 12px;
}
.swiper-pagination-bullet-active {
  background: #1b4a9c;
}
.fv-wrap {
  overflow: hidden;
  height: calc(100vh - 40px);
}
.swiper-container {
    height: 100%;
}
.swiper-slide {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.fv-copy {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  color: #fff;
}
.fv-title img {
  width: 290px;
  max-width: 95%;
}
.fv-desc {
  font-size: 15px;
}
/* //スライダー */
@media all and (max-width: 319px) {
  .fv-desc {
    font-size: 13px;
  }
}
@media all and (min-width: 576px) {
  /* スライダー */
  .fv-wrap {
    height: 400px;
  }
  .fv-title img {
    width: 330px;
  }
  .fv-desc {
    font-size: 1.5rem;
  }
  /* //スライダー */
}

@media all and (min-width: 768px) {
  .fv-copy {
    left: 10vw;
  }

}
@media all and (min-width: 992px) {
  .fv-wrap {
    max-height : -webkit-calc(100vh - 97px);
    max-height : calc(100vh - 97px);
  }
  /* スライダー */
  .fv-wrap {
    height: 600px;
  }
  .fv-title img {
    width: 420px;
  }
  .fv-desc {
    font-size: 1.72rem;
  }
  /* //スライダー */
}
@media all and (min-width: 1200px) {
  /* スライダー */
  .fv-wrap {
    height: 700px;
  }
  .fv-title img {
    width: 515px;
  }
  /* //スライダー */
}

/* 各セクションの余白 */
.pt-top {
  padding-top: 3.5rem;
}
.pb-top {
  padding-bottom: 3.5rem;
}
@media all and (min-width: 768px) {
  .pt-top {
    padding-top: 4rem;
  }
  .pb-top {
    padding-bottom: 4rem;
  }
}
@media all and (min-width: 1200px) {
  .pt-top {
    padding-top: 8.33rem;
  }
  .pb-top {
    padding-bottom: 8.33rem;
  }
}
/* //各セクションの余白 */

/* トップの商品情報 */
.top-drink-series a {
  display: block;
}
.top-drink-series a img {
  transition: .3s;
  border-radius: 1.25rem;
  display: block;
}
.border-edging {
  border: 1px solid #ccc;
}
@media all and (min-width: 576px) {
  .top-drink-series a img {
    border-radius: 2rem;
  }
}
.top-drink-series a:hover img {
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, .4));
}
/* //トップの商品情報 */

/* トップのキャンペーン */
.section-top-campaign {
  background-color: #369CCB;
}
.swiper-top-campaign .swiper-slide {
  width: 50%;
}
.swiper-top-campaign .swiper-slide a {
  display: block;
  padding: 0 5px;
}
.section-top-campaign .swiper-top-campaign-wrap {
  position: relative;
  padding-bottom: 35px;
}
.section-top-campaign .swiper-button-prev, .section-top-campaign .swiper-button-next {
  width: 27px;
  height: 27px;
  top: auto;
  bottom: 0;
  background-size: contain;
}
.section-top-campaign .swiper-button-prev {
  background-image: url(../images/top/btn-prev.svg);
  left: 7px;
}
.section-top-campaign .swiper-button-next {
  background-image: url(../images/top/btn-next.svg);
  left: 45px;
}
@media all and (min-width: 768px) {
  .section-top-campaign .swiper-button-prev, .section-top-campaign .swiper-button-next {
    top: 50%;
    margin-top: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
  }
  .section-top-campaign .swiper-button-prev {
    left: 0;
  }
  .section-top-campaign .swiper-button-next {
    right: 0;
    left: auto;
  }
}
@media all and (min-width: 992px) {
  .swiper-top-campaign .swiper-slide a {
    padding: 0 15px;
  }
  .section-top-campaign .swiper-button-prev, .section-top-campaign .swiper-button-next {
    position: absolute;
  }
}
@media all and (min-width: 1200px) {
  .section-top-campaign .swiper-button-prev, .section-top-campaign .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
/* //トップのキャンペーン */

/* 知る・楽しむ */
.learn_enjoy a {
  display: block;
}
.learn_enjoy_img_wrap {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.learn_enjoy_img_wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.learn_enjoy a:hover .learn_enjoy_img_wrap::before {
  opacity: 0.2;
}
.learn_enjoy a img {
  -webkit-transition: transform 3s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: transform 3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 3s cubic-bezier(0.19, 1, 0.22, 1);
  width: 100%;
}
.learn_enjoy a:hover img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.learn_enjoy a p {
  color: #070304;
  text-align: center;
  margin: .5rem 0 0;
  line-height: 1.27;
}
.learn_enjoy a:hover p {
  text-decoration: underline;
}
@media all and (min-width: 768px) {
  .learn_enjoy a p {
    margin: 1rem 0 0;
  }
}
/* //知る・楽しむ */

/* SNS公式アカウント */
.top-sns-links_ttl {
  font-size: 1.22rem;
  font-weight: 400;
  text-align: center;
} 
.top-sns-links ul {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 22px;
}
.icon-fb, .icon-insta, .icon-youtube {
  width: 43px;
  min-width: 43px;
}
.icon-twitter {
  width: 37px;
}
@media all and (min-width: 768px) {
  .top-sns-links ul {
    column-gap: 40px;
  }
  .icon-fb, .icon-insta, .icon-youtube {
    width: 54px;
  }
  .icon-twitter {
    width: 45px;
  }
}
/* //SNS公式アカウント */

/* 企業情報 */
.lazyloaded.section-top-corporate {
  background: url(../images/top/bg-top-corporate.jpg) no-repeat center center/cover;
}
.top-corporate-ttl {
  font-size: 3rem;
  color: #fff;
  text-align: center;
  position: relative;
  padding-top: 65px;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
}
.sspro {
  font-family: 'Source Sans Pro', sans-serif;
}
.top-corporate-ttl::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 35px;
  height: 50px;
  background: url(../images/top/icon-corporate-white.svg) no-repeat center center/contain;
}
.top-corporate-text {
  font-size: 1.11rem;
  line-height: 1.65;
  color: #fff;
  text-align: center;
}
@media all and (min-width: 768px) {
  .top-corporate-ttl {
    font-size: 4.22rem;
    padding-top: 5.27rem;
  }
  .top-corporate-ttl::before {
    width: 50px;
    height: 72px;
  }
}
/* //企業情報 */

/* 採用情報 */
.top-recruit_ttl {
  font-size: 1.66rem;
  line-height: 1.66;
  max-width: 100%;
  width: max-content;
  margin-right: auto;
  margin-left: auto;
}
.top-recruit_text {
  line-height: 1.55;
  letter-spacing: .037em;
}
@media all and (max-width: 400px) {
  .top-recruit_ttl {
    font-size: 1.45rem;
  }
}
@media all and (min-width: 768px) {
  .top-recruit-text-outer {
    position: relative;
    padding-bottom: 50px;
    height: 100%;
  }
  .top-recruit_ttl {
    margin-left: 0;
  }
  .top-recruit-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0;
  }
}
/* //採用情報 */

/* フッター上バナー */
.footer-banner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.11rem;
  box-shadow: 0 0 6px rgba(0, 0, 0, .15);
  position: relative;
  padding: 15px 1.94rem 15px 1.38rem;
  height: 68px;
}
.footer-banner-link img {
  max-width: 91%;
}
.footer-banner-link:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, .20);
}
.footer-banner-link::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  right: 10px;
  width: 1rem;
  height: 1rem;
  background: url(../images/common/icon-newtab.svg) no-repeat center center/contain;
}
@media all and (min-width: 576px) {
  .footer-banner-link {
    height: 75px;
  }
}
@media all and (min-width: 768px) {
  .footer-banner-link {
    padding: 15px 1.94rem 15px 1rem;
    height: 100%;
  }
  .footer-banner-link_balance img {
    width: 110px;
  }
}
@media all and (min-width: 992px) {
  .footer-banner-link {
    padding: 1.8rem 2.2rem 1.8rem 2.2rem;
  }
  .footer-banner-link::after {
    right: 1.55rem;
  }
  .footer-banner-link_balance img {
    width: 120px;
  }
}
@media all and (min-width: 1200px) {
  .footer-banner-link {
    padding: 1.8rem 3.5rem 1.8rem 2.2rem;
  }
  .footer-banner-link_balance img {
    width: 157px;
  }
  .footer-banner-link img {
    max-width: 100%;
  }
}
@media all and (min-width: 1400px) {

}
/* //フッター上バナー */