@charset "UTF-8";

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
common 2022.02.02
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
* {
  box-sizing: border-box;
}

#suntoryCommonWrapper {
  animation: pagenation 1s forwards;
}

@keyframes pagenation {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

html,
body {
  position: relative;
  width: 100%;
  margin: 0;
}

picture {
  display: block;
  line-height: 0;
}

@media screen and (max-width: 767px) {
  html,
  body {
    position: relative;
    width: 100%;
    min-width: 375px;
    min-height: 100vh;
  }
}

.wrapper {
  position: relative;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}

main {
  position: relative;
  min-width: 1080px;
  min-height: 100vh;
}
@media screen and (max-width: 1080px) {
  main {
    position: relative;
    min-width: 100%;
    min-height: 100vh;
  }
}
@media screen and (max-width: 767px) {
  main {
    min-width: 375px;
    overflow: hidden;
  }
}

.fallback-image {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: bold;
  margin: 0;
  padding: 0;
  -webkit-margin-before: 0em;
  -webkit-margin-after: 0em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
}

a {
  text-decoration: none;
  overflow: hidden;
}

img {
  border: none;
  vertical-align: middle;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
}

hr {
  display: none;
  clear: both;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl {
  margin: 0;
  padding: 0;
}

dt {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
  font-feature-settings: "palt" 1;
}

* {
  -webkit-appearance: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .pc--blank {
    display: block;
  }
  .sp--only {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .sp--blank {
    display: block;
  }
  .pc--only {
    display: none !important;
  }
}

.wk__fadeanime-a_set {
  opacity: 0;
  transform: translate(-70px, -70px);
  transition: all 1s ease-in-out;
  transition-delay: 0.2s;
}

.wk__fadeanime-a_reset {
  opacity: 1;
  transform: translate(0, 0);
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
junnama-common
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.content {
  position: relative;
  max-width: 1000px;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .content {
    width: 90%;
    margin: 0 auto;
  }
}

.content--wide {
  position: relative;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .content--wide {
    width: 100%;
  }
}

.ttl {
  width: 100%;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .ttl {
    margin: 0 auto 40px;
  }
}

.ttl img {
  width: 100%;
  height: auto;
}

.txt__wrap {
  width: 80%;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .txt__wrap {
    width: 100%;
    margin: 0 auto 40px;
  }
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
header--nav(PCSP共用)
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.header--nav {
  display: flex;
  width: 100%;
  height: 64px;
  position: sticky;
  z-index: 10;
  top: 0;
  left: 0;
  background-color: #006fbc;
  box-shadow: 0 2px 10px 0px rgba(0, 0, 0, .5);;
}
@media screen and (max-width: 767px) {
  #header--nav {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -10;
  }
  #header--nav.open {
    z-index: 100;
  }
}


.header--nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header--nav__inner {
    display: block;
  }
}


.header__logo {
  display: block;
  flex-shrink: 0;
  width: 120px;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 100%;
    margin: 0 auto;
    padding: 24px 0;
  }
}

.header__logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .header__logo img {
    display: block;
    width: auto;
    height: 84px;
    margin: 0 auto;
  }
}

.header__list {
  display: flex;
  max-width: 1000px;
  justify-content: center;
  margin: 0 auto;
  height: 26px;
}
@media screen and (max-width: 767px) {
  .header__list {
    flex-direction: column;
    width: 96%;
    height: auto;
    margin: 0 auto;
  }
}


.header__list-item {
  flex: 0 0 auto;
  padding: 0 32px;
}

.header__list-item:not(:last-of-type) {
  border-right: 1px solid #FFF;
}
@media screen and (max-width: 767px) {
  .header__list-item:not(:last-of-type) {
    border-right: none;
  }
  .header__list-item {
    border-top: 1px solid hsla(0, 0%, 100%, .4);
    padding: 11px 0;
  }
}

.header__list-item a {
  display: block;
  height: 26px;
}
@media screen and (max-width: 767px) {
  .header__list-item a {
    height: auto;
  }
}


.header__list-item a:hover {
  opacity: .5;
  transition: opacity .3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .header__list-item {
    position: relative;
    text-align: center;
  }
}

.header__list-item img {
  display: block;
  width: auto;
  height: 26px;
}
@media screen and (max-width: 767px) {
  .header__list-item img {
    display: block;
    width: 100%;
    height: auto;
  }
}

/*■■■■■■■■■■■■■■■■■■■■■■
/* スマホ時のみーハンバーガーボタン
■■■■■■■■■■■■■■■■■■■■■■*/
@media screen and (max-width: 767px) {
  .open--btn {
    position: fixed;
    cursor: pointer;
    display: block;
    width: 47px;
    height: 47px;
    top: 12px;
    right: 12px;
    background-color: #006fbc;
    border: 1px solid #FFF;
    z-index: 9;
    transition: .3s;
  }

  .open--btn span {
    position: absolute;
    display: block;
    width: 22px;
    height: 2px;
    top: calc(50% - 1px);
    left: calc(50% - 11px);
    background-color: #FFF;
  }

  .open--btn span:before,
  .open--btn span:after {
    position: absolute;
    display: block;
    content: "";
    width: 22px;
    height: 2px;
    top: calc(50% - 7px);
    left: calc(50% - 11px);
    background-color: #FFF;
  }

  .open--btn span:after {
    top: calc(50% + 5px);
  }

  .open--btn.top {
    margin-top: 0 !important;
  }
}
/*■■■■■■■■■■■■■■■■■■■■■■
/* スマホ時のみー閉じるボタン
■■■■■■■■■■■■■■■■■■■■■■*/
@media screen and (max-width: 767px) {
  #header--nav .close--btn {
    cursor: pointer;
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    right: 16px;
    top: 16px;
    padding: 4px;
  }

  #header--nav .close--btn span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }

  #header--nav .close--btn span:before,
  #header--nav .close--btn span:after {
    position: absolute;
    display: block;
    content: "";
    width: 44px;
    height: 3px;
    background-color: #FFF;
    border-radius: 2px;
    top: calc(50% - 1px);
    left: calc(50% - 22px);
    transform: rotate(45deg);
    transition: .3s;
  }

  #header--nav .close--btn span:after {
    transform: rotate(-45deg);
  }
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
main
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.main {
  background-color: #ebe1c4;
  position: relative;
}

.main::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  width: 40px;
  height: 100%;
  background-image: url(../images/junnama_bg-v.png);
  background-repeat: repeat-y;
  background-size: contain;
  z-index: 2;
  /* フッターとの重なり防ぐため末尾透明マスク */
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 99%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 99%,
    transparent 100%
  );
}
@media screen and (max-width: 767px) {
  .main::before {
    width: 20px;
  }
}

.main::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  display: block;
  width: 40px;
  height: 100%;
  background-image: url(../images/junnama_bg-v.png);
  background-repeat: repeat-y;
  background-size: contain;
  transform: scale(-1, 1);
    /* フッターとの重なり防ぐため末尾透明マスク */
    -webkit-mask-image: linear-gradient(
      to bottom,
      #000 0%,
      #000 99%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      #000 0%,
      #000 99%,
      transparent 100%
    );
}
@media screen and (max-width: 767px) {
  .main::after {
    width: 20px;
  }
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
mv
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.mv {
  position: relative;
  background-image: url(../images/junnama_bg-mv.png);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 3 / 1;
  /* margin-top: 64px; */
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .mv {
    background-image: url(../images/junnama_bg-mv-sp.png);
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-top: 0;
  }
}

.mv__main {
  position:absolute;
  width: 80%;
  top: 5%;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .mv__main {
    width: 70%;
    top: 0;
    padding-top: 10px;
  }
}

.mv__main img {
  width: 100%;
  height: auto;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
bg_area（背景の商品画像 js表示制御あり）
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*■■■■■■■■■■■■■■■■■■
bg_area--a
■■■■■■■■■■■■■■■■■■*/
#bg_area--a {
  position: relative;
  z-index: 0;
}
#bg_area--a::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  background-image: url(../images/junnama_bg-fixed-01.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;

  /* 初期状態非表示 */
  opacity: 0;
  transition: opacity 0.5s ease;

  pointer-events: none;
}
@media screen and (max-width: 767px) {
  #bg_area--a::before {
    background-position: center center;
  }
}

#bg_area--a.bg-show::before {
  opacity: 0.8;
}


/*■■■■■■■■■■■■■■■■■■
bg_area--b
（スマホ時の移動＋徐々にopacity変化）
■■■■■■■■■■■■■■■■■■*/
#bg_area--b {
  position: relative;
  z-index: 0;
  /* スクロールに応じてJSで変更 */
  --bg-opacity: 0.8;
  --bg-position-y: 50%;
}
#bg_area--b::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100vh;

  background-image: url(../images/junnama_bg-fixed-02.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center var(--bg-position-y);

  opacity: 0;
  pointer-events: none;

  transition:
    opacity 0.5s ease,
    background-position 0.1s linear;
}
#bg_area--b > * {
  position: relative;
  z-index: 1;
}

#bg_area--b.bg-show::before {
  opacity: var(--bg-opacity);
}

/*
 * #bg_area--bの下端まで到達したら
 * fixedを解除して、その場で背景を止める
 */
#bg_area--b.bg-stop::before {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100vh;
}

@media screen and (min-width: 768px) {
  #bg_area--b {
    /* PCでは常に上下中央 */
    --bg-position-y: 50%;
  }
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
about
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.about {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .about {
    padding-top: 60px;
  }
}

.about__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .about__wrap {
    display: flex;
    flex-direction: column;
  }
  .column-reverce--sp {
    flex-direction: column-reverse;
  }
}

.about__wrap--1 {
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .about__wrap--1 {
    margin-bottom: 0;
  }
}
.about__wrap--2 {
  margin-bottom: 0px;
}

.about__main-img {
  width: 25%;
}
.about__main-img--2 {
  width: 30%;
}

@media screen and (max-width: 767px) {
  .about__main-img {
    width: 40%;
  }
  .about__main-img--1 {
    margin: 0 50% 0 50%;
  }
}
@media screen and (max-width: 767px) {
  .about__main-img--2 {
    width: 55%;
    margin: 0 auto;
  }
}

.about__main-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.about__note-img {
  width: 75%;
}
.about__note-img--2 {
  width: 70%;
}
.about__note-img img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .about__note-img,
  .about__note-img--2 {
    width: 100%;
  }
}



/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
history
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.history {
  padding-top: 120px;
  padding-bottom:  60px;
}
@media screen and (max-width: 767px) {
  .history {
    padding-top: 80px;
  }
}

.history__wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items:flex-end;
}
@media screen and (max-width: 767px) {
  .history__wrap {
    justify-content: space-between;
  }
}

.history__wrap:not(:last-of-type) {
  margin-bottom: 60px;
}



.history__main-img {
  width: 52%;
}
@media screen and (max-width: 767px) {
  .history__main-img {
    width: 47%;
  }
}

.history__main-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}


.history__note-img {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .history__note-img {
    width: 53%;
  }
  .history__note-img--1 {
    padding-right: 20px;
  }
  .history__note-img--2 {
    padding-left: 20px;
  }
}

.history__note-img img {
  width: 100%;
  height: auto;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
separator
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.separator {
  width: 100%;
  height: auto;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■
スマホ時 horizontal-scroll
■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* PC時通常表示 */
.horizontal-scroll {
  width: 100%;
  overflow: hidden;
}

.horizontal-track {
  display: block;
}

.horizontal-track img {
  display: block;
  width: 100%;
  height: auto;
}

/* PC時は1枚目だけ表示 */
.horizontal-track img:nth-child(n + 2) {
  display: none;
}

@media screen and (max-width: 767px) {
  .horizontal-scroll {
    width: 100%;
    overflow: hidden;
  }

  .horizontal-track {
    display: flex;
    width: max-content;
    gap: 0;
    will-change: transform;
  }

  .horizontal-track.is-ready {
    animation: horizontalScroll 30s linear infinite;
  }

  .horizontal-track img,
  .horizontal-track img:nth-child(n + 2) {
    display: block;
    width: auto;
    height: 140px;
    max-width: none;
    flex: 0 0 auto;
    margin: 0;
  }

  @keyframes horizontalScroll {
    from {
      transform: translate3d(0, 0, 0);
    }

    to {
      transform: translate3d(-33.333333%, 0, 0);
    }
  }
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
reprint
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.reprint {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .reprint {
    padding-top: 80px;
  }
}

.reprint__main-img {
  width: 100%;
}
.reprint__main-img img {
  width: 100%;
  height: auto;
}

.reprint__main-img:not(:last-of-type) {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .reprint__main-img:not(:last-of-type) {
    margin-bottom: 40px;
  }
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
product
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.product {
  padding-top: 120px;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .product {
    padding-top: 80px;
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 767px) {
  .product .ttl {
    margin-bottom: 55px;
  }
}

.product__wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .product__wrap {
    margin-bottom: 55px;
  }
}

.product__main-img {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .product__main-img {
    width: 50%;
  }
}

.product__main-img img {
  width: 100%;
  height: auto;
}

.product__text-img {
  width: 90%;
  margin: 0 auto;
  padding: 40px 60px;
  background-color: rgba(255, 255, 255, 0.65);
}
@media screen and (max-width: 767px) {
  .product__text-img {
    width: 100%;
    padding: 20px 20px;
  }
}

.product__text-img img {
  width: 100%;
  height: auto;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
date
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.date {
  padding-bottom: 260px;
}
@media screen and (max-width: 767px) {
  .date {
    padding-bottom: 200px;
  }
}

.date__ttl {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .date__ttl {
    width: 100%;
  }
}

.date__ttl img{
  width: 100%;
  height: auto;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
footer
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.footer {
  position: relative;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .footer {
    height: 20px;
  }
}
.footer::after {
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url(../images/junnama_bg-h.png);
  background-size: contain;
  background-repeat: repeat-x;
  background-position: bottom;
}

/*# sourceMappingURL=common.css.map */