@charset "UTF-8";

.font {
  font-family: "yu-mincho-pr6n", sans-serif; /* 游明朝体 Pr6N */
  font-weight: 400;
  font-family: "cormorant-garamond", serif; /* Cormorant Garamond */
  font-weight: 500;
  font-family: "montserrat", sans-serif; /* montserrat */
  font-weight: 400;
  font-family: "futura-pt", sans-serif; /* Futura */
  font-weight: 500;
  font-family: "fot-tsukumin-pr6n", sans-serif; /* 筑紫明朝 Pr6N */
}
/* --------------------
  Reset
-------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  line-height: 1.7;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
video {
  filter: drop-shadow(0px 0px rgba(0,0,0,0));
  outline: none;
  border: none;
}
/* --------------------
  Variables
-------------------- */
:root {
  --base-width-pc: 1440px;
  --base-width-sp: 375px;
  --main-color: #e95a1a;
}

/* --------------------
  Common
-------------------- */
body {
  margin: 0;
  font-family: 
    "Yu Gothic Pr6N",
    "YuGothic Pr6N",
    "游ゴシック体 Pr6N",
    sans-serif;
  font-weight: 500;
}
body.is-fixed {
  overflow: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.pc_only {
  display: block;
}
.sp_only {
  display: none;
}
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
.p-top {
  overflow: inherit;
}
.p-top * {
  font-family: unset;
}
p {
  margin: revert;
  padding: revert;
}
/* -----------------------------------------------

header

----------------------------------------------- */
.m-hide--sp,
.m-hide--sp {
  position: relative;
  z-index: 2000;
  background: #fff;
}
#suntory_contents {
  overflow: inherit;
  background: none;
}
.t_header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  z-index: 999;
  transition: transform .3s ease, background .3s ease;
}
.t_header.is-fixed {
  transform: translateY(0);
}
.header-inner {
  max-width: 1440px;
  height: 64px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-bar {
  position: absolute;
  inset: 0;
  background: #ea5b1b;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
  z-index: 1;
}
.header-bar .header-inner {
  justify-content: flex-end;
  padding-right: 88px;
}
.header-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.header-nav a {
  font-family: "montserrat", sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.t_header.is-hide-bar .header-bar {
  transform: translateY(-100%);
}
.header-fixed-ui {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.header-fixed-ui .header-inner {
  pointer-events: none;
}
.header-logo,
.hamburger {
  pointer-events: auto;
  position: relative;
  z-index: 5;
}
.header-logo img {
  height: 28px;
}
.hamburger {
  width: 32px;
  height: 24px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}
.hamburger span:nth-child(1) {
  top:0
}
.hamburger span:nth-child(2) {
  top:11px
}
.hamburger span:nth-child(3) {
  bottom:0
}
@media (max-width:768px){
  .header-nav { display: none; }
}
.t_header.is-compact .header-nav {
  opacity: 0;
  pointer-events: none;
}
.t_header.is-compact {
  transition: 0.3s;
}
.lineup-menu {
  position: fixed;
  left: 0;
  width: 100%;
  background: #e1ebf4;
  display: none;
  z-index: 900;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}
.lineup-menu .lineup-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 20px 40px;
}
.lineup-menu .lineup-grid,
.sp-menu .lineup-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}
.lineup-menu .lineup-item,
.sp-menu .lineup-item {
  display: grid;
  grid-template-columns: 49% 49%;
  gap: 2%;
  text-decoration: none;
}
.lineup-menu .lineup-item img,
.sp-menu .lineup-item img {
  width: 100%;
  grid-row-start: 1;
  grid-row-end: 3;
  max-width: 137px;
}
.lineup-menu .lineup-item .sub,
.sp-menu .lineup-item .sub {
  color: #f1946a;
  font-size: 11px;
  font-weight: bold;
}
.lineup-menu .lineup-item .title,
.sp-menu .lineup-item .title {
  grid-column-start: 2;
  font-size: 11px;
  font-weight: bold;
  color: #e84d07;
}
.lineup-menu .lineup-item .btn,
.sp-menu .lineup-item .btn {
  grid-column-start: 1;
  grid-column-end: 3;
  margin-top: 8px;
  padding: 5px;
  display: inline-block;
  font-size: 12px;
  color: #e84d07;
  background: #fff;
  font-weight: bold;
  text-align: center;
}
.sp-menu {
  position: fixed;
  left: 0;
  right: 0;
  width: 60%;
  max-width: 860px;
  margin: auto;
  height: auto;
  background: #e1ebf4;
  display: none;
  z-index: 950;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}
.sp-menu-inner {
  padding: 30px 20px 40px;
  margin: auto;
}
.sp-menu .sp-menu-inner .lineup-grid {
  grid-template-columns: repeat(2,1fr);
  max-width: 622px;
  margin: auto;
}
.sp-menu .lineup-item div.pc_only {
  grid-column-start: 1;
  grid-column-end: 3;
}
.sp-menu .lineup-item div.pc_only .btn {
  display: block;
}
.sp-links {
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 622px;
  align-items: flex-start;
}
.sp-links a {
  font-family: "montserrat", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #ea5b1b;
  position: relative;
  padding-right: 1.6em;
}
.sp-links a::after {
  content: "＞";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width:768px){
  .header {
    z-index: 1001;
  }
  #suntory_contents #topic_path {
    z-index: 1000;
    position: relative;
  }
  .header-nav {
    display: none;
  }
  .lineup-menu {
    display: none !important;
  }
  .sp-menu {
    width: 100%;
    height: 100%;
  }
  .sp-menu .sp-menu-inner .lineup-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .lineup-menu .lineup-item, .sp-menu .lineup-item {
    grid-template-columns: 45% 53%;
  }
  .lineup-menu .lineup-item .sub, .sp-menu .lineup-item .sub {
    font-size: clamp(0.688rem, -0.326rem + 4.33vw, 1.75rem);
  }
  .lineup-menu .lineup-item .title, .sp-menu .lineup-item .title {
    font-size: clamp(0.688rem, -0.326rem + 4.33vw, 1.75rem);
  }
  .sp-links a {
    font-size: clamp(1rem, -0.193rem + 5.09vw, 2.25rem);
  }
}
/* -----------------------------------------------

article

----------------------------------------------- */

/* -----------------------------------------------

footer

----------------------------------------------- */
footer.footer img {
  margin: auto;
  text-align: center;
  width: 100%;
}