@charset "UTF-8";
@keyframes is-open-pc {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    transform: translateY(7px);
  }
  100% {
    opacity: 1;
  }
}
/* Base Style
===============================*/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1535px) {
  html {
    font-size: 50%;
  }
}
@media screen and (max-width: 1326px) {
  html {
    font-size: 44%;
  }
}
@media screen and (max-width: 800px) {
  html {
    font-size: 62.5%;
  }
}

body {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img {
  height: auto;
}

a:hover {
  cursor: pointer;
}

/* Visible Style
===============================*/
@media screen and (max-width: 800px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 1110px) {
  .tb {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 800px) {
  .sp {
    display: block;
  }
}

.sp-600 {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp-600 {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .pc-600 {
    display: none;
  }
}

.sp-360 {
  display: none;
}
@media screen and (max-width: 365px) {
  .sp-360 {
    display: block;
  }
}

#footer-link-sp {
  display: none;
}
@media screen and (max-width: 600px) {
  #footer-link-sp {
    display: flex;
  }
}

@media screen and (max-width: 600px) {
  #footer-link-pc {
    display: none;
  }
}

.nav-sp {
  display: none;
}
@media screen and (max-width: 1110px) {
  .nav-sp {
    display: block;
  }
}

@media screen and (max-width: 1110px) {
  .nav-pc {
    display: none;
  }
}

/* Header Section 
===============================*/
.header-body {
  position: fixed;
  width: 100%;
  border-radius: 0 0 100px 100px;
  background-color: #ffffff;
  box-shadow: 0px 2px 1px rgba(96, 53, 44, 0.05);
  z-index: 1000;
  transition: 0.15s;
}
@media screen and (max-width: 800px) {
  .header-body {
    border-radius: 0 0 40px 40px;
  }
}
.header-body div.header-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 66%;
  margin: 0 auto;
  padding-top: 22px;
  padding-bottom: 22px;
  z-index: 2000;
}
@media screen and (max-width: 1535px) {
  .header-body div.header-wide {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .header-body div.header-wide {
    padding-top: 16px;
    padding-bottom: 16px;
    width: 82%;
  }
}
@media screen and (max-width: 1535px) {
  .header-body div.header-wide .header-logo {
    width: 134px;
  }
  .header-body div.header-wide .header-logo img {
    width: 100%;
  }
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .header-logo {
    width: 114px;
  }
}
@media screen and (max-width: 600px) {
  .header-body div.header-wide .header-logo {
    width: 90px;
  }
}
.header-body div.header-wide .nav-list-main {
  display: flex;
  justify-content: space-between;
  width: 62%;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-list-main {
    width: 49%;
  }
}
.header-body div.header-wide .nav-list-main li {
  font-size: 1.7rem;
  font-weight: 900;
  color: #3b201b;
}
@media screen and (max-width: 800px) {
  .header-body div.header-wide .nav-list-main li {
    font-size: 1rem;
  }
}
.header-body div.header-wide .nav-button div {
  width: 25px;
  height: 3px;
  border-radius: 3px;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div {
    width: 19px;
  }
}
.header-body div.header-wide .nav-button div:hover {
  cursor: pointer;
}
.header-body div.header-wide .nav-button div:first-child {
  background-color: #008132;
  margin-bottom: 7.5px;
  transition: 0.3s;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div:first-child {
    margin-bottom: 5px;
  }
}
.header-body div.header-wide .nav-button div:nth-child(2) {
  background-color: #c8000f;
  margin-bottom: 7.5px;
  transition: 0.2s;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div:nth-child(2) {
    margin-bottom: 5px;
  }
}
.header-body div.header-wide .nav-button div:nth-child(3) {
  background-color: #ffc400;
  transition: 0.2s;
}
.header-body div.header-wide .nav-active:first-child {
  transform: rotate(45deg) translate(10px, 10px);
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-active:first-child {
    transform: rotate(45deg) translate(7px, 7px);
  }
}
.header-body div.header-wide .nav-active:nth-child(2) {
  opacity: 0;
}
.header-body div.header-wide .nav-active:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-active:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
}

.header-body-open {
  border-radius: 0;
  transition: 0.15s;
  z-index: 1000;
}

.nav-open {
  position: absolute;
  position: fixed;
  top: -100px;
  width: 100%;
  height: 73px;
  background-color: #ffc400;
  z-index: 200;
  transition: 0.2s;
}
@media screen and (max-width: 1535px) {
  .nav-open {
    height: 66px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open {
    overflow-y: scroll;
  }
}
.nav-open .header-curve {
  width: 100vw;
}
@media screen and (max-width: 1110px) {
  .nav-open .header-curve {
    display: none;
  }
}
.nav-open .header-curve img {
  width: 100%;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp {
    display: flex;
    justify-content: space-between;
    margin-top: 90px;
    padding: 0 10% 0 10%;
  }
}
.nav-open .nav-container-sp .common-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  padding: 47px 22px 0 22px;
  margin: 0 auto 0 auto;
}
@media screen and (max-width: 1535px) {
  .nav-open .nav-container-sp .common-menu {
    max-width: 1000px;
    padding-top: 36px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu {
    display: block;
    width: auto;
    padding: 0;
    margin: 0;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    margin-bottom: 24px;
    font-size: 24px;
    color: #3b201b;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    font-size: 21px;
  }
}
@media screen and (max-width: 365px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    font-size: 19px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
  margin-bottom: 20px;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 15px;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 14px;
  }
}
@media screen and (max-width: 365px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 14px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect .header-menu-img {
  width: auto;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .header-menu-img {
    display: block;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list {
  display: flex;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #8b675f;
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list li {
  padding-right: 11px;
  padding-left: 11px;
  border-right: 1px solid #8b675f;
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
  padding-left: 0;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
    font-size: 11px;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
    font-size: 11px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect #menu-effect-last {
  margin-bottom: 28px;
}
.nav-open .nav-container-sp .common-menu .menu-effect #header_sns {
  display: flex;
}
.nav-open .nav-container-sp .common-menu .menu-effect #header_sns li {
  padding-left: 10px;
}
@media screen and (max-width: 1110px) {
  .nav-open #header_sns_sp {
    display: inline;
    animation: is-open-pc 0.47s ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 0.8s;
    opacity: 0;
  }
  .nav-open #header_sns_sp li {
    margin-bottom: 22px;
  }
  .nav-open #header_sns_sp img {
    width: 32px;
  }
}
.nav-open .pc-effect-active {
  animation: is-open-pc 0.47s ease-in-out;
  animation-fill-mode: forwards;
  opacity: 0;
}
.nav-open .pc-effect-active:nth-child(2) {
  animation-delay: 0.2s;
}
.nav-open .pc-effect-active:nth-child(3) {
  animation-delay: 0.3s;
}
.nav-open .pc-effect-active:nth-child(4) {
  animation-delay: 0.4s;
}
.nav-open .pc-effect-active:nth-child(5) {
  animation-delay: 0.5s;
}
.nav-open .pc-effect-active:nth-child(6) {
  animation-delay: 0.6s;
}
.nav-open .pc-effect-active:nth-child(n+7) {
  animation-delay: 0.7s;
}
@media screen and (max-width: 1110px) {
  .nav-open .pc-effect-active:nth-child(6) {
    animation-delay: 0s;
  }
  .nav-open .pc-effect-active:nth-child(7) {
    animation-delay: 0.1s;
  }
  .nav-open .pc-effect-active:nth-child(8) {
    animation-delay: 0.2s;
  }
  .nav-open .pc-effect-active:nth-child(9) {
    animation-delay: 0.3s;
  }
  .nav-open .pc-effect-active:nth-child(10) {
    animation-delay: 0.4s;
  }
  .nav-open .pc-effect-active:nth-child(11) {
    animation-delay: 0.5s;
  }
  .nav-open .pc-effect-active:nth-child(12) {
    animation-delay: 0.6s;
  }
  .nav-open .pc-effect-active:nth-child(13) {
    animation-delay: 0.7s;
  }
  .nav-open .pc-effect-active:nth-child(n+14) {
    animation-delay: 0.8s;
  }
}

.nav-open-active {
  top: 100px;
  transition: 0.2s;
}
@media screen and (max-width: 1535px) {
  .nav-open-active {
    top: 70px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open-active {
    top: 0px;
    width: 100vw;
    height: 100vh;
  }
}

/* Footer Section 
================================*/
#footer {
  position: relative;
  z-index: 32;
}

.app-link {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: #c8000f;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .app-link {
    padding-top: 24px;
    padding-bottom: 20px;
  }
}
.app-link img {
  max-width: 956px;
}
@media screen and (max-width: 1535px) {
  .app-link img {
    max-width: 878px;
  }
}
@media screen and (max-width: 1110px) {
  .app-link img {
    max-width: 70%;
  }
}
@media screen and (max-width: 800px) {
  .app-link img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .app-link img {
    max-width: 88%;
  }
}

.footer-nav {
  padding-top: 70px;
  padding-bottom: 72px;
  background-color: #60352c;
  background-image: url(/lp/2024_coffee/images/footer_illust.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 800px) {
  .footer-nav {
    background-image: url(/lp/2024_coffee/images/footer_illust_sp.png);
    padding-top: 35px;
    padding-bottom: 110px;
    padding-left: 8.1%;
    padding-right: 8.1%;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav {
    padding-bottom: 90px;
  }
}
.footer-nav ul.footer-link {
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 25px auto;
  color: #fff;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 1110px) {
  .footer-nav ul.footer-link {
    max-width: 700px;
  }
}
@media screen and (max-width: 800px) {
  .footer-nav ul.footer-link {
    font-size: 1.1rem;
  }
}
.footer-nav ul.footer-link li {
  width: 25%;
  margin-bottom: 21px;
}
.footer-nav ul.footer-link li:nth-child(4n+1) {
  width: 24%;
  padding-left: 1%;
}
.footer-nav ul.footer-link li:nth-child(4n+2) {
  width: 24%;
}
.footer-nav ul.footer-link li:nth-child(4n+3) {
  width: 27%;
}
.footer-nav ul.footer-link li:nth-child(4n+4) {
  width: 23.7%;
}
.footer-nav ul.footer-link li:nth-child(-n+4) {
  margin-bottom: 22px;
}
@media screen and (max-width: 800px) {
  .footer-nav ul.footer-link li {
    margin-bottom: 16px;
    line-height: 1.7;
  }
  .footer-nav ul.footer-link li:nth-child(4n+1) {
    width: 50%;
    padding-right: 10%;
    padding-left: 0;
  }
  .footer-nav ul.footer-link li:nth-child(4n+2) {
    width: 46%;
  }
  .footer-nav ul.footer-link li:nth-child(4n+3) {
    width: 50%;
    padding-right: 10%;
  }
  .footer-nav ul.footer-link li:nth-child(4n+4) {
    width: 46%;
  }
  .footer-nav ul.footer-link li:nth-child(-n+4) {
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav ul.footer-link li {
    margin-bottom: 15px;
  }
  .footer-nav ul.footer-link li:nth-child(-n+4) {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav #footer-link-sp {
    display: flex;
  }
}
.footer-nav .footer-sns {
  display: flex;
  justify-content: space-between;
  width: 206px;
  margin: 0 auto 15px auto;
}
@media screen and (max-width: 600px) {
  .footer-nav .footer-sns {
    display: flex;
    justify-content: space-between;
    width: 167px;
    margin-bottom: 20px;
  }
}
.footer-nav .copy {
  font-size: 1.1rem;
  color: #a38680;
  letter-spacing: 0.075em;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .footer-nav .copy {
    font-size: 1rem;
  }
}

/* COLUMN COMPORENT
=============================*/
main {
  display: flex;
}

.center {
  width: 600px;
  background-image: url(/lp/2024_coffee/images/bg_cp.png);
  background-size: 100%;
  background-repeat: repeat-y;
}
@media screen and (max-width: 1535px) {
  .center {
    width: 450px;
  }
}
@media screen and (max-width: 600px) {
  .center {
    width: 100%;
  }
}

.leftside {
  position: sticky;
  top: 0;
  left: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background-size: cover;
  z-index: 32;
}
@media screen and (max-width: 1535px) {
  .leftside {
    width: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .leftside {
    display: none;
  }
}
.leftside .left-bg {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-size: 660px;
  background-repeat: repeat;
  background-position: top;
}
@media screen and (max-width: 1440px) {
  .leftside .left-bg {
    background-size: 532px;
  }
}
.leftside .left-bg-01 {
  background-image: url(/lp/2024_coffee/images/pc_left_01.jpg);
  transform: scale(1.005);
  z-index: 10;
}
.leftside .left-bg-02 {
  background-image: url(/lp/2024_coffee/images/pc_left_02.jpg);
  transform: scale(1.005);
  z-index: 9;
}
.leftside .left-bg-03 {
  background-image: url(/lp/2024_coffee/images/pc_left_03.jpg);
  transform: scale(1.005);
  z-index: 8;
}
.leftside .left-bg-04 {
  background-image: url(/lp/2024_coffee/images/pc_left_04.jpg);
  transform: scale(1.005);
  z-index: 7;
}
.leftside .left-bg-05 {
  background-image: url(/lp/2024_coffee/images/pc_left_05.jpg);
  transform: scale(1.005);
  z-index: 6;
}
.leftside .left-bg-06 {
  background-image: url(/lp/2024_coffee/images/pc_left_06.jpg);
  transform: scale(1.005);
  z-index: 5;
}
.leftside .left-bg-07 {
  background-image: url(/lp/2024_coffee/images/pc_left_07.jpg);
  transform: scale(1.005);
  z-index: 4;
}
.leftside .left-bg-08 {
  background-image: url(/lp/2024_coffee/images/pc_left_08.jpg);
  transform: scale(1.005);
  z-index: 3;
}
.leftside .left-bg-09 {
  background-image: url(/lp/2024_coffee/images/pc_left_09.jpg);
  transform: scale(1.005);
  z-index: 2;
}
.leftside .left-bg-10 {
  background-image: url(/lp/2024_coffee/images/pc_left_10.jpg);
  transform: scale(1.005);
  z-index: 1;
}

.rightside {
  position: sticky;
  top: 0;
  right: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background-size: cover;
  z-index: 32;
}
@media screen and (max-width: 1535px) {
  .rightside {
    width: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .rightside {
    display: none;
  }
}
.rightside .right-bg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  height: 100vh;
  width: 100%;
  background-size: 660px;
  background-repeat: repeat;
  background-position: top;
}
@media screen and (max-width: 1440px) {
  .rightside .right-bg {
    background-size: 532px;
  }
}
.rightside .right-bg-01 {
  background-image: url(/lp/2024_coffee/images/pc_left_10.jpg);
  z-index: 10;
}
.rightside .right-bg-02 {
  background-image: url(/lp/2024_coffee/images/pc_left_09.jpg);
  z-index: 9;
}
.rightside .right-bg-03 {
  background-image: url(/lp/2024_coffee/images/pc_left_08.jpg);
  z-index: 8;
}
.rightside .right-bg-04 {
  background-image: url(/lp/2024_coffee/images/pc_left_07.jpg);
  z-index: 7;
}
.rightside .right-bg-05 {
  background-image: url(/lp/2024_coffee/images/pc_right_06.jpg);
  z-index: 6;
}
.rightside .right-bg-06 {
  background-image: url(/lp/2024_coffee/images/pc_left_05.jpg);
  z-index: 5;
}
.rightside .right-bg-07 {
  background-image: url(/lp/2024_coffee/images/pc_left_04.jpg);
  z-index: 4;
}
.rightside .right-bg-08 {
  background-image: url(/lp/2024_coffee/images/pc_left_03.jpg);
  z-index: 3;
}
.rightside .right-bg-09 {
  background-image: url(/lp/2024_coffee/images/pc_left_02.jpg);
  z-index: 2;
}
.rightside .right-bg-10 {
  background-image: url(/lp/2024_coffee/images/pc_left_01.jpg);
  z-index: 1;
}
.rightside .right-btn {
  width: 265px;
  bottom: -1%;
  right: 0%;
  z-index: 35;
}
@media screen and (max-width: 1535px) {
  .rightside .right-btn {
    width: 199px;
  }
}

body {
  font-feature-settings: "palt";
}

p, h2, h3, h4 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* flesh-section
=========================*/
.fresh-p {
  color: white;
  font-size: 22px;
  line-height: 2.14;
  letter-spacing: -0.6;
}
@media screen and (max-width: 1535px) {
  .fresh-p {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .fresh-p {
    font-size: 3.73vw;
  }
}

.lh-fresh {
  line-height: 1;
}
@media screen and (max-width: 1535px) {
  .lh-fresh {
    line-height: 0.85;
  }
}

/* BLUR ANIMATION
==========================*/
@keyframes blur-01 {
  0% {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(8px);
  }
  75% {
    filter: blur(0);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0px);
  }
}
@keyframes blur-02 {
  0% {
    opacity: 0;
    filter: blur(15px);
    transform: translateY(8px) scale(0.98);
  }
  75% {
    filter: blur(0);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0px) scale(1);
  }
}
@keyframes trans-y {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes change-img-01 {
  0% {
    opacity: 1;
  }
  6% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  94% {
    opacity: 0;
  }
  98% {
    opacity: 1;
  }
}
@keyframes change-img-02 {
  0% {
    opacity: 1;
  }
  16% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  96% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes change-img-03 {
  0% {
    opacity: 1;
  }
  26% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  96% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes change-img-04 {
  0% {
    opacity: 1;
  }
  36% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  96% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes change-img-05 {
  0% {
    opacity: 1;
  }
  46% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  96% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes change-img-06 {
  0% {
    opacity: 1;
  }
  56% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  96% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes change-img-07 {
  0% {
    opacity: 1;
  }
  66% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  96% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes change-img-08 {
  0% {
    opacity: 1;
  }
  76% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  96% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes change-img-09 {
  0% {
    opacity: 1;
  }
  86% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  96% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes change-img-10 {
  0% {
    opacity: 1;
  }
  96% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.left-bg-01 {
  animation: change-img-01 40s infinite;
}

.left-bg-02 {
  animation: change-img-02 40s 0s infinite;
}

.left-bg-03 {
  animation: change-img-03 40s 0s infinite;
}

.left-bg-04 {
  animation: change-img-04 40s 0s infinite;
}

.left-bg-05 {
  animation: change-img-05 40s 0s infinite;
}

.left-bg-06 {
  animation: change-img-06 40s 0s infinite;
}

.left-bg-07 {
  animation: change-img-07 40s 0s infinite;
}

.left-bg-08 {
  animation: change-img-08 40s 0s infinite;
}

.left-bg-09 {
  animation: change-img-09 40s 0s infinite;
}

.left-bg-10 {
  animation: change-img-10 40s 0s infinite;
}

.right-bg-01 {
  animation: change-img-01 40s infinite;
}

.right-bg-02 {
  animation: change-img-02 40s infinite;
}

.right-bg-03 {
  animation: change-img-03 40s infinite;
}

.right-bg-04 {
  animation: change-img-04 40s infinite;
}

.right-bg-05 {
  animation: change-img-05 40s infinite;
}

.right-bg-06 {
  animation: change-img-06 40s infinite;
}

.right-bg-07 {
  animation: change-img-07 40s infinite;
}

.right-bg-08 {
  animation: change-img-08 40s infinite;
}

.right-bg-09 {
  animation: change-img-09 40s infinite;
}

.right-bg-10 {
  animation: change-img-10 40s infinite;
}

.intro-text {
  opacity: 0;
}

.intro-text-active {
  animation: blur-01 1s ease-out forwards;
}

.intro-statement-line {
  opacity: 0;
}

.intro-statement-line-active {
  animation: blur-01 1s ease-out forwards;
}
.intro-statement-line-active:nth-child(2) {
  animation-delay: 0.12s;
}
.intro-statement-line-active:nth-child(3) {
  animation-delay: 0.24s;
}
.intro-statement-line-active:nth-child(4) {
  animation-delay: 0.36s;
}
.intro-statement-line-active:nth-child(5) {
  animation-delay: 0.48s;
}
.intro-statement-line-active:nth-child(6) {
  animation-delay: 0.6s;
}
.intro-statement-line-active:nth-child(7) {
  animation-delay: 0.72s;
}
.intro-statement-line-active:nth-child(8) {
  animation-delay: 0.86s;
}
.intro-statement-line-active:nth-child(9) {
  animation-delay: 0.92s;
}
.intro-statement-line-active:nth-child(10) {
  animation-delay: 0.98s;
}
.intro-statement-line-active:nth-child(11) {
  animation-delay: 1.04s;
}
.intro-statement-line-active:nth-child(12) {
  animation-delay: 1.1s;
}

.intro-beans {
  opacity: 0;
}

.intro-coffee {
  opacity: 0;
}

.intro-beans-active {
  animation: blur-02 1s ease-out forwards;
}

.intro-coffee-active {
  animation: blur-02 1s ease-out forwards;
}

.cizle-name-unique {
  opacity: 0;
}

.cizle-name-unique-active {
  animation: blur-01 1s ease-out forwards;
}

.cizle-name-basic {
  opacity: 0;
}

.cizle-name-basic-active {
  animation: blur-01 1s ease-out forwards;
}

.origin-02 {
  opacity: 0;
}

.origin-02-active {
  animation: blur-02 1s ease-out forwards;
}

.origin-hot-img, .blend-hot-img {
  opacity: 0;
}

.origin-hot-img-active, .blend-hot-img-active {
  animation: trans-y 1s ease-out forwards;
}

.origin-ice-img, .blend-ice-img {
  opacity: 0;
}

.origin-ice-img-active, .blend-ice-img-active {
  animation: trans-y 1s ease-out forwards;
}

.origin-hot-title, .blend-hot-title {
  opacity: 0;
}

.origin-hot-title-active, .blend-hot-title-active {
  animation: blur-01 1s ease-out forwards 0.3s;
}

.origin-ice-title, .blend-ice-title {
  opacity: 0;
}

.origin-ice-title-active, .blend-ice-title-active {
  animation: blur-01 1s ease-out forwards 0.3s;
}

.blend-02 {
  opacity: 0;
}

.blend-02-active {
  animation: blur-02 1s ease-out forwards;
}

/* GRAPH ANIMATION
==========================*/
@keyframes graph-animation {
  0% {
    transform: scale(0.5);
    filter: blur(5px);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 0.8;
  }
}
.origin-03-graph {
  opacity: 0;
}

.origin-03-graph-active {
  animation: blur-01 1s ease-out forwards;
}

.origin-03-graph-abs {
  transform: scale(0.7);
  opacity: 0;
}

.origin-03-graph-abs-active {
  animation: graph-animation 0.6s ease-out forwards 0.3s;
}

.blend-02-graph {
  opacity: 0;
}

.blend-02-graph-active {
  animation: blur-01 1s ease-out forwards;
}

.blend-02-abs {
  transform: scale(0.7);
  opacity: 0;
}

.blend-02-abs-active {
  animation: graph-animation 0.6s ease-out forwards 0.3s;
}

.recommend-01-h3 {
  opacity: 0;
}

.recommend-01-h3-active {
  animation: blur-02 1.4s ease-out forwards;
}

.cp {
  opacity: 0;
  position: relative;
  z-index: 10;
}

.cp-active {
  animation: blur-02 1.4s ease-out forwards;
}

.trading-03-h4 {
  opacity: 0;
}

.trading-03-h4-active {
  animation: blur-02 1.4s ease-out forwards;
}

.trading-05-h4 {
  opacity: 0;
}

.trading-05-h4-active {
  animation: blur-02 1.4s ease-out forwards;
}

.roasting-02-h4 {
  opacity: 0;
}

.roasting-02-h4-active {
  animation: blur-02 1.4s ease-out forwards;
}

.search-anker {
  opacity: 0;
}

.search-anker-active {
  animation: blur-02 1.4s ease-out forwards;
}

/* PHOTO ZOOM CSS
==========================*/
.origin-main-img {
  width: 100%;
  overflow: hidden;
}
.origin-main-img .origin-main-img-zoom {
  transform: scale(1.1);
  opacity: 0;
  filter: blur(10px);
}
.origin-main-img .origin-main-img-zoom-active {
  transform: scale(1);
  opacity: 1;
  filter: blur(0px);
  transition: 1s ease;
}

.blend-main-img {
  width: 100%;
  overflow: hidden;
}
.blend-main-img .blend-main-img-zoom {
  transform: scale(1.1);
  opacity: 0;
  filter: blur(10px);
}
.blend-main-img .blend-main-img-zoom-active {
  transform: scale(1);
  opacity: 1;
  filter: blur(0px);
  transition: 1s ease;
}

.recommend-01-img {
  position: relative;
  width: 64.8%;
  margin: 0 7.4% 0 auto;
  overflow: hidden;
  z-index: 10;
}
.recommend-01-img .recommend-01-img-zoom {
  transform: scale(1.1);
  opacity: 0;
  filter: blur(10px);
}
.recommend-01-img .recommend-01-img-zoom-active {
  transform: scale(1);
  opacity: 1;
  filter: blur(0px);
  transition: 0.75s ease;
}

.recommend-01-img-02 {
  position: relative;
  width: 47.13%;
  margin: 0 auto 0 10.1%;
  overflow: hidden;
  z-index: 10;
}
.recommend-01-img-02 .recommend-01-img-02-zoom {
  transform: scale(1.1);
  opacity: 0;
  filter: blur(10px);
}
.recommend-01-img-02 .recommend-01-img-02-zoom-active {
  transform: scale(1);
  opacity: 1;
  filter: blur(0px);
  transition: 0.75s ease;
}

.recommend-02-img {
  position: relative;
  width: 43.7%;
  margin: 46px auto 238px auto;
  overflow: hidden;
  z-index: 10;
}
@media screen and (max-width: 1535px) {
  .recommend-02-img {
    margin-top: 34px;
    margin-bottom: 179px;
  }
}
@media screen and (max-width: 600px) {
  .recommend-02-img {
    margin-top: 8vw;
    margin-bottom: 39.7vw;
  }
}
.recommend-02-img .recommend-02-img-zoom {
  transform: scale(1.1);
  opacity: 0;
  filter: blur(10px);
}
.recommend-02-img .recommend-02-img-zoom-active {
  transform: scale(1);
  opacity: 1;
  filter: blur(0px);
  transition: 0.75s ease;
}

.trading-title-img {
  width: 100%;
  overflow: hidden;
}
.trading-title-img .trading-title-img-zoom {
  transform: scale(1.1);
  opacity: 1;
  filter: blur(20px);
}
.trading-title-img .trading-title-img-zoom-active {
  transform: scale(1.01);
  opacity: 1;
  filter: blur(0px);
  transition: 2s ease;
}

.trading-02-img-01 {
  position: relative;
  width: 85.33%;
  margin: 0 auto 75px auto;
  overflow: hidden;
  z-index: 10;
}
@media screen and (max-width: 1535px) {
  .trading-02-img-01 {
    margin-bottom: 56px;
  }
}
@media screen and (max-width: 600px) {
  .trading-02-img-01 {
    margin-bottom: 12.5%;
  }
}
.trading-02-img-01 .trading-02-img-01-zoom {
  width: 101%;
  transform: scale(1.1);
  opacity: 0;
  filter: blur(10px);
}
.trading-02-img-01 .trading-02-img-01-zoom-active {
  transform: scale(1.01);
  opacity: 1;
  filter: blur(0px);
  transition: 0.75s ease;
}

.trading-02-img-02 {
  position: relative;
  width: 48.26%;
  margin: 80px auto 121px auto;
  overflow: hidden;
  z-index: 10;
}
@media screen and (max-width: 1535px) {
  .trading-02-img-02 {
    margin-top: 56px;
    margin-bottom: 96px;
  }
}
@media screen and (max-width: 600px) {
  .trading-02-img-02 {
    margin-top: 12.5vw;
    margin-bottom: 21.33vw;
  }
}
.trading-02-img-02 .trading-02-img-02-zoom {
  transform: scale(1.1);
  opacity: 0;
  filter: blur(10px);
}
.trading-02-img-02 .trading-02-img-02-zoom-active {
  transform: scale(1);
  opacity: 1;
  filter: blur(0px);
  transition: 0.75s ease;
}

.trading-03-img {
  position: relative;
  width: 51.46%;
  margin: 0 7.2% 297px auto;
  overflow: hidden;
  z-index: 10;
}
@media screen and (max-width: 1535px) {
  .trading-03-img {
    margin-bottom: 223px;
  }
}
@media screen and (max-width: 600px) {
  .trading-03-img {
    margin-bottom: 49.6vw;
  }
}
.trading-03-img .trading-03-img-zoom {
  transform: scale(1.1);
  opacity: 0;
  filter: blur(10px);
}
.trading-03-img .trading-03-img-zoom-active {
  transform: scale(1);
  opacity: 1;
  filter: blur(0px);
  transition: 0.75s ease;
}

.trading-04-img {
  position: relative;
  width: 85.3%;
  margin: 0 auto 0 auto;
  overflow: hidden;
  z-index: 10;
}
.trading-04-img .trading-04-img-zoom {
  transform: scale(1.1);
  opacity: 0;
  filter: blur(10px);
}
.trading-04-img .trading-04-img-zoom-active {
  transform: scale(1.01);
  opacity: 1;
  filter: blur(0px);
  transition: 0.75s ease;
}

.roasting-title-img {
  width: 100%;
  overflow: hidden;
}
.roasting-title-img .roasting-title-img-zoom {
  transform: scale(1.1);
  opacity: 1;
  filter: blur(20px);
}
.roasting-title-img .roasting-title-img-zoom-active {
  transform: scale(1);
  opacity: 1;
  filter: blur(0px);
  transition: 2s ease;
}

.roasting-01-img {
  width: 51.46%;
  margin: 0 auto 0 14.4%;
  overflow: hidden;
}
.roasting-01-img .roasting-01-img-zoom {
  transform: scale(1.1);
  opacity: 0;
  filter: blur(20px);
}
.roasting-01-img .roasting-01-img-zoom-active {
  transform: scale(1);
  opacity: 1;
  filter: blur(0px);
  transition: 1s ease;
}

.roasting-02-img {
  width: 51.46%;
  margin: 0 7.3% 0 auto;
  overflow: hidden;
}
.roasting-02-img .roasting-02-img-zoom {
  transform: scale(1.1);
  opacity: 0;
  filter: blur(20px);
}
.roasting-02-img .roasting-02-img-zoom-active {
  transform: scale(1);
  opacity: 1;
  filter: blur(0px);
  transition: 1s ease;
}

/* BEANS CSS
==========================*/
.blue-beans-01 {
  width: 39%;
  top: 26%;
  left: -15%;
}

.blue-beans-02 {
  width: 39.7%;
  top: 73%;
  right: -17%;
  z-index: 2;
}

.yellow-beans-01 {
  width: 44%;
  top: 10%;
  right: -10%;
  z-index: 10;
}

.yellow-beans-02 {
  width: 28%;
  top: 30.5%;
  left: -12%;
  z-index: 10;
}

.yellow-beans-03 {
  width: 41%;
  top: 55%;
  right: -20%;
  z-index: 10;
}

.yellow-beans-04 {
  width: 36.5%;
  top: 82.8%;
  left: -10%;
  z-index: 10;
}

.beige-beans-01 {
  width: 27.4%;
  top: 51%;
  right: -13%;
  z-index: 0;
}

.beige-beans-02 {
  width: 39.7%;
  top: 63.6%;
  left: -15%;
  z-index: 10;
}

.green-beans-01 {
  width: 45%;
  top: 19%;
  right: -20%;
  z-index: 10;
}

.green-beans-02 {
  width: 38.66%;
  top: 33.5%;
  left: -20%;
  z-index: 10;
}

.green-beans-03 {
  width: 20%;
  top: 36.2%;
  right: -9%;
  z-index: 10;
}

.green-beans-04 {
  width: 17.5%;
  top: 36.2%;
  right: 4%;
  z-index: 9;
}

.green-beans-05 {
  width: 45.6%;
  top: 52%;
  left: -20%;
  z-index: 10;
}

.green-beans-06 {
  width: 19%;
  top: 59%;
  left: 53%;
  z-index: 10;
}

/* GAUS
============================*/
.blend-gaus-01 {
  width: 100%;
  top: -233%;
  left: 0;
}

.blend-gaus-02 {
  width: 100%;
  top: -37%;
  left: 0;
}

.yellow-gaus-02 {
  width: 100%;
  top: -20%;
  left: 0;
}

.beige-gaus-02 {
  width: 100%;
  top: -4%;
  left: 0;
  z-index: 0;
}

.beige-gaus-03 {
  width: 100%;
  top: 89%;
  left: 0;
  z-index: 0;
}

.beige-gaus-04 {
  width: 61%;
  top: -168%;
  left: 0;
  z-index: 0;
}

/* MAP
======================*/
.map-name-01 {
  top: 25.6%;
  left: 18.4%;
  width: 16%;
  position: absolute;
}

.map-name-02 {
  top: 22.7%;
  right: 18.7%;
  width: 27.04%;
  position: absolute;
}

.map-name-03 {
  top: 33.8%;
  right: 7.2%;
  width: 19.06%;
  position: absolute;
}

/* STRINGS
======================*/
@keyframes mask-anime {
  0% {
    opacity: 1;
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
  100% {
    opacity: 1;
    -webkit-mask-position: 0 100%;
    mask-position: 0 100%;
  }
}
@keyframes mask-anime {
  0% {
    opacity: 1;
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
  100% {
    opacity: 1;
    -webkit-mask-position: 0 100%;
    mask-position: 0 100%;
  }
}
.intro-h2-img {
  opacity: 0;
}

.intro-h2-img-active {
  animation: mask-anime 1.75s steps(35) forwards;
  -webkit-mask-image: url(/lp/2024_coffee/images/sprite_mask.png);
  mask-image: url(/lp/2024_coffee/images/sprite_mask.png);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 3600%;
  mask-size: 100% 3600%;
}

.origin-title-01 {
  opacity: 0;
}

.origin-title-02 {
  opacity: 0;
}

.origin-title-03 {
  opacity: 0;
}

.origin-title-01-active {
  animation: blur-01 1s ease-in-out forwards;
}

.origin-title-02-active {
  animation: mask-anime 1s steps(35) 0.6s forwards;
  -webkit-mask-image: url(/lp/2024_coffee/images/sprite_mask.png);
  mask-image: url(/lp/2024_coffee/images/sprite_mask.png);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 3600%;
  mask-size: 100% 3600%;
}

.origin-title-03-active {
  animation: mask-anime 1s steps(35) 0.9s forwards;
  -webkit-mask-image: url(/lp/2024_coffee/images/sprite_mask.png);
  mask-image: url(/lp/2024_coffee/images/sprite_mask.png);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 3600%;
  mask-size: 100% 3600%;
}

.origin-title {
  opacity: 0;
}

.origin-title-active {
  animation: mask-anime 1.5s steps(35) forwards;
  -webkit-mask-image: url(/lp/2024_coffee/images/sprite_mask.png);
  mask-image: url(/lp/2024_coffee/images/sprite_mask.png);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 3600%;
  mask-size: 100% 3600%;
}

.origin-appear {
  opacity: 0;
}

.origin-appear-active {
  animation: mask-anime 2s steps(70) forwards;
  -webkit-mask-image: url(/lp/2024_coffee/images/sprite_circle.png);
  mask-image: url(/lp/2024_coffee/images/sprite_circle.png);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 3600%;
  mask-size: 100% 3600%;
}

.origin-03-text {
  opacity: 0;
}

.origin-03-text-active {
  animation: blur-02 1.4s ease-out forwards;
}

.blend-title-01 {
  opacity: 0;
}

.blend-title-02 {
  opacity: 0;
}

.blend-title-01-active {
  animation: blur-01 1s ease-in-out forwards;
}

.blend-title-02-active {
  animation: mask-anime 1s steps(35) forwards 0.6s;
  -webkit-mask-image: url(/lp/2024_coffee/images/sprite_mask.png);
  mask-image: url(/lp/2024_coffee/images/sprite_mask.png);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 3600%;
  mask-size: 100% 3600%;
}

.blend-02-text-img {
  opacity: 0;
}

.blend-02-text-img-active {
  animation: blur-02 1.4s ease-out forwards;
}

.blend-menu-title {
  opacity: 0;
}

.blend-menu-title-active {
  animation: mask-anime 1.5s steps(35) forwards;
  -webkit-mask-image: url(/lp/2024_coffee/images/sprite_mask.png);
  mask-image: url(/lp/2024_coffee/images/sprite_mask.png);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 3600%;
  mask-size: 100% 3600%;
}

.trading-h2 {
  opacity: 0;
}

.trading-h2-active {
  animation: mask-anime 1.75s steps(35) forwards;
  -webkit-mask-image: url(/lp/2024_coffee/images/sprite_mask.png);
  mask-image: url(/lp/2024_coffee/images/sprite_mask.png);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 3600%;
  mask-size: 100% 3600%;
}

.map {
  opacity: 0;
}

.map-active {
  animation: mask-anime 2.5s steps(35) forwards;
  -webkit-mask-image: url(/lp/2024_coffee/images/sprite_mask.png);
  mask-image: url(/lp/2024_coffee/images/sprite_mask.png);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 3600%;
  mask-size: 100% 3600%;
}

.map-name-01 {
  opacity: 0;
}

.map-name-01-active {
  animation: mask-anime 2.5s steps(35) forwards;
  -webkit-mask-image: url(/lp/2024_coffee/images/sprite_mask.png);
  mask-image: url(/lp/2024_coffee/images/sprite_mask.png);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 3600%;
  mask-size: 100% 3600%;
}

.map-name-02 {
  opacity: 0;
}

.map-name-02-active {
  animation: mask-anime 2.5s steps(35) forwards 0.7s;
  -webkit-mask-image: url(/lp/2024_coffee/images/sprite_mask.png);
  mask-image: url(/lp/2024_coffee/images/sprite_mask.png);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 3600%;
  mask-size: 100% 3600%;
}

.map-name-03 {
  opacity: 0;
}

.map-name-03-active {
  animation: mask-anime 2.5s steps(35) forwards 1s;
  -webkit-mask-image: url(/lp/2024_coffee/images/sprite_mask.png);
  mask-image: url(/lp/2024_coffee/images/sprite_mask.png);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 3600%;
  mask-size: 100% 3600%;
}

.trading-01-h3 {
  opacity: 0;
}

.trading-01-h3-active {
  animation: mask-anime 2.5s steps(35) forwards;
  -webkit-mask-image: url(/lp/2024_coffee/images/sprite_mask_re.png);
  mask-image: url(/lp/2024_coffee/images/sprite_mask_re.png);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 3600%;
  mask-size: 100% 3600%;
}

.trading-02-h3 {
  opacity: 0;
}

.trading-02-h3-active {
  animation: mask-anime 2.5s steps(35) forwards;
  -webkit-mask-image: url(/lp/2024_coffee/images/sprite_mask_re.png);
  mask-image: url(/lp/2024_coffee/images/sprite_mask_re.png);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 3600%;
  mask-size: 100% 3600%;
}

.trading-04-h3 {
  opacity: 0;
}

.trading-04-h3-active {
  animation: mask-anime 2.55s steps(35) forwards;
  -webkit-mask-image: url(/lp/2024_coffee/images/sprite_mask_re.png);
  mask-image: url(/lp/2024_coffee/images/sprite_mask_re.png);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 3600%;
  mask-size: 100% 3600%;
}

.trading-piramid-specialty {
  opacity: 0;
}

.trading-piramid-specialty-active {
  animation: mask-anime 2s steps(35) forwards 0.5s;
  -webkit-mask-image: url(/lp/2024_coffee/images/sprite_mask_re.png);
  mask-image: url(/lp/2024_coffee/images/sprite_mask_re.png);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 3600%;
  mask-size: 100% 3600%;
}

.roasting-h2 {
  opacity: 0;
}

.roasting-h2-active {
  animation: mask-anime 1.75s steps(35) forwards;
  -webkit-mask-image: url(/lp/2024_coffee/images/sprite_mask.png);
  mask-image: url(/lp/2024_coffee/images/sprite_mask.png);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 3600%;
  mask-size: 100% 3600%;
}

.roasting-01-h3 {
  opacity: 0;
}

.roasting-01-h3-active {
  animation: mask-anime 1.75s steps(35) forwards;
  -webkit-mask-image: url(/lp/2024_coffee/images/sprite_mask_re.png);
  mask-image: url(/lp/2024_coffee/images/sprite_mask_re.png);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 3600%;
  mask-size: 100% 3600%;
}

.fresh-h3 {
  opacity: 0;
}

.fresh-h3-active {
  animation: mask-anime 1.75s steps(35) forwards;
  -webkit-mask-image: url(/lp/2024_coffee/images/sprite_mask_re.png);
  mask-image: url(/lp/2024_coffee/images/sprite_mask_re.png);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 3600%;
  mask-size: 100% 3600%;
}

/* オープニング
========================*/
.open {
  position: fixed;
  width: 600px;
  height: 100vh;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: 130;
  background: linear-gradient(45deg, #eedebb 0%, #f2ede6 30.7%, #ede9e5 44%, #f2ede6 70%, #eedebb 100%);
}
@media screen and (max-width: 1535px) {
  .open {
    width: 450px;
  }
}
@media screen and (max-width: 600px) {
  .open {
    width: 100%;
  }
}
.open .open-anime {
  top: 32%;
  left: 0;
}
.open .anime-01 {
  opacity: 0;
}
.open .anime-01-active {
  animation: opening 1s ease-out forwards;
}
.open .anime-02 {
  opacity: 0;
}
.open .anime-02-active {
  animation: opening 0.001s ease-out forwards 0.3s;
}
.open .anime-03 {
  opacity: 0;
}
.open .anime-03-active {
  animation: opening 0.001s ease-out forwards 0.6s;
}
.open .anime-04 {
  opacity: 0;
  z-index: 10;
}
.open .anime-04-active {
  animation: opening 0.0001s ease-out forwards 1s;
}
.open .anime-05 {
  opacity: 0;
  z-index: 10;
}
.open .anime-05-active {
  animation: opening 0.0001s ease-out forwards 1.4s;
}

.open-active {
  animation: opening-02 2.2s ease-out forwards 1.8s;
}

@keyframes opening {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opening-02 {
  0% {
    opacity: 1;
    filter: blur(0px);
  }
  100% {
    opacity: 0;
    filter: blur(30px);
  }
}
@keyframes blur-yuge {
  0% {
    opacity: 0;
    filter: blur(50px);
    transform: transformY(8px), scale(0.7);
  }
  75% {
    filter: blur(0);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: transformY(0px) scale(1);
  }
}
.blend-hot-yuge {
  opacity: 0;
  transform: rotate(0.7);
}

.blend-hot-yuge-active {
  animation: blur-yuge 2.6s ease-out forwards;
}

.origin-yuge {
  top: -37%;
  left: 20%;
  width: 30%;
  opacity: 0;
}

.origin-yuge-active {
  animation: blur-yuge 2s ease-out forwards;
}

.fixed {
  opacity: 1;
}

.fixed-active {
  opacity: 0;
  transition: 0.7s;
}

/* 追加・CP 2025
===============================*/
.cp-2025 {
  display: block;
  width: 84.6%;
  margin: 0 auto 20px auto;
  z-index: 50;
}

/* LP Original Style
===============================*/
img {
  width: 100%;
}

.abs {
  position: absolute;
}

.rel {
  position: relative;
}

.mt-1 {
  margin-top: -1px;
}

.mv .mv-bottom {
  bottom: 0;
  left: 0;
}

.fixed {
  position: fixed;
  bottom: 3%;
  right: calc(50% - 300px);
  width: 107px;
  z-index: 120;
}
@media screen and (max-width: 1535px) {
  .fixed {
    right: calc(50% - 225px);
    width: 80px;
  }
}
@media screen and (max-width: 600px) {
  .fixed {
    right: 0;
    width: 17.8%;
  }
}

.totop {
  position: fixed;
  top: 12%;
  right: calc(50% - 300px);
  width: 32px;
  z-index: 120;
  opacity: 0;
}
@media screen and (max-width: 1535px) {
  .totop {
    right: calc(50% - 225px);
    width: 24px;
  }
}
@media screen and (max-width: 600px) {
  .totop {
    right: 0;
    width: 5.3%;
  }
}

/* MV
=======================*/
@keyframes change-mv-01 {
  0% {
    opacity: 1;
  }
  23% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes change-mv-02 {
  0% {
    opacity: 0;
  }
  23% {
    opacity: 0;
  }
  33% {
    opacity: 1;
  }
  57% {
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes change-mv-03 {
  0% {
    opacity: 0;
  }
  57% {
    opacity: 0;
  }
  67% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.mv {
  overflow-x: clip;
}
.mv .mv-img {
  top: 16%;
  left: 4%;
  width: 92%;
  overflow: clip;
}
.mv .mv-01 {
  opacity: 0;
  z-index: 0;
}
.mv .mv-01-active {
  animation: change-mv-01 20s 0s infinite;
}
.mv .mv-02 {
  opacity: 0;
  z-index: 0;
}
.mv .mv-02-active {
  animation: change-mv-02 20s 0s infinite;
}
.mv .mv-03 {
  opacity: 0;
  z-index: 0;
}
.mv .mv-03-active {
  animation: change-mv-03 20s 0s infinite;
}
.mv .mv-scale {
  transform: scale(1.005);
}

.section-intro {
  background: linear-gradient(to top, #f2ede5 0%, #f2ede6 20%, #f2ede6 43%, #f0e0bd 70.6%, rgba(238, 222, 187, 0) 100%);
  overflow-x: clip;
  z-index: 100;
  margin-top: -1px;
  padding-top: 139px;
}
@media screen and (max-width: 1535px) {
  .section-intro {
    padding-top: 104px;
  }
}
@media screen and (max-width: 600px) {
  .section-intro {
    margin-bottom: 23.2vw;
  }
}
.section-intro .intro-beans {
  width: 16.5%;
  top: 23.8%;
  left: 8%;
}
.section-intro .intro-coffee {
  width: 30.666%;
  top: 58.8%;
  right: 0%;
}
.section-intro .intro-statement {
  margin-bottom: 280px;
}
@media screen and (max-width: 1535px) {
  .section-intro .intro-statement {
    margin-bottom: 212px;
  }
}
@media screen and (max-width: 600px) {
  .section-intro .intro-statement {
    margin-bottom: 47vw;
  }
}
.section-intro .intro-statement .intro-statement-line {
  top: 0;
  left: 0;
}
.section-intro .intro-p {
  position: relative;
  z-index: 30;
}

.blue-top {
  top: 3%;
  left: 0;
  z-index: 20;
  transform: translate3d();
}

.section-blue {
  background: linear-gradient(to top, rgb(242, 237, 230) 0%, #a6ccd9 30%, #7bc2d4 88%, #7bc2d4 94%, #7bc2d4 100%);
  margin-top: -210px;
  padding-bottom: 200px;
  overflow-x: clip;
}
@media screen and (max-width: 1535px) {
  .section-blue {
    margin-top: -160px;
    padding-bottom: 160px;
  }
}
@media screen and (max-width: 600px) {
  .section-blue {
    margin-top: -58vw;
    padding-bottom: 35vw;
  }
}
.section-blue .cizle {
  z-index: 0;
}
.section-blue .cizle .cizle-02 {
  position: absolute;
  width: 100%;
  top: 44%;
  right: 0;
}
.section-blue .cizle .cizle-name-unique {
  width: 5.68%;
  top: 30.5%;
  right: 16%;
}
.section-blue .cizle .cizle-name-basic {
  width: 5.61%;
  top: 106%;
  left: 22%;
}
.section-blue .origin {
  margin: 0 auto;
  padding-top: 930px;
}
@media screen and (max-width: 1535px) {
  .section-blue .origin {
    padding-top: 696px;
  }
}
@media screen and (max-width: 600px) {
  .section-blue .origin {
    padding-top: 152.5vw;
  }
}
.section-blue .origin .origin-01 {
  width: 85.3%;
  margin: 0 auto;
}
.section-blue .origin .origin-01 .origin-title-01 {
  width: 11.56%;
  top: -5.5%;
  right: 0;
  z-index: 1;
}
.section-blue .origin .origin-01 .origin-title-02 {
  width: 16.56%;
  top: -4%;
  right: 11%;
  z-index: 1;
}
.section-blue .origin .origin-01 .origin-title-03 {
  width: 16.566%;
  top: -4%;
  right: 27%;
  z-index: 1;
}
.section-blue .origin .origin-02 {
  width: 85.3%;
  margin: 0 auto;
  background-image: url(/lp/2024_coffee/images/origin_bg.svg);
  background-repeat: no-repeat;
  padding-top: 53px;
  padding-bottom: 54px;
  border-radius: 15px;
}
@media screen and (max-width: 1535px) {
  .section-blue .origin .origin-02 {
    padding-top: 40px;
    padding-bottom: 41px;
  }
}
@media screen and (max-width: 600px) {
  .section-blue .origin .origin-02 {
    padding-top: 8.8vw;
    padding-bottom: 9.06vw;
  }
}
.section-blue .origin .origin-02 .origin-02-p {
  width: 100%;
  margin: 0 auto;
}
.section-blue .origin .origin-02 .origin-03-text {
  top: 0;
  left: 0;
}
.section-blue .origin .origin-02 .origin-03-acce {
  width: 10%;
  bottom: 30%;
  left: 31%;
}
.section-blue .origin .origin-02 .origin-03-graph {
  margin-bottom: 35px;
}
@media screen and (max-width: 1535px) {
  .section-blue .origin .origin-02 .origin-03-graph {
    margin-bottom: 26px;
  }
}
@media screen and (max-width: 600px) {
  .section-blue .origin .origin-02 .origin-03-graph {
    margin-bottom: 5.86vw;
  }
}
.section-blue .origin .origin-02 .origin-03-graph .origin-03-graph-abs {
  top: 0;
  left: 0;
}
.section-blue .origin .origin-menu {
  margin-top: 94px;
  padding-bottom: 142px;
}
@media screen and (max-width: 1535px) {
  .section-blue .origin .origin-menu {
    margin-top: 71px;
    padding-bottom: 107px;
  }
}
@media screen and (max-width: 600px) {
  .section-blue .origin .origin-menu {
    margin-top: 15.7vw;
    padding-bottom: 22.4vw;
  }
}
.section-blue .origin .origin-menu .origin-title {
  margin-left: auto;
  margin-right: 0;
}
.section-blue .origin .origin-menu .origin-hot .origin-hot-title {
  top: 37%;
  left: 0;
}
.section-blue .origin .origin-menu .origin-ice {
  margin-top: -70px;
}
@media screen and (max-width: 1535px) {
  .section-blue .origin .origin-menu .origin-ice {
    margin-top: -54px;
  }
}
@media screen and (max-width: 600px) {
  .section-blue .origin .origin-menu .origin-ice {
    margin-top: -12vw;
  }
}
.section-blue .origin .origin-menu .origin-ice .origin-ice-title {
  top: 45%;
  left: 0;
}

.blend-top {
  bottom: 0;
  left: 1px;
  bottom: -1px;
}

.section-brown {
  background: linear-gradient(to top, #3c1e1f 0%, #683d29 15%, #6c432f 58%, #683d29 84%, #836a5a 100%);
  padding-top: 187px;
}
@media screen and (max-width: 1535px) {
  .section-brown {
    padding-top: 140px;
  }
}
@media screen and (max-width: 600px) {
  .section-brown {
    padding-top: 32.5vw;
  }
}
.section-brown .blend {
  width: 85.3%;
  margin: 0 auto;
}
.section-brown .blend .blend-title-abs {
  width: 27%;
  top: -9%;
  right: 4%;
  z-index: 2;
}
.section-brown .blend .blend-rel {
  position: relative;
  z-index: 1;
}
.section-brown .blend .blend-title-01 {
  top: -17%;
  right: 3.1%;
  width: 8.75%;
  z-index: 12;
}
.section-brown .blend .blend-title-02 {
  top: -9.2%;
  right: 10.5%;
  width: 20%;
  z-index: 12;
}
.section-brown .blend .blend-01-p {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.section-brown .blend .blend-02 {
  background-image: url(/lp/2024_coffee/images/blend_bg.svg);
  background-repeat: no-repeat;
  padding-top: 73px;
  padding-bottom: 67px;
  border-radius: 15px;
  z-index: 1;
}
@media screen and (max-width: 1535px) {
  .section-brown .blend .blend-02 {
    padding-top: 55px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  .section-brown .blend .blend-02 {
    padding-top: 12.2vw;
    padding-bottom: 11.2vw;
  }
}
.section-brown .blend .blend-02 .blend-02-text {
  padding-bottom: 40px;
}
@media screen and (max-width: 1535px) {
  .section-brown .blend .blend-02 .blend-02-text {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 600px) {
  .section-brown .blend .blend-02 .blend-02-text {
    padding-bottom: 6.6vw;
  }
}
.section-brown .blend .blend-02 .blend-02-text .blend-02-text-img {
  top: 0;
  left: 0;
}
.section-brown .blend .blend-02 .blend-02-text .blend-02-acce {
  width: 10.06%;
  bottom: -12.5%;
  left: 13.4%;
}
.section-brown .blend .blend-02 .blend-02-graph .blend-02-abs {
  top: 0;
  left: 0;
}
.section-brown .blend-menu {
  margin-top: 148px;
  padding-bottom: 150px;
}
@media screen and (max-width: 1535px) {
  .section-brown .blend-menu {
    margin-top: 114px;
    padding-bottom: 115px;
  }
}
@media screen and (max-width: 600px) {
  .section-brown .blend-menu {
    margin-top: 26vw;
    padding-bottom: 26vw;
  }
}
.section-brown .blend-menu .blend-menu-title {
  z-index: 1;
}
.section-brown .blend-menu .blend-hot {
  z-index: 1;
  margin-top: -25px;
}
@media screen and (max-width: 1535px) {
  .section-brown .blend-menu .blend-hot {
    margin-top: -20px;
  }
}
@media screen and (max-width: 600px) {
  .section-brown .blend-menu .blend-hot {
    margin-top: -4.2vw;
  }
}
.section-brown .blend-menu .blend-hot .blend-hot-img {
  z-index: 1;
}
.section-brown .blend-menu .blend-hot .blend-hot-title {
  top: 39%;
  left: 0;
}
.section-brown .blend-menu .blend-hot .blend-hot-yuge {
  width: 27.2%;
  top: -46%;
  left: 21%;
}
.section-brown .blend-menu .blend-ice {
  margin-top: -60px;
  z-index: 2;
}
@media screen and (max-width: 1535px) {
  .section-brown .blend-menu .blend-ice {
    margin-top: -45px;
  }
}
@media screen and (max-width: 600px) {
  .section-brown .blend-menu .blend-ice {
    margin-top: -9.4vw;
  }
}
.section-brown .blend-menu .blend-ice .blend-ice-title {
  top: 47.5%;
  left: 0;
}

/* SECTION-YELLOW
===============================*/
.section-yellow {
  padding-bottom: 294px;
  overflow-x: clip;
  background: linear-gradient(to top, #f0e0bd 0%, #f2ede6 7%, #f2ede6 40%, #f2ede6 75%, #f0e0bd 100%);
}
@media screen and (max-width: 1535px) {
  .section-yellow {
    padding-bottom: 221px;
  }
}
@media screen and (max-width: 600px) {
  .section-yellow {
    padding-bottom: 49vw;
  }
}
.section-yellow .recommend .recommend-01 {
  margin-top: 43px;
  margin-bottom: 172px;
}
@media screen and (max-width: 1535px) {
  .section-yellow .recommend .recommend-01 {
    margin-top: 32px;
    margin-bottom: 130px;
  }
}
@media screen and (max-width: 600px) {
  .section-yellow .recommend .recommend-01 {
    margin-top: 10.1vw;
    margin-bottom: 28.8vw;
  }
}
.section-yellow .recommend .recommend-01 .recommend-01-p {
  width: 100%;
}
.section-yellow .recommend .cp {
  width: 100%;
  margin: 0 auto;
}

/* SECTION-BEIGE
===============================*/
.section-beige {
  padding-bottom: 314px;
  background: linear-gradient(to top, #f0e0bd 0%, #f2ede6 7%, #f2ede6 40%, #f2ede6 75%, #eedebb 91%);
  overflow-x: clip;
}
@media screen and (max-width: 1535px) {
  .section-beige {
    padding-bottom: 237px;
  }
}
@media screen and (max-width: 600px) {
  .section-beige {
    padding-bottom: 52.8vw;
  }
}
.section-beige .trading .trading-title .trading-h2 {
  top: 0;
  left: 0;
  z-index: 10;
}
.section-beige .trading .trading-title .trading-title-gaus {
  bottom: -40%;
  right: 0;
  z-index: 10;
}
.section-beige .trading .trading-01 {
  position: relative;
  z-index: 11;
}
.section-beige .trading .trading-01 .trading-01-h3 .trading-01-img {
  top: 0;
  left: 0;
}
.section-beige .trading .trading-01 .trading-01-p {
  margin: 0 auto;
}
.section-beige .trading .trading-02 {
  position: relative;
  z-index: 1;
}
.section-beige .trading .trading-02 .trading-02-h3 {
  position: relative;
  z-index: 1;
}
.section-beige .trading .trading-02 .trading-02-h3 .trading-02-img {
  top: 0;
  left: 0;
}
.section-beige .trading .trading-02 .trading-02-p {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.section-beige .trading .trading-03 {
  display: flex;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.section-beige .trading .trading-03 .trading-03-h4 {
  width: 41.066%;
}
.section-beige .trading .trading-03 .trading-03-h4 .trading-03-h4-img {
  top: 0;
  left: 0;
}
.section-beige .trading .trading-03 .trading-03-p {
  width: 58.93%;
}
.section-beige .trading .trading-04 {
  position: relative;
  z-index: 1;
}
.section-beige .trading .trading-04 .trading-04-h3 .trading-04-h3-img {
  top: 0;
  left: 0;
}
.section-beige .trading .trading-04 .trading-04-p {
  margin: 0 auto;
}
.section-beige .trading .trading-05 {
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* SECTION-GREEN
===============================*/
.section-green {
  background: linear-gradient(to top, #f2ede6 10%, #d9e6d4 23%, #b7d7a3 40%, #b7d7a3 60%, #d9e6d4 80%, #f2ede6 85%);
  overflow-x: clip;
}
.section-green .roasting .roasting-title {
  overflow-x: clip;
}
.section-green .roasting .roasting-title .roasting-h2 {
  top: 0;
  left: 0;
}
.section-green .roasting .roasting-title .roasting-gaus {
  width: 50%;
  bottom: -20%;
  left: -0.1%;
}
.section-green .roasting .roasting-inner {
  margin: 0 auto;
}
.section-green .roasting .roasting-inner .roasting-01 .roasting-01-h3-img {
  top: 0;
  left: 0;
}
.section-green .roasting .roasting-inner .roasting-01 .roasting-01-p {
  margin: 0 auto;
}
.section-green .roasting .roasting-inner .roasting-02 {
  display: flex;
}
.section-green .roasting .roasting-inner .roasting-02 .roasting-02-h4 {
  width: 41.07%;
}
.section-green .roasting .roasting-inner .roasting-02 .roasting-02-p {
  width: 58.93%;
}
.section-green .fresh-h3 {
  margin-top: 358px;
}
@media screen and (max-width: 1535px) {
  .section-green .fresh-h3 {
    margin-top: 224px;
  }
}
@media screen and (max-width: 600px) {
  .section-green .fresh-h3 {
    margin-top: 56vw;
  }
}
.section-green .fresh-h3 .fresh-h3-img {
  top: 0;
  left: 0;
}
.section-green .fresh-p {
  bottom: 15%;
  left: 13.5%;
  width: 75%;
  z-index: 10;
}
.section-green .green-bottom {
  bottom: 0;
  left: 0;
}

/* 押さえの店舗検索
============================*/
.search {
  background-color: #352317;
  margin-top: -1px;
  padding-top: 105px;
  padding-bottom: 248px;
}
@media screen and (max-width: 1535px) {
  .search {
    padding-top: 79px;
    padding-bottom: 220px;
  }
}
@media screen and (max-width: 600px) {
  .search {
    padding-top: 17.6vw;
    padding-bottom: 49vw;
  }
}
.search .search-anker {
  width: 56.55%;
  margin: 0 auto;
  display: block;
}/*# sourceMappingURL=style.css.map */