/* ========== common style ========== */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

:root {
  --l-color-primary: #004f2f;
  --l-color-secondary: #a9741c;
  --l-color-gradient-green: #386121;
  --l-color-gradient-yellowgreen: #6d6e10;
  --l-color-bg: #f0f0f0;
  --l-color-bg-gray: #e9e9e9;
  --l-color-bg-white: #f7f7f7;
  --l-color-text: #001919;
  --l-color-gray: #d4d4d4;
  --l-color-gradient: var(--l-color-primary) 0%, var(--l-color-gradient-green) 33%, var(--l-color-gradient-yellowgreen) 66%, var(--l-color-secondary) 100%;
  --l-font-family: "Hiragino Mincho ProN", "YuMincho", "Yu Mincho", "MS PMincho", serif;
  --l-font-bold: 700;
}

#suntory_contents .log-of-laphroaig_contents {
  background: var(--l-color-bg);
  color: var(--l-color-text);
  text-align: left;
}
#suntory_contents .log-of-laphroaig_contents * {
  font-family: var(--l-font-family);
  font-feature-settings: "palt";
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents .only_pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  #suntory_contents .log-of-laphroaig_contents .only_sp {
    display: none;
  }
}

.m_fadeup {
  animation: none;
  opacity: 0;
}
.m_fadeup.is_viewed {
  animation: 1s ease forwards fadeInUp;
}
.m_fadeup.--delay10 {
  animation-delay: 0.3s;
}
.m_fadeup.--delay20 {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
#suntory_contents .c-link__more {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #suntory_contents .c-link__more {
    font-size: 3.125vw;
  }
}
#suntory_contents .c-link__more.--has-underline {
  position: relative;
  padding-bottom: 14px;
}
@media screen and (max-width: 768px) {
  #suntory_contents .c-link__more.--has-underline {
    padding-bottom: 1.8229166667vw;
  }
}
#suntory_contents .c-link__more.--has-underline::before, #suntory_contents .c-link__more.--has-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  height: 1px;
  background: currentColor;
  transition: width 0.5s;
}
#suntory_contents .c-link__more.--has-underline::before {
  width: 100%;
  opacity: 0.2;
}
@media screen and (max-width: 768px) {
  #suntory_contents .c-link__more.--has-underline::before {
    opacity: 1;
  }
}
#suntory_contents .c-link__more.--has-underline::after {
  width: 0;
  opacity: 1;
}
@media (hover: hover) {
  #suntory_contents .c-link__more.--has-underline:hover::after {
    width: 100%;
  }
}
#suntory_contents .c-link__more.--has-arrow {
  gap: 14px;
}
#suntory_contents .c-link__more__arrow {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 8px;
}
#suntory_contents .c-link__more__arrow::before, #suntory_contents .c-link__more__arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10.7px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 0.5px) 50%;
}
#suntory_contents .c-link__more__arrow::before {
  transform: rotate(21.25deg);
}
#suntory_contents .c-link__more__arrow::after {
  transform: rotate(-21.25deg);
}
#suntory_contents .c-section__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-weight: var(--l-font-bold);
}
@media screen and (max-width: 768px) {
  #suntory_contents .c-section__head {
    gap: 3.125vw;
  }
}
#suntory_contents .c-section__head .section__head__en {
  line-height: 1;
  text-align: center;
}
#suntory_contents .c-section__head .section__head__sub {
  font-size: 1.125rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #suntory_contents .c-section__head .section__head__sub {
    font-size: 3.90625vw;
  }
}
#suntory_contents .c-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 248px;
  padding: 20px 8px;
  background-color: var(--l-color-primary);
  color: #fff;
  font-size: 1.25rem;
  font-weight: var(--l-font-bold);
  line-height: 1;
  transition: opacity 0.5s;
}
@media screen and (max-width: 768px) {
  #suntory_contents .c-button {
    min-width: 32.2916666667vw;
    padding: 2.6041666667vw 1.0416666667vw;
    font-size: 2.6041666667vw;
  }
}
#suntory_contents .c-button:link, #suntory_contents .c-button:visited {
  color: #fff;
}
#suntory_contents .c-button::after {
  content: "";
  position: absolute;
  top: 0.3em;
  right: 0.3em;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
  border-width: 0px 12px 12px 0px;
}
@media screen and (max-width: 768px) {
  #suntory_contents .c-button::after {
    border-width: 0px 1.5625vw 1.5625vw 0px;
  }
}
@media (hover: hover) {
  #suntory_contents .c-button:hover {
    opacity: 0.7;
  }
}

/* ========== common parts style ========== */
#suntory_contents .experience {
  background-color: var(--l-color-bg-gray);
}
#suntory_contents .experience .experience__inner {
  max-width: 1024px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  padding-top: 120px;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #suntory_contents .experience .experience__inner {
    width: 100%;
    padding-right: 5.2083333333vw;
    padding-left: 5.2083333333vw;
    padding-top: 15.625vw;
  }
}
@media screen and (max-width: 768px) {
  #suntory_contents .experience .section__head__en img {
    width: 60.2864583333vw;
  }
}
#suntory_contents .experience .experience__container {
  position: relative;
  width: 90%;
  margin: 64px auto 0;
}
@media screen and (max-width: 768px) {
  #suntory_contents .experience .experience__container {
    width: 100%;
    margin-top: 10.4166666667vw;
    padding-top: 28.3854166667vw;
  }
}
#suntory_contents .experience .experience__img {
  position: absolute;
  bottom: 40px;
  left: 7%;
}
@media screen and (max-width: 768px) {
  #suntory_contents .experience .experience__img {
    top: 0;
    right: 0;
    bottom: initial;
    left: 0;
    display: flex;
    justify-content: center;
  }
  #suntory_contents .experience .experience__img .experience__img__glass img {
    width: 22.1354166667vw;
  }
}
#suntory_contents .experience .experience__text-box {
  padding: 40px 20px 40px 30%;
  background-color: var(--l-color-bg-white);
}
@media screen and (max-width: 768px) {
  #suntory_contents .experience .experience__text-box {
    padding: 28.3854166667vw 5.2083333333vw 10.4166666667vw;
  }
}
@media screen and (max-width: 768px) {
  #suntory_contents .experience .experience__name {
    display: flex;
    justify-content: center;
    margin: auto;
  }
  #suntory_contents .experience .experience__name img {
    width: 47.3958333333vw;
  }
}
#suntory_contents .experience .experience__detail {
  margin-top: 28px;
}
@media screen and (max-width: 768px) {
  #suntory_contents .experience .experience__detail {
    margin-top: 6.25vw;
    font-size: 3.90625vw;
  }
}

#suntory_contents .linenup {
  background-color: var(--l-color-bg-gray);
}
#suntory_contents .linenup .linenup__inner {
  max-width: 1024px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  padding-top: 60px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  #suntory_contents .linenup .linenup__inner {
    width: 100%;
    padding-right: 5.2083333333vw;
    padding-left: 5.2083333333vw;
    padding-top: 10.4166666667vw;
    padding-bottom: 15.625vw;
  }
}
@media screen and (max-width: 768px) {
  #suntory_contents .linenup .section__head__en img {
    width: 35.9375vw;
  }
}
#suntory_contents .linenup .linenup__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 90%;
  margin: 64px auto 0;
  padding-bottom: 48px;
  background: var(--l-color-bg-white);
  background: linear-gradient(0deg, var(--l-color-bg-white) 0%, var(--l-color-bg-white) 40%, rgba(255, 255, 255, 0) 40%);
}
@media screen and (max-width: 768px) {
  #suntory_contents .linenup .linenup__container {
    width: 100%;
    margin-top: 5.2083333333vw;
    padding-bottom: 6.25vw;
  }
}
#suntory_contents .linenup .linenup__product {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #suntory_contents .linenup .linenup__product .product__img img {
    height: 74.8697916667vw;
    width: auto;
  }
}
#suntory_contents .linenup .linenup__product .product__name {
  margin-top: -28px;
  color: var(--l-color-primary);
  font-size: 1.75rem;
  font-weight: var(--l-font-bold);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #suntory_contents .linenup .linenup__product .product__name {
    margin-top: -4.4270833333vw;
    font-size: 4.4270833333vw;
  }
}
#suntory_contents .linenup .linenup__product .c-button {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  #suntory_contents .linenup .linenup__product .c-button {
    margin-top: 4.1666666667vw;
  }
}

/* ========== page style ========== */
#suntory_contents .mv .mv__inner {
  width: 100%;
  background-color: var(--l-color-bg-gray);
}
#suntory_contents .mv .mv__container {
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}
#suntory_contents .mv .mv__container .splide__pagination {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 24px;
  display: flex;
  gap: 16px;
  margin-left: -64px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  #suntory_contents .mv .mv__container .splide__pagination {
    margin-left: 0;
    bottom: 4.1666666667vw;
  }
}
#suntory_contents .mv .mv__container .splide__pagination__page {
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--l-color-primary);
  opacity: 0.3;
  transition: opacity 0.5s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #suntory_contents .mv .mv__container .splide__pagination__page {
    width: 11.4583333333vw;
    height: 1.0416666667vw;
    min-width: 44px;
    min-height: 4px;
  }
}
#suntory_contents .mv .mv__container .splide__pagination__page.is-active {
  opacity: 0.9;
}
#suntory_contents .introduction .introduction__inner {
  max-width: 1024px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 120px;
  padding-bottom: 56px;
}
@media screen and (max-width: 768px) {
  #suntory_contents .introduction .introduction__inner {
    max-width: 100%;
    padding: 14.84375vw 5.2083333333vw 10.4166666667vw;
  }
}
#suntory_contents .introduction .introduction__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #suntory_contents .introduction .introduction__container {
    width: 100%;
  }
}
#suntory_contents .introduction .introduction__text {
  margin-top: 56px;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  #suntory_contents .introduction .introduction__text {
    font-size: 3.90625vw;
  }
}
#suntory_contents .article-list .article-link__block {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#suntory_contents .article-list .article-link__block::after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(to left, var(--l-color-gradient));
}
#suntory_contents .article-list .article-link__bg {
  position: relative;
  width: 100%;
}
#suntory_contents .article-list .article-link__bg::after {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  background-color: #000;
  opacity: 0.3;
  pointer-events: none;
}
#suntory_contents .article-list .article-link__bg .article-link__bg__img {
  min-height: 348px;
  background: linear-gradient(135deg, var(--l-color-gradient));
}
@media screen and (max-width: 768px) {
  #suntory_contents .article-list .article-link__bg .article-link__bg__img {
    min-height: initial;
    aspect-ratio: 384/227;
  }
}
#suntory_contents .article-list .article-link__bg .article-link__bg__img img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}
#suntory_contents .article-list .article-link__text-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  max-width: 1024px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  #suntory_contents .article-list .article-link__text-wrapper {
    align-items: flex-start;
    width: 100%;
    padding-right: 5.2083333333vw;
    padding-left: 5.2083333333vw;
    padding-top: 5.2083333333vw;
    padding-bottom: 4.1666666667vw;
  }
}
#suntory_contents .article-list .article-link__text-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 40px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #suntory_contents .article-list .article-link__text-box {
    height: 100%;
    padding-left: initial;
  }
}
#suntory_contents .article-list .article__person .person__title {
  font-size: 1rem;
  font-weight: var(--l-font-bold);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #suntory_contents .article-list .article__person .person__title {
    font-size: 3.3854166667vw;
  }
}
#suntory_contents .article-list .article__person .person__name {
  margin-top: 8px;
  font-size: 1.75rem;
  font-weight: var(--l-font-bold);
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  #suntory_contents .article-list .article__person .person__name {
    margin-top: 1.5625vw;
    font-size: 5.46875vw;
  }
}
#suntory_contents .article-list .article__title {
  margin-top: 40px;
  font-size: 1.875rem;
  font-weight: var(--l-font-bold);
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #suntory_contents .article-list .article__title {
    margin-top: auto;
    font-size: 5.2083333333vw;
  }
}
#suntory_contents .article-list .c-link__more {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  #suntory_contents .article-list .c-link__more {
    margin-top: 4.1666666667vw;
  }
}
#suntory_contents .article-list .article-link__number {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  #suntory_contents .article-list .article-link__number img {
    height: 10.15625vw;
    width: auto;
  }
}
#suntory_contents .article-list .article-list__item:nth-child(even) .article-link__text-wrapper {
  flex-direction: row-reverse;
}
#suntory_contents .article-list .article-list__item:nth-child(even) .article-link__text-box {
  padding-left: initial;
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  #suntory_contents .article-list .article-list__item:nth-child(even) .article-link__text-box {
    align-items: flex-end;
    padding-right: initial;
    text-align: end;
  }
}
#suntory_contents .article-list .article-list__item:nth-child(even) .article-link__number {
  right: initial;
  left: 0;
}
#suntory_contents .article-list .article-list__item:last-child::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(to left, var(--l-color-gradient));
}
#suntory_contents .article-list .article-list__item.--unreleased .article-link__bg__img {
  min-height: 264px;
}
@media screen and (max-width: 768px) {
  #suntory_contents .article-list .article-list__item.--unreleased .article-link__bg__img {
    min-height: initial;
    aspect-ratio: 384/157;
  }
}
@media (hover: hover) {
  #suntory_contents .article-list .article-link:hover .article-link__bg__img img {
    transform: scale(1.1);
  }
  #suntory_contents .article-list .article-link:hover .c-link__more.--has-underline::after {
    width: 100%;
  }
}