/* ==========================================================================
Reset
========================================================================== */
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  vertical-align: baseline;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

html,
body {
  width: 100%;
  height: 100%;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: inherit;
  display: block;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

input,
select,
button,
textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

b,
strong {
  font-weight: bold;
}

/* ==========================================================================
Variables & Mixins
========================================================================== */
.pc {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: block !important;
}
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* ==========================================================================
  Scroll Animation
  ========================================================================== */
.anim {
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
}

.anim-fadeout {
  animation: fadeIn 0.2s 0.2s both ease-out;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: translate(0, 0);
  }
}
.anim-fadein {
  opacity: 0;
}

.anim-fadein.is-show {
  animation: fadeIn 0.3s 0.1s both ease-out;
}

@keyframes fadeIn {
  0% {
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-fadeinUp {
  opacity: 0;
  filter: blur(10px);
}

.anim-fadeinUp.is-show {
  animation: fadeInUp 0.8s 0.3s both ease-out;
}

.anim-fadeinUp.anim-delay2.is-show {
  animation: fadeInUp 0.3s 0.3s both ease-out;
}

.anim-fadeinUp.anim-delay3.is-show {
  animation: fadeInUp 0.3s 0.4s both ease-out;
}

.anim-fadeinUp.anim-delay4.is-show {
  animation: fadeInUp 0.3s 0.5s both ease-out;
}

.anim-fadeinUp.anim-delay5.is-show {
  animation: fadeInUp 0.3s 0.6s both ease-out;
}

.anim-fadeinUp.anim-delay6.is-show {
  animation: fadeInUp 0.3s 0.7s both ease-out;
}

@keyframes fadeInUp {
  0% {
    transform: translate(0, 10px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
    filter: blur(0);
  }
}
.anim-slidein-l {
  opacity: 0;
}

.anim-slidein-l.is-show {
  animation: slideInL 0.8s 0.2s both ease-out;
}

@keyframes slideInL {
  0% {
    transform: translate(-10vw, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-slidein-r {
  opacity: 0;
}

.anim-slidein-r.is-show {
  animation: slideInR 0.8s 0.2s both ease-out;
}

@keyframes slideInR {
  0% {
    transform: translate(10vw, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-slideout-l.is-out {
  animation: slideOutL 1.5s 0.1s both ease-out;
}

@keyframes slideOutL {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(-100vw, 0);
  }
}
.anim-slideout-r.is-out {
  animation: slideOutR 1.5s 0.1s both ease-out;
}

@keyframes slideOutR {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(100vw, 0);
  }
}
/* ==========================================================================
Keyframes
========================================================================== */
@keyframes kvFadeInUp {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
/* ==========================================================================
KV Animation
========================================================================== */
.l-kv .kv-inner h1 {
  opacity: 0;
  animation: kvFadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}
.l-kv .kv-inner h2 {
  opacity: 0;
  animation: kvFadeInUp 0.8s ease forwards;
  animation-delay: 0.5s;
}
.l-kv .kv-inner .logo {
  opacity: 0;
  animation: kvFadeInUp 0.8s ease forwards;
  animation-delay: 0.7s;
}

/* ==========================================================================
Base Styles
========================================================================== */
body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  color: #27251f;
  background-color: #fff;
}

@media screen and (min-width: 769px) {
  .wrapper {
    min-width: 1280px;
    margin: 0 auto;
  }
}

.l-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding: 0 6.25vw;
  }
}

p {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 14px;
    line-height: 1.8;
  }
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: -25%;
  vertical-align: sub;
  line-height: 1;
}

.wrapper {
  overflow: hidden;
}

.inner-ttl {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 55px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .inner-ttl {
    font-size: 45px;
  }
}
.inner-ttl sup {
  font-size: 60%;
  vertical-align: super;
}
@media screen and (max-width: 768px) {
  .inner-ttl sup {
    font-size: 11px;
  }
}
.inner-ttl sub {
  font-size: 50%;
  vertical-align: baseline;
}
@media screen and (max-width: 768px) {
  .inner-ttl sub {
    font-size: 11px;
  }
}

.inner-subttl {
  text-align: center;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .inner-subttl {
    padding-bottom: 25px;
  }
}

.small {
  font-size: 10px;
}
.lineup-box-w {
  overflow: hidden;
  margin: 0 auto;
  transform: scale(1);
  transition: transform 0.6s ease;
}
.lineup-box-w.is-zoomed {
  transform: scale(1.05);
}
.dole-box-w {
  background: #fff;
  border-radius: 0 50px 0 50px;
  overflow: hidden;
  padding: 40px 40px 40px;
  max-width: 650px;
  margin: 0 auto;
  filter: drop-shadow(0px 0px 10px #42424243);
  transform: scale(1);
  transition: transform 0.6s ease;
}
.dole-box-w.is-zoomed {
  transform: scale(1.05);
}
@media screen and (max-width: 768px) {
  .dole-box-w {
    background: #ffffffe3;
    padding: 25px 25px 25px;
    border-radius: 0 30px 0 30px;
  }
}

.product-ttlbig,
.product-icon,
.product-ttl,
.box-ttl-about {
  text-align: center;
  font-weight: bold;
}

.product-ttlbig {
  font-size: 36px;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  .product-ttlbig {
    font-size: 24px;
  }
}

.product-icon {
  font-size: 20px;
  color: #fff;
  background: #000;
  width: fit-content;
  border-radius: 50px;
  margin: 10px auto 0;
  padding: 3px 25px;
}
@media screen and (max-width: 768px) {
  .product-icon {
    padding: 3px 15px;
    font-size: 14px;
    margin: 5px auto 0;
  }
}

.product-ttl {
  font-size: 28px;
  padding: 10px 0 20px;
}
@media screen and (max-width: 768px) {
  .product-ttl {
    font-size: 18px;
    padding: 7px 0 15px;
  }
}

.box-ttl-about {
  font-size: 24px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .box-ttl-about {
    font-size: 18px;
    padding-bottom: 10px;
  }
}

/* ==========================================================================
Header
========================================================================== */
/* ==========================================================================
Footer
========================================================================== */
.dole-footer .dole-footer-inner {
  padding: 15px 2.5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .dole-footer .dole-footer-inner {
    flex-direction: column;
    justify-content: center;
  }
}
.dole-footer .fnav ul {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .dole-footer .fnav ul {
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 30px;
    margin-top: 30px;
  }
}
@media screen and (min-width: 769px) {
  .dole-footer .fnav ul li:not(:last-child) {
    padding-right: 20px;
    border-right: 1px solid #ccc;
  }
}
@media screen and (max-width: 768px) {
  .dole-footer .fnav ul li:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
  }
}
.dole-footer .fnav ul li a {
  font-size: 12px;
  color: #0062b6;
}
.dole-footer .fnav ul li a.link-blank::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 8px;
  background: url(../img/icon_blank.gif) no-repeat center center;
  margin-right: 6px;
}
@media screen and (min-width: 769px) {
  .dole-footer .fnav ul li a:hover {
    opacity: 0.75;
  }
}
.dole-footer .copyright {
  font-size: 12px;
  color: #666;
}
@media screen and (min-width: 769px) {
  .dole-footer .copyright {
    font-size: 10px;
  }
}

/* ==========================================================================
kv
========================================================================== */
.l-kv .kv-inner {
  position: relative;
  width: 100%;
  z-index: 1000;
}
.l-kv .kv-inner .kv-img {
  width: 100%;
}
.l-kv .kv-inner .kv-img img {
  width: 100%;
  height: auto;
  display: block;
}
.l-kv .kv-inner h1,
.l-kv .kv-inner h2,
.l-kv .kv-inner .logo,
.l-kv .kv-inner .megsnow-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  filter: drop-shadow(2px 2px 3px #1b2f6ccf);
}
.l-kv .kv-inner h1 img,
.l-kv .kv-inner h2 img,
.l-kv .kv-inner .logo img,
.l-kv .kv-inner .megsnow-logo img {
  width: 100%;
  height: auto;
}
.l-kv .kv-inner h1 {
  top: 15%;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .l-kv .kv-inner h1 {
    top: 15%;
    width: 80%;
  }
}
.l-kv .kv-inner h2 {
  top: 26%;
  width: 43%;
}
@media screen and (max-width: 768px) {
  .l-kv .kv-inner h2 {
    top: 24%;
    width: 85%;
  }
}
.l-kv .kv-inner .logo {
  top: 35%;
  width: 43%;
}
@media screen and (max-width: 768px) {
  .l-kv .kv-inner .logo {
    top: 43%;
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .l-kv .kv-inner .megsnow-logo {
    left: 84%;
    top: 12px;
    width: 25%;
    filter: none;
  }
}
@media screen and (min-width: 769px) {
  .l-kv .kv-inner .megsnow-logo {
    top: 20px;
    right: -3%;
    left: auto;
    width: 220px;
    filter: none;
  }
}

/* ==========================================================================
CONTENTS
========================================================================== */
.l-contents {
  position: relative;
}
.l-contents.is-sticky .side-logo,
.l-contents.is-sticky .side-nav {
  position: fixed;
  top: 2.5%;
}
.l-contents.is-sticky .side-nav {
  top: 2.5%;
  left: auto;
  right: 0;
}

.side-logo {
  position: absolute;
  top: 4%;
  left: 0;
  width: 320px;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .side-logo {
    display: none;
  }
}
.side-logo .side-catch {
  margin-bottom: 15px;
}
.side-logo .side-catch img {
  width: 100%;
  height: auto;
}

.side-nav {
  position: absolute;
  top: 4%;
  left: auto;
  right: 0;
  width: 300px;
  background: rgba(255, 0, 0, 0.88);
  padding: 20px 30px 20px 30px;
  border-radius: 20px 0 0 20px;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .side-nav {
    display: none;
  }
}
.side-nav .side-nav-ttl {
  padding-bottom: 20px;
  text-align: center;
}
.side-nav .side-nav-ttl .nav-ttl-en {
  display: block;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.8em;
  color: #fff;
  line-height: 1.2;
}
.side-nav .side-nav-ttl .nav-ttl-ja {
  display: block;
  font-size: 0.8em;
  color: #fff;
  letter-spacing: 0.15em;
}
.side-nav .side-nav-list li {
  position: relative;
}
.side-nav .side-nav-list li:first-child {
  border-top: none;
}
.side-nav .side-nav-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
}
.side-nav .side-nav-list li a::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  position: relative;
}
.side-nav .side-nav-list li a::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #e63312;
  border-right: 2px solid #e63312;
  transform: rotate(45deg);
  position: absolute;
  left: 7px;
  top: 50%;
  margin-top: -4px;
}
.side-nav .side-banner {
  border: 1px solid #fff;
  margin-top: 30px;
}

.sp-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  padding: 10px;
  background: rgba(255, 0, 0, 0.88);
  z-index: 999;
}
@media screen and (max-width: 479px) {
  .sp-nav {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.45) transparent;
  }
}
@media screen and (max-width: 479px) {
  .sp-nav::-webkit-scrollbar {
    height: 4px;
  }
  .sp-nav::-webkit-scrollbar-track {
    background: transparent;
  }
  .sp-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.45);
    border-radius: 999px;
  }
}
.sp-nav ul {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 479px) {
  .sp-nav ul {
    justify-content: flex-start;
    width: max-content;
    min-width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .sp-nav ul li {
    flex-shrink: 0;
  }
}
.sp-nav ul li a {
  display: block;
  padding: 8px 20px;
  background: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: bold;
  color: #e30012;
  white-space: nowrap;
}

/* ==========================================================================
about
========================================================================== */
.l-about {
  background: url(../img/bg_about_pc.jpg) no-repeat;
  background-size: cover;
  position: relative;
  background-position: bottom;
  z-index: 80;
  margin: -10% 0 0;
  padding: 10% 0 5%;
  position: relative;
}
.l-about .about-deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .l-about .about-deco {
    display: none;
  }
}
.l-about .about-deco::before {
  content: "";
  position: absolute;
  top: 34%;
  left: 2%;
  width: 50%;
  height: 60%;
  background: url(../img/bg_deco_left.svg) no-repeat;
  background-size: contain;
  background-position: left top;
}
.l-about .about-deco::after {
  content: "";
  position: absolute;
  top: 13%;
  right: 6%;
  width: 50%;
  height: 55%;
  background: url(../img/bg_deco_right.svg) no-repeat;
  background-size: contain;
  background-position: right top;
}
.l-about .l-about-inner {
  padding: 60px 20px 80px;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-about .l-about-inner {
    padding: 40px 6.25vw 60px;
  }
}
.l-about .l-about-inner .inner-ttl,
.l-about .l-about-inner .inner-subttl {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .l-about .l-about-inner .box-inner .about-history .about-txt {
    width: 100%;
  }
}
.l-about .l-about-inner .box-inner .about-history .about-flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l-about .l-about-inner .box-inner .about-history .about-flex {
    padding-top: 20px;
  }
}
.l-about .l-about-inner .box-inner .about-history .about-flex .about-txt {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .l-about .l-about-inner .box-inner .about-history .about-flex .about-txt {
    width: 70%;
  }
}
.l-about .l-about-inner .box-inner .about-history .about-flex .about-img {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .l-about .l-about-inner .box-inner .about-history .about-flex .about-img {
    width: 27%;
  }
}
.l-about .l-about-inner .box-inner .about-history .about-flex .about-img img {
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-about .l-about-inner .box-inner .about-history .about-flex .about-img img {
    border-radius: 10px;
  }
}
.l-about .l-about-inner .box-inner:last-child {
  padding-top: 30px;
  margin-top: 40px;
  border-top: 2px solid #27251f;
}
@media screen and (max-width: 768px) {
  .l-about .l-about-inner .box-inner:last-child {
    padding-top: 15px;
    margin-top: 20px;
    border-top: 1px solid #27251f;
  }
}

.timeline-box {
  position: relative;
  width: 100%;
  padding: 0px 0 200px;
  overflow: hidden;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .timeline-box {
    padding: 0px 0 120px;
  }
}

.timeline-viewport {
  overflow: hidden;
  width: 100%;
}

.timeline-track {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding: 0 60px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.timeline-item {
  flex: 0 0 350px;
  text-align: center;
  position: relative;
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .timeline-item {
    flex: 0 0 200px;
  }
}
.timeline-item::before {
  content: "";
  position: absolute;
  top: 108px;
  left: 0;
  right: 0;
  height: 3px;
  background: #fff;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .timeline-item::before {
    top: 90px;
  }
}
.timeline-item .timeline-dot {
  display: flex;
}
.timeline-item .timeline-leaf {
  display: none;
}
.timeline-item.active .timeline-dot {
  display: none;
}
.timeline-item.active .timeline-leaf {
  display: flex;
}
.timeline-item.active .timeline-year {
  font-size: 60px;
}
@media screen and (max-width: 768px) {
  .timeline-item.active .timeline-year {
    font-size: 40px;
  }
}

.timeline-year {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 2.5em;
  color: #fff;
  line-height: 1;
  height: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 10px;
  transition: font-size 0.4s ease;
}
@media screen and (max-width: 768px) {
  .timeline-year {
    font-size: 22px;
    height: 45px;
  }
}

.timeline-leaf,
.timeline-dot {
  height: 80px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  position: relative;
  z-index: 2;
}

.timeline-leaf {
  width: 90px;
  height: 80px;
}
.timeline-leaf img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.timeline-dot::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
}

.timeline-text {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
  color: #fff;
  padding: 0 8px;
  min-height: 110px;
}
@media screen and (max-width: 768px) {
  .timeline-text {
    font-size: 12px;
    min-height: 90px;
    padding: 0 5px;
  }
}

.timeline-item-first::before {
  width: 50%;
  right: 0;
  left: auto;
}

.timeline-item-last {
  padding-top: 75px;
}
.timeline-item-last::before {
  content: none;
}
.timeline-item-last .timeline-continued {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.6em;
  color: #fff;
  line-height: 1;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: font-size 0.4s ease;
  margin-left: 15px;
}

.timeline-scroll-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-top: 40px;
}
.timeline-scroll-btn button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #fff;
  font-size: 2em;
  font-weight: bold;
  transition: opacity 0.3s;
  background: none;
  border: none;
  cursor: pointer;
}
.timeline-scroll-btn button:hover {
  opacity: 0.7;
}
.timeline-scroll-btn .scroll-label {
  display: inline-block;
  padding: 0px 19px;
  border: 2px solid #fff;
  border-radius: 20px;
  color: #f15a24;
  background: #fff;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6;
  cursor: pointer;
}

/* ==========================================================================
line up
========================================================================== */
.l-lineup .product,
.l-lineup .swiper-slide {
  transition: transform 0.3s ease;
}
.l-lineup .product:hover,
.l-lineup .swiper-slide:hover {
  transform: translateY(-5px);
}
.l-lineup .l-inner {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .l-lineup .l-inner {
    padding: 40px 6.25vw;
  }
}
.l-lineup ruby rt {
  font-size: 40%;
  font-weight: bold;
}
.l-lineup ul.attention {
  margin-top: 1em;
}
.l-lineup ul.attention li {
  position: relative;
  padding-left: 1.5em;
}
.l-lineup ul.attention li i {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .l-lineup ul.attention li i {
    font-size: 12px;
  }
}
.l-lineup .l-juice {
  background: url(../img/bg_juice.svg) no-repeat;
  background-size: cover;
  background-position: bottom;
  z-index: 80;
  margin: -10% 0 0;
  padding: 10% 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-lineup .l-juice {
    margin: -30% 0 0;
    padding: 20% 0 0;
    overflow: hidden;
  }
}
.l-lineup .l-juicyplus {
  position: relative;
  overflow: hidden;
}
.l-lineup .l-juicyplus::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/bg_juicyplus.png) no-repeat center;
  background-size: cover;
  z-index: 0;
  filter: grayscale(100%);
  transition: filter 1.5s ease;
}
.l-lineup .l-juicyplus.is-colored::after {
  filter: grayscale(0%);
}
.l-lineup .l-juicyplus .l-inner {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .l-lineup .l-juicyplus .l-inner {
    padding: 80px 6.25vw;
  }
}
.l-lineup .l-tropicaltea {
  background: linear-gradient(to bottom, #00b2c6, #a2dfdf);
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-lineup .l-tropicaltea .l-inner {
    padding: 80px 6.25vw;
  }
}
.l-lineup .l-nucy {
  position: relative;
  overflow: hidden;
}
.l-lineup .l-nucy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/bg_+nucy.jpg) no-repeat center;
  background-size: cover;
  z-index: 0;
  filter: grayscale(100%);
  transition: filter 1.5s ease;
}
.l-lineup .l-nucy.is-colored::after {
  filter: grayscale(0%);
}
.l-lineup .l-nucy .l-inner {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .l-lineup .l-nucy .l-inner {
    padding: 80px 6.25vw;
  }
}
.l-lineup .l-juice::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0;
  width: 40%;
  height: 50%;
  background: url(../img/fruits_01.webp) no-repeat;
  background-size: contain;
  background-position: left top;
  opacity: 0;
  transform: translateX(-60px) translateY(var(--parallax-y, 0));
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .l-lineup .l-juice::before {
    top: 10%;
    left: -20%;
    width: 50%;
    height: 40%;
  }
}
.l-lineup .l-juice::after {
  content: "";
  position: absolute;
  top: -7%;
  right: 0;
  width: 40%;
  height: 55%;
  background: url(../img/fruits_02.webp) no-repeat;
  background-size: contain;
  background-position: right top;
  opacity: 0;
  transform: translateX(60px) translateY(var(--parallax-y, 0));
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .l-lineup .l-juice::after {
    top: 4%;
    right: -19%;
    width: 50%;
    height: 40%;
  }
}
.l-lineup .l-juice.is-slidein::before {
  opacity: 1;
  animation: juiceFruitSlideInLeft 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.l-lineup .l-juice.is-slidein::after {
  opacity: 1;
  animation: juiceFruitSlideInRight 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.l-lineup .l-juice .inner-ttl,
.l-lineup .l-juice .inner-subttl {
  color: #001488;
}
.l-lineup .l-juice .content-box p {
  text-align: center;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .l-lineup .l-juice .content-box p {
    padding: 10px 0 0;
  }
}
.l-lineup .l-juice .juice-slider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  padding-bottom: 50px;
  overflow: hidden;
}
.l-lineup .l-juice .juice-swiper {
  overflow: visible;
}
.l-lineup .l-juice .juice-swiper .swiper-wrapper {
  align-items: flex-end;
}
.l-lineup .l-juice .juice-swiper .swiper-slide {
  width: auto;
  flex-shrink: 0;
  text-align: center;
  transition: transform 0.3s ease;
}
.l-lineup .l-juice .juice-swiper .swiper-slide a {
  display: block;
}
.l-lineup .l-juice .juice-swiper .swiper-slide img {
  height: 220px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-lineup .l-juice .juice-swiper .swiper-slide img {
    height: 200px;
  }
}
.l-lineup .l-juice .juice-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .l-lineup .l-juice .juice-pagination {
    gap: 5px;
    margin-top: 0px;
  }
}
.l-lineup .l-juice .juice-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #e5e5e5;
  border-radius: 50%;
  opacity: 1;
  transition: background 0.3s;
}
@media screen and (max-width: 768px) {
  .l-lineup .l-juice .juice-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
.l-lineup .l-juice .juice-pagination .swiper-pagination-bullet-active {
  width: 15px;
  height: 15px;
  background: #c7102e;
}
@media screen and (max-width: 768px) {
  .l-lineup .l-juice .juice-pagination .swiper-pagination-bullet-active {
    width: 15px;
    height: 15px;
  }
}
.l-lineup .l-juicyplus .content-box {
  position: relative;
}
.l-lineup .l-juicyplus .content-box::before {
  content: "";
  position: absolute;
  left: -2%;
  width: 22%;
  height: 17%;
  bottom: 20%;
  background: url(../img/deco_bg_juicyplus.svg) no-repeat;
  background-size: contain;
  background-position: left top;
}
@media screen and (max-width: 768px) {
  .l-lineup .l-juicyplus .content-box::before {
    background: url(../img/deco_bg_juicyplus_sp.png) no-repeat;
    background-size: contain;
    z-index: 2;
    left: -4%;
    width: 60%;
    height: 40%;
    bottom: 0%;
    pointer-events: none;
  }
}
.l-lineup .l-juicyplus .content-box p sup {
  font-size: 12px;
  vertical-align: super;
}
@media screen and (max-width: 768px) {
  .l-lineup .l-juicyplus .content-box p sup {
    font-size: 10px;
  }
}
.l-lineup .l-juicyplus .content-box p sub {
  font-size: 12px;
  vertical-align: sub;
}
@media screen and (max-width: 768px) {
  .l-lineup .l-juicyplus .content-box p sub {
    font-size: 10px;
  }
}
.l-lineup .l-juicyplus .content-box .caution {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .l-lineup .l-juicyplus .content-box .caution {
    font-size: 12px;
  }
}
.l-lineup .l-juicyplus .content-box .juice-pack-box {
  display: flex;
  justify-content: space-between;
  width: 50%;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  .l-lineup .l-juicyplus .content-box .juice-pack-box {
    margin: 60px auto 0;
    width: 57%;
    position: relative;
    z-index: 3;
  }
}
.l-lineup .l-juicyplus .content-box .juice-pack-box .juice-pack {
  width: 110px;
}
@media screen and (max-width: 768px) {
  .l-lineup .l-juicyplus .content-box .juice-pack-box .juice-pack {
    width: 70px;
  }
}
.l-lineup .l-tropicaltea {
  overflow: hidden;
  position: relative;
}
.l-lineup .l-tropicaltea::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../img/deco_tropical_fruit.webp), linear-gradient(to bottom, #00b2c6, #a2dfdf);
  background-repeat: no-repeat, no-repeat;
  background-size: 30%, cover;
  background-position: right -4% top 0, center;
  z-index: 0;
  filter: grayscale(100%);
  transition: filter 1.5s ease;
}
@media screen and (max-width: 768px) {
  .l-lineup .l-tropicaltea::after {
    background-size: 90%, cover;
    background-position: right -59% top 0, center;
  }
}
.l-lineup .l-tropicaltea.is-colored::after {
  filter: grayscale(0%);
}
.l-lineup .l-tropicaltea::before {
  content: "";
  position: absolute;
  left: -3%;
  width: 40%;
  height: 50%;
  bottom: -12%;
  background: url(../img/deco_tropical_tea.webp) no-repeat;
  background-size: contain;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .l-lineup .l-tropicaltea::before {
    left: -13%;
    width: 50%;
    height: 36%;
    bottom: 0;
  }
}
.l-lineup .l-tropicaltea .content-box {
  position: relative;
  z-index: 10;
}
.l-lineup .l-tropicaltea .content-box::before {
  content: "";
  position: absolute;
  left: 0%;
  width: 30%;
  height: 25%;
  bottom: 35%;
  background: url(../img/deco_bg_tropical.svg) no-repeat;
  background-size: contain;
}
.l-lineup .l-tropicaltea .content-box .juice-pack-box {
  margin: 30px auto 0;
}
.l-lineup .l-tropicaltea .content-box .juice-pack-box .juice-pack {
  width: 110px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-lineup .l-tropicaltea .content-box .juice-pack-box .juice-pack {
    width: 70px;
  }
}
@media screen and (max-width: 768px) {
  .l-lineup .l-tropicaltea .content-box .juice-pack-box-sp .juice-pack-box {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 20px 0 0 auto;
  }
}
.l-lineup .l-tropicaltea .content-box .juice-pack-box-sp .juice-pack-box .juice-pack-txt {
  width: 48%;
  margin: auto 0;
}
.l-lineup .l-tropicaltea .content-box .juice-pack-box-sp .juice-pack-box .juice-pack {
  width: 70px;
}
.l-lineup .l-nucy .content-box .juice-pack-box {
  display: flex;
  justify-content: space-between;
  width: 50%;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  .l-lineup .l-nucy .content-box .juice-pack-box {
    width: 57%;
    margin: 20px auto 0;
  }
}
.l-lineup .l-nucy .content-box .juice-pack-box .juice-pack {
  width: 110px;
}
@media screen and (max-width: 768px) {
  .l-lineup .l-nucy .content-box .juice-pack-box .juice-pack {
    width: 70px;
  }
}

@keyframes juiceFruitSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px) translateY(var(--parallax-y, 0));
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(var(--parallax-y, 0));
  }
}
@keyframes juiceFruitSlideInRight {
  from {
    opacity: 0;
    transform: translateX(60px) translateY(var(--parallax-y, 0));
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(var(--parallax-y, 0));
  }
}
/* ==========================================================================
Shopping
========================================================================== */
.l-shopping {
  background: url(../img/bg_amazon.jpg) repeat-y;
  background-size: cover;
  position: relative;
  padding: 40px 0 60px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-shopping {
    padding: 20px 0 60px;
  }
}
.l-shopping .inner-ttl,
.l-shopping .inner-subttl {
  color: #fff;
}
.l-shopping .inner-subttl {
  padding-bottom: 20px;
}
.l-shopping .shopping-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .l-shopping .shopping-content {
    padding: 0 6.25vw;
  }
}
.l-shopping .shopping-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .l-shopping .shopping-flex {
    flex-direction: column;
    gap: 20px;
  }
}
.l-shopping .shopping-products-sp .shopping-products-flex {
  display: flex;
  justify-content: space-evenly;
  width: 80%;
  margin: 0 auto;
}
.l-shopping .shopping-products-sp .shopping-products-flex img {
  width: 50%;
  height: auto;
  object-fit: contain;
}
.l-shopping .shopping-products-sp .shopping-txt {
  font-size: 10px;
}
.l-shopping .shopping-products-left,
.l-shopping .shopping-products-right {
  flex-shrink: 0;
}
.l-shopping .shopping-products-left img,
.l-shopping .shopping-products-right img {
  display: block;
  height: auto;
}
.l-shopping .shopping-products-left {
  width: 260px;
}
@media screen and (max-width: 768px) {
  .l-shopping .shopping-products-left {
    width: 70%;
    order: 2;
  }
}
.l-shopping .shopping-products-left img {
  width: 100%;
}
.l-shopping .shopping-products-right {
  width: 220px;
}
@media screen and (max-width: 768px) {
  .l-shopping .shopping-products-right {
    width: 60%;
    order: 3;
  }
}
.l-shopping .shopping-products-right img {
  width: 100%;
}
.l-shopping .shopping-center {
  text-align: center;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .l-shopping .shopping-center {
    order: 1;
  }
}
.l-shopping .shopping-amazon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: #fff;
  border-radius: 50px;
  padding: 20px 40px 10px;
  text-decoration: none;
  width: fit-content;
  transition: transform 0.3s ease-out;
  margin: 0 auto;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 768px) {
  .l-shopping .shopping-amazon-btn {
    padding: 12px 30px 7px;
    gap: 10px;
    margin: 10px auto 30px;
  }
}
.l-shopping .shopping-amazon-btn:hover {
  transform: scale(1.2);
}
.l-shopping .shopping-amazon-btn .amazon-prefix {
  font-size: 18px;
  font-weight: 700;
  color: #27251f;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .l-shopping .shopping-amazon-btn .amazon-prefix {
    font-size: 14px;
  }
}
.l-shopping .shopping-amazon-btn img {
  height: 35px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .l-shopping .shopping-amazon-btn img {
    height: 28px;
  }
}
.l-shopping .shopping-txt {
  color: #fff;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .l-shopping .shopping-txt {
    font-size: 14px;
    margin-top: 15px;
  }
}

/* ==========================================================================
PAGE TOP
========================================================================== */
.pagetop-btn {
  position: fixed;
  right: 20px;
  bottom: 0;
  z-index: 9999;
  padding: 10px 25px;
  background: #fff;
  color: #c7102e;
  border-radius: 8px 8px 0 0;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
@media screen and (max-width: 768px) {
  .pagetop-btn {
    right: 10px;
    left: auto;
    transform: none;
    padding: 8px 18px;
    font-size: 12px;
  }
}
.pagetop-btn.is-show {
  opacity: 1;
  visibility: visible;
}
.pagetop-btn:hover {
  opacity: 0.7;
}

/* ==========================================================================
CAUTION
========================================================================== */
.notes {
  position: fixed;
  text-align: left;
  left: 12px;
  bottom: 10px;
  width: auto;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 600;
  color: white;
  z-index: 9998;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.8));
}
@media screen and (max-width: 768px) {
  .notes {
    font-size: 8px;
    left: 8px;
    bottom: 8px;
  }
}

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