/* ========== 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 .log-of-laphroaig_contents .mv_inner .mv_container {
  position: relative;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}
#suntory_contents .log-of-laphroaig_contents .mv_inner .mv_container .mv_text_box {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents .mv_inner .mv_container .mv_text_box {
    bottom: 5.2083333333vw;
  }
}
#suntory_contents .log-of-laphroaig_contents .mv_inner .mv_container .mv_text_box .svg {
  margin: 0 auto;
}
#suntory_contents .log-of-laphroaig_contents .mv_inner .mv_container .mv_text_box .svg.sub {
  width: 423px;
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents .mv_inner .mv_container .mv_text_box .svg.sub {
    width: 55.078125vw;
  }
}
#suntory_contents .log-of-laphroaig_contents .mv_inner .mv_container .mv_text_box .svg.title {
  width: 847px;
  padding: 32px 0;
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents .mv_inner .mv_container .mv_text_box .svg.title {
    width: 67.0572916667vw;
    padding: 5.2083333333vw 0;
  }
}
#suntory_contents .log-of-laphroaig_contents .mv_inner .mv_container .mv_text_box .svg.person_name {
  width: 268px;
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents .mv_inner .mv_container .mv_text_box .svg.person_name {
    width: 34.8958333333vw;
  }
}
#suntory_contents .log-of-laphroaig_contents .lead_inner .lead_container {
  max-width: 1024px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents .lead_inner .lead_container {
    width: 100%;
    padding-right: 5.2083333333vw;
    padding-left: 5.2083333333vw;
    padding-top: 10.4166666667vw;
    padding-bottom: 15.625vw;
  }
}
#suntory_contents .log-of-laphroaig_contents .lead_inner .lead_container .text {
  font-size: 1.125rem;
  padding: 48px;
  border-top: 1px solid var(--l-color-text);
  border-bottom: 1px solid var(--l-color-text);
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents .lead_inner .lead_container .text {
    font-size: 4.1666666667vw;
    padding: 4.5572916667vw;
  }
}
#suntory_contents .log-of-laphroaig_contents article .container_inner {
  max-width: 1024px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents article .container_inner {
    width: 100%;
    padding-right: 5.2083333333vw;
    padding-left: 5.2083333333vw;
  }
}
#suntory_contents .log-of-laphroaig_contents article .container_inner .container {
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents article .container_inner .container {
    padding-bottom: 15.625vw;
  }
}
#suntory_contents .log-of-laphroaig_contents article .container_inner .container:last-of-type {
  padding-bottom: 64px;
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents article .container_inner .container:last-of-type {
    padding-bottom: 8.3333333333vw;
  }
}
#suntory_contents .log-of-laphroaig_contents article .container_inner .container .head {
  font-size: 2rem;
  font-weight: bold;
  font-family: var(--l-font-family);
  color: var(--l-color-primary);
  padding-bottom: 56px;
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents article .container_inner .container .head {
    font-size: 6.25vw;
    padding-bottom: 10.4166666667vw;
  }
}
#suntory_contents .log-of-laphroaig_contents article .container_inner .container .text {
  font-size: 1.125rem;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents article .container_inner .container .text {
    font-size: 4.1666666667vw;
    padding-bottom: 6.25vw;
  }
}
#suntory_contents .log-of-laphroaig_contents article .container_inner .container .text.pb_0 {
  padding-bottom: 0;
}
#suntory_contents .log-of-laphroaig_contents article .container_inner .container .text.text--em {
  font-weight: var(--l-font-bold);
}
#suntory_contents .log-of-laphroaig_contents article .container_inner .container .text.text--note {
  font-size: 0.8em;
}
#suntory_contents .log-of-laphroaig_contents article .container_inner .container .image_block {
  padding: 24px 0 64px;
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents article .container_inner .container .image_block {
    padding: 2.0833333333vw 0 8.3333333333vw;
  }
}
#suntory_contents .log-of-laphroaig_contents article .container_inner .container .image_block.flex_block {
  display: flex;
  gap: 16px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents article .container_inner .container .image_block.flex_block {
    gap: 2.0833333333vw;
  }
}
#suntory_contents .log-of-laphroaig_contents article .container_inner .container .image_block.pb_0 {
  padding-bottom: 0;
}
#suntory_contents .log-of-laphroaig_contents article .note {
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents article .note {
    font-size: 3.125vw;
  }
}
#suntory_contents .log-of-laphroaig_contents article .profile_inner .profile_container {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents article .profile_inner .profile_container {
    padding: 15.625vw 0 13.0208333333vw;
  }
}
#suntory_contents .log-of-laphroaig_contents article .profile_inner .profile_container .person_name {
  font-size: 1.5rem;
  font-weight: bold;
  padding-bottom: 32px;
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents article .profile_inner .profile_container .person_name {
    font-size: 5.2083333333vw;
    padding-bottom: 7.2916666667vw;
  }
}
#suntory_contents .log-of-laphroaig_contents article .profile_inner .profile_container .person_name span {
  display: inline-block;
  padding-left: 10px;
  font-size: 0.8em;
}
@media screen and (min-width: 769px) {
  #suntory_contents .log-of-laphroaig_contents article .profile_inner .profile_container .flex_box {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) {
  #suntory_contents .log-of-laphroaig_contents article .profile_inner .profile_container .flex_box .text {
    width: 64.024390243%;
  }
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents article .profile_inner .profile_container .flex_box .text {
    font-size: 3.3854166667vw;
    padding-bottom: 4.1666666667vw;
  }
}
@media screen and (min-width: 769px) {
  #suntory_contents .log-of-laphroaig_contents article .profile_inner .profile_container .flex_box .image_block {
    width: 30.487804878%;
  }
}
#suntory_contents .log-of-laphroaig_contents .next_article .next_article_inner {
  max-width: 1024px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents .next_article .next_article_inner {
    width: 100%;
    padding-right: 5.2083333333vw;
    padding-left: 5.2083333333vw;
    padding-bottom: 13.0208333333vw;
  }
}
#suntory_contents .log-of-laphroaig_contents .next_article .next_article_inner .next_article_container {
  position: relative;
  display: block;
  border-top: 1px solid var(--l-color-text);
  border-bottom: 1px solid var(--l-color-text);
  position: relative;
  transition: 0.2s;
}
#suntory_contents .log-of-laphroaig_contents .next_article .next_article_inner .next_article_container::after {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  background-color: var(--l-color-primary);
  opacity: 0;
  transition: opacity 0.2s;
}
@media (hover: hover) {
  #suntory_contents .log-of-laphroaig_contents .next_article .next_article_inner .next_article_container:hover::after {
    opacity: 0.15;
  }
}
#suntory_contents .log-of-laphroaig_contents .next_article .next_article_inner .next_article_container .btn_box {
  width: -moz-fit-content;
  width: fit-content;
  margin: 32px auto;
  color: var(--l-color-text);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents .next_article .next_article_inner .next_article_container .btn_box {
    margin: 5.2083333333vw auto 5.2083333333vw 4.5572916667vw;
  }
}
#suntory_contents .log-of-laphroaig_contents .next_article .next_article_inner .next_article_container .btn_box .sub {
  font-size: 1.125rem;
  color: var(--l-color-primary);
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents .next_article .next_article_inner .next_article_container .btn_box .sub {
    font-size: 2.8645833333vw;
  }
}
#suntory_contents .log-of-laphroaig_contents .next_article .next_article_inner .next_article_container .btn_box .title {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents .next_article .next_article_inner .next_article_container .btn_box .title {
    font-size: 4.4270833333vw;
  }
}
#suntory_contents .log-of-laphroaig_contents .next_article .next_article_inner .next_article_container .btn_box .person_name {
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents .next_article .next_article_inner .next_article_container .btn_box .person_name {
    font-size: 3.3854166667vw;
  }
}
#suntory_contents .log-of-laphroaig_contents .next_article .next_article_inner .next_article_container .btn_box .scheduled {
  font-size: 1.25rem;
  margin-top: 48px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents .next_article .next_article_inner .next_article_container .btn_box .scheduled {
    font-size: 4.1666666667vw;
    margin-top: 6.25vw;
  }
}
#suntory_contents .log-of-laphroaig_contents .next_article .next_article_inner .next_article_container .btn_box .scheduled:before, #suntory_contents .log-of-laphroaig_contents .next_article .next_article_inner .next_article_container .btn_box .scheduled:after {
  border-top: 1px solid var(--l-color-text);
  content: "";
  width: 40px;
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents .next_article .next_article_inner .next_article_container .btn_box .scheduled:before, #suntory_contents .log-of-laphroaig_contents .next_article .next_article_inner .next_article_container .btn_box .scheduled:after {
    width: 5.2083333333vw;
  }
}
#suntory_contents .log-of-laphroaig_contents .next_article .next_article_inner .next_article_container .btn_box .scheduled:before {
  margin-right: 8px;
}
#suntory_contents .log-of-laphroaig_contents .next_article .next_article_inner .next_article_container .btn_box .scheduled:after {
  margin-left: 8px;
}
#suntory_contents .log-of-laphroaig_contents .next_article .next_article_inner .next_article_container .arrow {
  position: absolute;
  top: 50%;
  right: 80px;
  display: inline-block;
  vertical-align: middle;
  width: 2.8125rem;
  height: 2.8125rem;
  border: 1px solid var(--l-color-text);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg) translateY(-50%);
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents .next_article .next_article_inner .next_article_container .arrow {
    width: 5.859375vw;
    height: 5.859375vw;
    right: 1.8229166667vw;
  }
}
#suntory_contents .experience .experience__inner {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  #suntory_contents .experience .experience__inner {
    padding-top: 13.0208333333vw;
  }
}

#suntory_contents .log-of-laphroaig_contents .mv_inner .mv_container .mv_text_box .svg.title {
  width: 684px;
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents .mv_inner .mv_container .mv_text_box .svg.title {
    width: 49.8697916667vw;
  }
}
#suntory_contents .log-of-laphroaig_contents .mv_inner .mv_container .mv_text_box .svg.person_name {
  width: 428px;
}
@media screen and (max-width: 768px) {
  #suntory_contents .log-of-laphroaig_contents .mv_inner .mv_container .mv_text_box .svg.person_name {
    width: 55.7291666667vw;
  }
}