@charset "UTF-8";
html {
  font-size: 100%;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #333333;
  background-color: #FDF5EC;
}
@media (max-width: 500px) {
  html {
    font-size: 87.5%;
  }
}

body {
  min-height: 100vh;
  position: relative;
}

a {
  text-decoration: none;
  color: #333333;
  display: inline-block;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

li {
  list-style: none;
}

address {
  font-style: normal;
}

.logo-wrapper {
  position: fixed;
  top: 10px;
  left: 20px;
  display: flex;
  z-index: 110;
  gap: 16px;
}

.acai-logo,
.greek-logo {
  width: auto;
}
.acai-logo img,
.greek-logo img {
  height: 80px;
}
@media (max-width: 768px) {
  .acai-logo img,
  .greek-logo img {
    height: clamp(60px, 60px + 20 * (100vw - 500px) / 268, 80px);
  }
}
@media (max-width: 500px) {
  .acai-logo img,
  .greek-logo img {
    height: 40px;
  }
}

.home h2 {
  font-size: 6rem;
  font-family: "Darumadrop One", sans-serif;
  text-align: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
@media (max-width: 500px) {
  .home h2 {
    font-size: 4rem;
  }
}
.home h2 span {
  font-size: 1.5rem;
  font-weight: normal;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-top: -10px;
}
@media (max-width: 500px) {
  .home h2 span {
    font-size: 1.42rem;
  }
}
.home .sub-section {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Zen Maru Gothic", sans-serif;
}
.home .section-lead {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 500px) {
  .home .section-lead {
    margin-bottom: 40px;
  }
}

.wrapper {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 2%;
}

.bg-top {
  position: relative;
  padding-bottom: 244px;
  overflow-x: hidden;
}
@media (max-width: 500px) {
  .bg-top {
    padding-bottom: 140px;
  }
}
.bg-top::before {
  content: "";
  position: absolute;
  bottom: 0;
  z-index: -1;
  height: calc(100% - 150px);
  width: 100%;
  background-image: url(../img/bg-1.webp);
  background-size: cover;
  background-position: top;
}
.bg-center {
  background-image: url(../img/bg-2.webp);
  background-size: cover;
  background-position: top;
  padding-top: 160px;
  overflow-x: hidden;
}
@media (max-width: 500px) {
  .bg-center {
    padding-top: 80px;
  }
}
.bg-illustration li {
  position: absolute;
  z-index: -1;
}

.btn {
  border: 1px solid #811F51;
  border-radius: 50px;
  color: #811F51;
  display: flex;
  align-items: center;
  gap: 25px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 50px;
  transition: all 0.5s;
}
@media (max-width: 500px) {
  .btn {
    padding: 15px 35px;
  }
}
.btn::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #811F51;
  border-right: 1px solid #811F51;
  transform: rotate(45deg);
  transition: all 0.5s;
  flex-shrink: 0;
}
.btn:hover {
  background-color: #811F51;
  color: #ffffff;
}
.btn:hover::after {
  transform: translateX(5px) rotate(45deg);
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}

.wave {
  width: 100%;
}

.br-spc {
  display: none;
}
@media (max-width: 1022px) {
  .br-spc {
    display: block;
    height: 0;
  }
}
.br-tb {
  display: none;
}
@media (max-width: 768px) {
  .br-tb {
    display: block;
    height: 0;
  }
}
.br-sp {
  display: none;
}
@media (max-width: 500px) {
  .br-sp {
    display: block;
    height: 0;
  }
}

.lower {
  margin-bottom: 244px;
}

.fadein {
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.5s;
}

.jump {
  animation: jump 2s infinite ease;
}

.shout {
  animation: shout 2s infinite ease;
}

.swaying {
  animation: swaying 3s infinite ease;
}

@keyframes mainvisual {
  0% {
    opacity: 0;
    transform: scale(1.03);
  }
  6% {
    opacity: 1;
    transform: scale(1);
  }
  16% {
    opacity: 1;
    transform: scale(1);
  }
  22% {
    opacity: 0;
    transform: scale(1.03);
  }
  100% {
    opacity: 0;
    transform: scale(1.03);
  }
}
@keyframes click {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes tab {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes new-mene-left {
  0% {
    z-index: 1;
  }
  50% {
    z-index: 2;
    transform: translateY(100px) rotate(-5deg) scale(1.1);
  }
  100% {
    z-index: 2;
    transform: translateY(100px) rotate(-5deg) scale(1);
  }
}
@keyframes new-mene-center {
  0% {
    z-index: 1;
  }
  50% {
    z-index: 2;
    transform: scale(1.1);
  }
  100% {
    z-index: 2;
    transform: scale(1);
  }
}
@keyframes new-mene-right {
  0% {
    z-index: 1;
  }
  50% {
    z-index: 2;
    transform: translateY(100px) rotate(5deg) scale(1.1);
  }
  100% {
    z-index: 2;
    transform: translateY(100px) rotate(5deg) scale(1);
  }
}
@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll {
  0% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(5px) rotate(45deg);
  }
  100% {
    transform: translateY(0) rotate(45deg);
  }
}
@keyframes waveMove-top {
  0% {
    d: path("M1269 0.547341C1203.79 3.37534 1156.17 11.3113 1060 35.3803C998.653 50.7333 967.851 57.2863 936 61.7633C899.385 66.9093 885.295 67.7953 823 68.8733C793.025 69.3913 760.175 70.2833 750 70.8543C661.238 75.8393 590.498 85.7133 474 109.38C417.695 120.818 357.312 131.506 335 133.983C320.213 135.624 282.814 135.626 268 133.986C233.016 130.114 205.903 122.998 149.5 102.887C98.059 84.5463 78.597 78.6653 53.5 73.8823C39.884 71.2863 18.055 68.9053 7.75 68.8913L0 68.8803V114.88V160.88H720H1440V85.3993V9.91834L1437.75 9.41434C1433.79 8.52834 1401.11 5.02434 1382 3.43734C1345.07 0.371341 1299.78 -0.786659 1269 0.547341Z");
  }
  50% {
    d: path("M1269 12C1200 18 1150 28 1060 50C995 66 960 70 936 72C895 75 880 76 823 78C790 79 760 82 750 84C660 90 590 96 474 120C415 132 355 138 335 140C318 142 282 140 268 137C232 132 205 118 149.5 96C98 75 78 70 53.5 66C38 63 18 58 7.75 56L0 55V114.88V160.88H720H1440V85.3993V22L1437.75 21C1430 18 1400 13 1382 11C1345 7 1300 7 1269 12Z");
  }
  100% {
    d: path("M1269 0.547341C1203.79 3.37534 1156.17 11.3113 1060 35.3803C998.653 50.7333 967.851 57.2863 936 61.7633C899.385 66.9093 885.295 67.7953 823 68.8733C793.025 69.3913 760.175 70.2833 750 70.8543C661.238 75.8393 590.498 85.7133 474 109.38C417.695 120.818 357.312 131.506 335 133.983C320.213 135.624 282.814 135.626 268 133.986C233.016 130.114 205.903 122.998 149.5 102.887C98.059 84.5463 78.597 78.6653 53.5 73.8823C39.884 71.2863 18.055 68.9053 7.75 68.8913L0 68.8803V114.88V160.88H720H1440V85.3993V9.91834L1437.75 9.41434C1433.79 8.52834 1401.11 5.02434 1382 3.43734C1345.07 0.371341 1299.78 -0.786659 1269 0.547341Z");
  }
}
@keyframes waveMove-bottom {
  0% {
    d: path("M0 0H1440V70C1440 70 1320 20 1180 35C1040 50 920 120 760 110C600 100 520 70 360 80C240 90 120 80 0 50V0Z");
  }
  50% {
    d: path("M0 0H1440V95C1440 95 1320 60 1180 75C1040 90 900 150 760 90C620 30 520 110 360 95C240 120 120 90 0 70V0Z");
  }
  100% {
    d: path("M0 0H1440V70C1440 70 1320 20 1180 35C1040 50 920 120 760 110C600 100 520 70 360 80C240 90 120 80 0 50V0Z");
  }
}
@keyframes jump {
  0% {
    transform: translateY(0);
  }
  18% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-2px);
  }
  22% {
    transform: translateY(0);
  }
  45% {
    transform: translateY(0);
  }
  47% {
    transform: translateY(-5px);
  }
  49% {
    transform: translateY(0);
  }
}
@keyframes shout {
  0% {
    transform: translateX(0);
  }
  18% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-2px);
  }
  22% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(0);
  }
  47% {
    transform: translateX(-5px);
  }
  49% {
    transform: translateX(0);
  }
}
@keyframes swaying {
  0% {
    transform: rotate(-5deg);
  }
  25% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100px;
}
header #toggle {
  width: 50px;
  height: 40px;
  position: fixed;
  top: 34px;
  right: 10%;
  z-index: 999;
}
@media (max-width: 768px) {
  header #toggle {
    margin-right: 20px;
    top: 28px;
  }
}
@media (max-width: 500px) {
  header #toggle {
    display: none;
  }
}
header #toggle span {
  position: absolute;
  left: 0;
  background-color: #ffffff;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  transform: translateY(-50%);
  box-shadow: 0 0 4px #230e05;
  transition: all 0.5s;
}
header #toggle span:nth-child(1) {
  top: 0;
}
header #toggle span:nth-child(2) {
  top: 50%;
}
header #toggle span:nth-child(3) {
  top: 100%;
}
header nav {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../img/menu-bg.webp);
  background-size: cover;
  transition: all 0.5s;
}
@media (max-width: 500px) {
  header nav {
    height: calc(100vh - 55px);
  }
}
header nav ul {
  width: 30%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  header nav ul {
    width: 50%;
  }
}
@media (max-width: 500px) {
  header nav ul {
    width: 70%;
  }
}
header nav ul li:not(:last-child) {
  border-bottom: 1px dashed #811F51;
}
header nav ul li a {
  font-size: 1.25rem;
  padding-block: 16px;
  width: 100%;
  transition: all 0.5s;
}
@media (max-width: 500px) {
  header nav ul li a {
    font-size: 1.14rem;
    padding-block: 16px;
  }
}
header nav ul li a:hover {
  color: #811F51;
}
header nav ul li.instagram {
  width: initial;
  margin-top: 30px;
}
@media (max-width: 500px) {
  header nav ul li.instagram {
    margin-top: 40px;
    text-align: center;
  }
}
header nav ul li.instagram a {
  color: #811F51;
  border: 1px solid #811F51;
  border-radius: 20px;
  width: initial;
  padding: 20px;
  transition: all 0.5s;
}
@media (max-width: 500px) {
  header nav ul li.instagram a {
    padding: 10px 20px;
  }
}
header nav ul li.instagram a:hover {
  background-color: #811F51;
  color: #FDF5EC;
}
header nav ul li.instagram a .bi-instagram {
  margin-right: 8px;
}
header nav .bg-text {
  width: 152px;
  position: absolute;
  bottom: 30px;
  right: 30px;
}
@media (max-width: 500px) {
  header nav .bg-text {
    width: 95px;
  }
}
header.open {
  z-index: 999;
}
header.open #toggle span {
  box-shadow: none;
  background-color: #811F51;
}
header.open #toggle span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
header.open #toggle span:nth-child(2) {
  opacity: 0;
}
header.open #toggle span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
header.open nav {
  opacity: 1;
  visibility: visible;
}

footer {
  position: relative;
  z-index: 1;
  background-color: #72586B;
  padding-block: 100px 10px;
}
@media (max-width: 500px) {
  footer {
    padding-top: initial;
    padding-bottom: 85px;
  }
}
footer .shape {
  width: 100%;
  position: absolute;
  top: -160px;
  z-index: -1;
}
@media (max-width: 500px) {
  footer .shape {
    top: -114px;
  }
}
footer .footer-logo {
  display: flex;
  gap: 40px;
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  footer .footer-logo {
    gap: 24px;
  }
}
@media (max-width: 500px) {
  footer .footer-logo {
    gap: 16px;
    top: -140px;
  }
}
footer .footer-logo li {
  width: 150px;
}
@media (max-width: 768px) {
  footer .footer-logo li {
    width: 100px;
  }
}
@media (max-width: 500px) {
  footer .footer-logo li {
    width: 80px;
  }
}
footer .footer-logo .swaying:nth-child(2) {
  animation-delay: -0.75s;
}
footer nav.pc {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}
@media (max-width: 500px) {
  footer nav.pc {
    display: none;
  }
}
footer nav.pc ul:not(:first-child) {
  border-left: 1px solid #ffffff;
  padding-left: 36px;
}
footer nav.pc ul:not(:last-child) {
  padding-right: 36px;
}
footer nav.sp {
  display: none;
}
@media (max-width: 500px) {
  footer nav.sp {
    display: flex;
    justify-content: center;
    gap: 37px;
    margin-bottom: 40px;
  }
}
footer nav.sp .nav-left ul:nth-child(2) {
  border-top: 1px solid #ffffff;
  padding-top: 20px;
  margin-top: 20px;
}
footer nav li a {
  color: #ffffff;
  transition: all 0.5s;
}
footer nav li a:hover {
  opacity: 0.5;
}
footer nav li:not(:first-child) {
  margin-top: 20px;
}
footer p {
  text-align: center;
  color: #ffffff;
}
footer.lp {
  background-color: #F1E0CC;
  padding-block: 11.5px;
}
footer.lp ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
footer.lp ul li {
  width: 60px;
}
footer.lp p {
  color: #4B4B4B;
  font-family: "Zen Maru Gothic", sans-serif;
}
footer.footer-fc {
  background-color: #F1E9EE;
}
footer .fixd-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 150;
  width: 100%;
  height: 55px;
  background-color: #FFFDFD;
  box-shadow: 0 -3px 4px rgba(0, 0, 0, 0.2196078431);
}
@media (max-width: 500px) {
  footer .fixd-nav {
    display: block;
  }
}
footer .fixd-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding-inline: 20px;
  height: 100%;
}
footer .fixd-nav ul li {
  width: 50px;
  margin-top: initial;
  text-align: center;
}
footer .fixd-nav ul li a {
  width: 100%;
}
footer .fixd-nav ul li .icon {
  text-align: center;
}
footer .fixd-nav ul li img {
  width: auto;
  height: 25px;
}
footer .fixd-nav ul li p {
  color: #811F51;
  font-size: 0.875rem;
}
footer .fixd-nav ul #footer-toggle {
  position: relative;
  width: 30px;
  height: 27px;
}
footer .fixd-nav ul #footer-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #811F51;
  transition: all 0.5s;
}
footer .fixd-nav ul #footer-toggle span:nth-child(1) {
  top: 0;
}
footer .fixd-nav ul #footer-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
footer .fixd-nav ul #footer-toggle span:nth-child(3) {
  bottom: 0;
}
footer.open .fixd-nav ul #footer-toggle span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}
footer.open .fixd-nav ul #footer-toggle span:nth-child(2) {
  opacity: 0;
}
footer.open .fixd-nav ul #footer-toggle span:nth-child(3) {
  bottom: initial;
  top: 50%;
  transform: rotate(-45deg);
}

.footer-store {
  background-color: initial;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  padding-bottom: initial;
}
@media (max-width: 768px) {
  .footer-store {
    width: 33.3333333333%;
  }
}
@media (max-width: 500px) {
  .footer-store {
    width: 100%;
  }
}
.footer-store p {
  color: #333333;
}

.mv-pct {
  height: 100vh;
}
.mv-pct li {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  opacity: 0;
  animation: mainvisual 25s infinite ease-in-out;
}
.mv-pct li img {
  height: 100vh;
}
.mv-pct li:nth-child(1) {
  animation-delay: 0s;
}
.mv-pct li:nth-child(2) {
  animation-delay: 5s;
}
.mv-pct li:nth-child(3) {
  animation-delay: 10s;
}
.mv-pct li:nth-child(4) {
  animation-delay: 15s;
}
.mv-pct li:nth-child(5) {
  animation-delay: 20s;
}
.mv .inner {
  height: 100vh;
  width: 100%;
  position: relative;
}
.mv .inner h1 {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  text-align: right;
  color: #ffffff;
  font-size: 2.25rem;
  text-shadow: 0 0 4px #230e05;
}
.mv .randomAnime {
  visibility: hidden;
}
.mv .random-line {
  display: block;
}

.bg-top .swiper-slide {
  position: relative;
  transform: scale(0.8);
  transition: all 0.5s ease;
}
.bg-top .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.5;
  visibility: visible;
  transform: all 0.5s ease;
}
.bg-top .swiper-slide img {
  height: auto;
}
.bg-top .swiper-slide-active {
  transform: scale(1);
}
.bg-top .swiper-slide-active::before {
  opacity: 0;
  visibility: hidden;
}
.bg-top .swiper-button-prev, .bg-top .swiper-button-next {
  width: 25%;
  height: 100%;
  top: 0;
  cursor: none;
}
@media (max-width: 500px) {
  .bg-top .swiper-button-prev, .bg-top .swiper-button-next {
    width: 30px;
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.bg-top .swiper-button-prev::after, .bg-top .swiper-button-next::after {
  display: none;
}
@media (max-width: 500px) {
  .bg-top .swiper-button-prev::after, .bg-top .swiper-button-next::after {
    display: block;
    font-size: 12px;
    color: #333333;
    width: 100%;
    height: 100%;
    border: 1px solid #333333;
    border-radius: 50%;
    background-color: #ffffff;
    line-height: 30px;
  }
}
.bg-top .swiper-button-prev {
  left: 0;
}
@media (max-width: 500px) {
  .bg-top .swiper-button-prev {
    left: 20px;
  }
}
.bg-top .swiper-button-next {
  right: 0;
}
@media (max-width: 500px) {
  .bg-top .swiper-button-next {
    right: 20px;
  }
}
.bg-top .swiper-pagination {
  position: initial;
  margin-top: 16px;
  display: flex;
  justify-content: center;
}
@media (max-width: 500px) {
  .bg-top .swiper-pagination {
    margin-top: 4px;
  }
}
.bg-top .swiper-pagination-bullet {
  width: auto;
  height: auto;
  background: transparent;
  opacity: 0.4;
  color: #999;
  font-size: 1rem;
  width: 30px;
  height: 30px;
  line-height: 30px;
  transition: all 0.5s;
}
.bg-top .swiper-pagination-bullet-active {
  opacity: 1;
  color: #ffffff;
  font-weight: bold;
  background-color: #811F51;
  border-radius: 50%;
}
.bg-top .swiper .cursor-left, .bg-top .swiper .cursor-right {
  position: fixed;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.bg-top .swiper .cursor-left.is-active, .bg-top .swiper .cursor-right.is-active {
  opacity: 1;
}

.first-guide {
  background-image: url(../img/welcome-visual02.webp);
  background-size: cover;
  background-position: center;
  margin-top: 30px;
  height: 520px;
  position: relative;
}
@media (max-width: 500px) {
  .first-guide {
    background-position: 60% bottom;
  }
}
.first-guide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(254, 247, 239, 0.93) 21%, rgba(254, 247, 239, 0.69) 80%, rgba(254, 247, 239, 0) 100%);
}
@media (max-width: 500px) {
  .first-guide::before {
    background: linear-gradient(90deg, rgba(254, 247, 239, 0.93) 10%, rgba(254, 247, 239, 0.69) 50%, rgba(254, 247, 239, 0) 100%);
  }
}
.first-guide .lead {
  font-size: 3rem;
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.5019607843);
}
@media (max-width: 768px) {
  .first-guide .lead {
    top: 110px;
    transform: initial;
    font-size: 2rem;
  }
}
@media (max-width: 500px) {
  .first-guide .lead {
    top: 45px;
  }
}
.first-guide .lead span {
  color: #811F51;
}
.first-guide .content {
  position: absolute;
  bottom: -40px;
  right: 5%;
  background-color: #ffffff;
  border: 1px solid #811F51;
  border-radius: 50%;
  text-align: center;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 270px;
  color: #811F51;
}
@media (max-width: 768px) {
  .first-guide .content {
    border-radius: 10px;
    padding-block: 20px;
    width: 70%;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    aspect-ratio: initial;
  }
}
@media (max-width: 500px) {
  .first-guide .content {
    width: 90%;
    bottom: 14px;
    padding-block: 16px;
  }
}
@media (max-width: 768px) {
  .first-guide .content .br-pc {
    display: none;
  }
}
.first-guide .content .text-pc, .first-guide .content .text-tb {
  position: absolute;
}
.first-guide .content .text-pc {
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  filter: drop-shadow(2px 2px 8px #ffffff);
}
@media (max-width: 768px) {
  .first-guide .content .text-pc {
    display: none;
  }
}
.first-guide .content .text-tb {
  display: none;
}
@media (max-width: 768px) {
  .first-guide .content .text-tb {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    top: -25px;
    left: 0;
    text-shadow: 2px 2px 8px #ffffff;
  }
}
.first-guide h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #811F51;
  margin-bottom: 16px;
}
@media (max-width: 500px) {
  .first-guide h3 {
    margin-bottom: 8px;
  }
}
.first-guide .btn {
  margin-top: 24px;
  padding: 10px 30px;
}
@media (max-width: 500px) {
  .first-guide .btn {
    margin-top: 16px;
  }
}

#menu {
  position: relative;
  padding-bottom: 80px;
}
@media (max-width: 500px) {
  #menu {
    padding-bottom: 60px;
  }
}
#menu::before {
  content: "";
  position: absolute;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% - 84px);
  background-color: #FFEAF5;
}
@media (max-width: 500px) {
  #menu::before {
    height: calc(100% - 50px);
  }
}
#menu h2 {
  color: #811F51;
}
#menu .wrapper {
  max-width: 1042px;
  display: flex;
  gap: clamp(20px, 20px + 30 * (100vw - 768px) / 232, 50px);
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  #menu .wrapper {
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  #menu .wrapper {
    margin-bottom: 40px;
  }
}
#menu .wrapper li {
  border-radius: 10px;
  width: 33.3333333333%;
  height: 350px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #menu .wrapper li {
    width: 70%;
    height: 200px;
  }
}
@media (max-width: 500px) {
  #menu .wrapper li {
    width: 100%;
    height: 136px;
  }
}
#menu .wrapper li:nth-child(1) {
  background: linear-gradient(#811F51, rgba(129, 31, 82, 0.8));
}
#menu .wrapper li:nth-child(2) {
  background: linear-gradient(#1899B8, rgba(24, 152, 184, 0.8));
}
@media (max-width: 768px) {
  #menu .wrapper li:nth-child(2) {
    margin-left: auto;
  }
}
#menu .wrapper li:nth-child(3) {
  background: linear-gradient(#000807, rgba(0, 8, 7, 0.8));
}
#menu .wrapper li:nth-child(3) .menu-pct {
  width: 175px;
  bottom: -30px;
  left: -10px;
}
@media (max-width: 768px) {
  #menu .wrapper li:nth-child(3) .menu-pct {
    left: initial;
    bottom: initial;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 500px) {
  #menu .wrapper li:nth-child(3) .menu-pct {
    width: 128px;
    right: 38px;
  }
}
#menu .wrapper li h3 {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 6px + 14 * (100vw - 768px) / 232, 20px);
  font-size: 2rem;
}
#menu .wrapper li h3 span {
  font-size: 1rem;
}
#menu .wrapper li .menu-pct {
  width: 263px;
  position: absolute;
  bottom: -50px;
  left: -40px;
  z-index: -1;
}
@media (max-width: 768px) {
  #menu .wrapper li .menu-pct {
    left: initial;
    bottom: initial;
    right: 0;
    top: 27%;
  }
}
@media (max-width: 500px) {
  #menu .wrapper li .menu-pct {
    width: 197px;
    top: 50%;
    transform: translateY(-50%);
  }
}
#menu .wrapper li .arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border: 1px solid #f2f2f2;
  border-radius: 50%;
  transition: all 0.5s;
}
#menu .wrapper li .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-75%, -50%) rotate(45deg);
  width: 18px;
  height: 18px;
  border-top: 1px solid #f2f2f2;
  border-right: 1px solid #f2f2f2;
}
#menu .wrapper li a {
  color: #f2f2f2;
  width: 100%;
  height: 100%;
  padding-block: clamp(16px, 16px + 18 * (100vw - 768px) / 232, 34px);
  padding-inline: clamp(16px, 16px + 14 * (100vw - 768px) / 232, 30px);
  transition: all 0.5s;
}
#menu .wrapper li a:hover {
  opacity: 0.5;
}
#menu .wrapper li a:hover .arrow {
  right: 8px;
}
#menu .btn {
  margin-inline: auto;
}
#menu .bg-illustration li:nth-child(1) {
  width: 398px;
  top: 40px;
  left: 0;
}
@media (max-width: 768px) {
  #menu .bg-illustration li:nth-child(1) {
    width: 278px;
    top: 100px;
  }
}
@media (max-width: 500px) {
  #menu .bg-illustration li:nth-child(1) {
    width: 210px;
    top: 60px;
    left: -80px;
  }
}
#menu .bg-illustration li:nth-child(2) {
  width: 332px;
  bottom: -140px;
  right: 5%;
}
@media (max-width: 768px) {
  #menu .bg-illustration li:nth-child(2) {
    width: 278px;
    bottom: 100px;
    right: 0;
  }
}
@media (max-width: 500px) {
  #menu .bg-illustration li:nth-child(2) {
    width: 131px;
    bottom: -50px;
    right: -30px;
  }
}

#new-menu {
  position: relative;
  padding-bottom: 63px;
  margin-top: -85px;
  overflow-x: hidden;
}
@media (max-width: 500px) {
  #new-menu {
    padding-bottom: 40px;
  }
}
#new-menu::before {
  content: "";
  position: absolute;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% - 84px);
  background-color: #DEEDEE;
}
@media (max-width: 500px) {
  #new-menu::before {
    height: calc(100% - 60px);
  }
}
#new-menu h2 {
  color: #1899B8;
}
#new-menu .wrapper {
  display: flex;
  margin-bottom: 145px;
}
@media (max-width: 768px) {
  #new-menu .wrapper {
    gap: 40px;
    max-width: initial;
    overflow-x: scroll;
    padding-top: 30px;
  }
}
@media (max-width: 500px) {
  #new-menu .wrapper {
    margin-bottom: 40px;
  }
}
#new-menu li {
  width: 33.3333333333%;
  border: 1px solid #333333;
  background-color: #ffffff;
  border-radius: 30px;
  padding: 30px 40px;
  position: relative;
}
@media (max-width: 768px) {
  #new-menu li {
    width: 350px;
    flex-shrink: 0;
  }
}
@media (max-width: 500px) {
  #new-menu li {
    width: 250px;
    padding: 30px 10px;
  }
}
#new-menu li .new-menu-pct {
  width: 100%;
  margin-bottom: 24px;
}
#new-menu li .new-menu-pct img {
  height: 250px;
  border-radius: 20px;
}
@media (max-width: 500px) {
  #new-menu li .new-menu-pct img {
    height: 150px;
  }
}
#new-menu li:nth-child(1) {
  transform: translateY(100px) rotate(-5deg);
}
@media (max-width: 768px) {
  #new-menu li:nth-child(1) {
    transform: initial;
  }
}
#new-menu li:nth-child(1):hover {
  animation: new-mene-left 0.5s ease;
}
@media (max-width: 500px) {
  #new-menu li:nth-child(1):hover {
    animation: none;
  }
}
@media (max-width: 768px) {
  #new-menu li:nth-child(2) {
    transform: initial;
  }
}
#new-menu li:nth-child(2):hover {
  animation: new-mene-center 0.5s ease;
}
@media (max-width: 500px) {
  #new-menu li:nth-child(2):hover {
    animation: none;
  }
}
#new-menu li:nth-child(3) {
  transform: translateY(100px) rotate(5deg);
}
@media (max-width: 768px) {
  #new-menu li:nth-child(3) {
    transform: initial;
  }
}
#new-menu li:nth-child(3):hover {
  animation: new-mene-right 0.5s ease;
}
@media (max-width: 500px) {
  #new-menu li:nth-child(3):hover {
    animation: none;
  }
}
#new-menu li h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}
#new-menu li .cost {
  font-weight: 600;
  margin-bottom: 20px;
}
#new-menu li .new-icon {
  width: 80px;
  position: absolute;
  top: -30px;
  left: -10px;
}
#new-menu li .new-icon p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  color: #ffffff;
}
#new-menu .btn {
  color: #1899B8;
  border: 1px solid #1899B8;
  margin-inline: auto;
}
#new-menu .btn::after {
  border-top: 1px solid #1899B8;
  border-right: 1px solid #1899B8;
}
#new-menu .btn:hover {
  color: #ffffff;
  background-color: #1899B8;
}
#new-menu .btn:hover::after {
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
#new-menu .bg-illustration {
  width: 300px;
  position: absolute;
  top: 130px;
  left: -110px;
  z-index: -1;
}

#ranking {
  text-align: center;
}
#ranking h2 {
  color: #811F51;
  margin-top: -40px;
}
@media (max-width: 500px) {
  #ranking h2 {
    margin-top: -30px;
  }
}
#ranking .tab {
  display: flex;
}
#ranking .tab li {
  width: 33.3333333333%;
  border-radius: 20px 20px 0 0;
  opacity: 0.5;
}
#ranking .tab li a {
  color: #ffffff;
  font-size: 1.25rem;
  font-family: "Darumadrop One", sans-serif;
  padding-block: 14px;
  width: 100%;
  height: 100%;
}
#ranking .tab li:nth-child(1) {
  background-color: #811F51;
}
#ranking .tab li:nth-child(2) {
  background-color: #1899B8;
}
#ranking .tab li:nth-child(3) {
  background-color: #A0683B;
}
#ranking .tab li.active {
  opacity: 1;
}
#ranking .tab-item {
  padding-block: 89px 14px;
  padding-inline: clamp(20px, 20px + 93 * (100vw - 768px) / 432, 113px);
  display: none;
  opacity: 0;
}
@media (max-width: 768px) {
  #ranking .tab-item {
    padding: 89px 40px 14px;
  }
}
@media (max-width: 500px) {
  #ranking .tab-item {
    padding: 89px 20px 14px;
  }
}
#ranking .tab-item.is-active {
  display: block;
  animation: tab 1s forwards;
}
#ranking .ranking-icon {
  width: 75px;
  margin-inline: auto;
}
#ranking .ranking-item {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding-inline: 20px;
}
@media (max-width: 768px) {
  #ranking .ranking-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-start;
    padding-inline: initial;
  }
}
#ranking .ranking-item .item {
  position: relative;
  z-index: 1;
  padding-bottom: 12px;
}
#ranking .ranking-item .item.swaying {
  grid-column: 1/3;
}
#ranking .ranking-item .item .badge {
  position: absolute;
}
#ranking .ranking-item .item .pct {
  width: 90%;
  margin-inline: auto;
}
@media (max-width: 500px) {
  #ranking .ranking-item .item .pct {
    width: 60%;
  }
}
#ranking .ranking-item .item h3 {
  font-weight: 600;
}
#ranking .ranking-item .item p {
  font-weight: 600;
}
#ranking .ranking-item .item .accent li {
  position: absolute;
  top: -60px;
  width: 105px;
}
@media (max-width: 500px) {
  #ranking .ranking-item .item .accent li {
    top: -42px;
    width: 80px;
  }
}
#ranking .ranking-item .item .accent li:nth-child(1) {
  left: 0;
}
#ranking .ranking-item .item .accent li:nth-child(2) {
  right: 0;
}
#ranking .ranking-item .item:nth-child(1), #ranking .ranking-item .item:nth-child(3) {
  width: 30%;
}
@media (max-width: 768px) {
  #ranking .ranking-item .item:nth-child(1), #ranking .ranking-item .item:nth-child(3) {
    width: 100%;
  }
}
#ranking .ranking-item .item:nth-child(1) .badge, #ranking .ranking-item .item:nth-child(3) .badge {
  width: 80px;
  top: 0;
  left: 0;
}
@media (max-width: 500px) {
  #ranking .ranking-item .item:nth-child(1) .badge, #ranking .ranking-item .item:nth-child(3) .badge {
    width: 50px;
  }
}
@media (max-width: 768px) {
  #ranking .ranking-item .item:nth-child(1) {
    order: 2;
  }
}
#ranking .ranking-item .item:nth-child(2) {
  width: 40%;
  padding-inline: 3%;
}
@media (max-width: 768px) {
  #ranking .ranking-item .item:nth-child(2) {
    width: 100%;
    order: 1;
  }
}
#ranking .ranking-item .item:nth-child(2)::before, #ranking .ranking-item .item:nth-child(2)::after {
  content: "";
  position: absolute;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 90%;
}
@media (max-width: 768px) {
  #ranking .ranking-item .item:nth-child(2)::before, #ranking .ranking-item .item:nth-child(2)::after {
    width: 80%;
  }
}
#ranking .ranking-item .item:nth-child(2)::before {
  bottom: 0;
  height: 70%;
  border-radius: 0 0 20px 20px;
}
#ranking .ranking-item .item:nth-child(2)::after {
  top: 0;
  height: 30%;
  border-radius: 50%/100% 100% 0 0;
}
#ranking .ranking-item .item:nth-child(2) .badge {
  width: 118px;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 500px) {
  #ranking .ranking-item .item:nth-child(2) .badge {
    width: 96px;
  }
}
@media (max-width: 768px) {
  #ranking .ranking-item .item:nth-child(2) .pct {
    width: 50%;
  }
}
#ranking .ranking-item .item:nth-child(2) h3 {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  #ranking .ranking-item .item:nth-child(3) {
    order: 3;
  }
}
#ranking #acai-ranking {
  background-color: #FFEAF5;
}
#ranking #acai-ranking .ranking-item .item:nth-child(2)::before {
  border-left: 5px solid rgba(129, 31, 82, 0.3882352941);
  border-right: 5px solid rgba(129, 31, 82, 0.3882352941);
  border-bottom: 5px solid rgba(129, 31, 82, 0.3882352941);
}
#ranking #acai-ranking .ranking-item .item:nth-child(2)::after {
  border-top: 5px solid rgba(129, 31, 82, 0.3882352941);
  border-left: 5px solid rgba(129, 31, 82, 0.3882352941);
  border-right: 5px solid rgba(129, 31, 82, 0.3882352941);
}
#ranking #acai-ranking h3 {
  color: #811F51;
}
#ranking #greek-ranking {
  background-color: #DEEDEE;
}
#ranking #greek-ranking .ranking-item .item:nth-child(2)::before {
  border-left: 5px solid rgba(24, 152, 184, 0.4);
  border-right: 5px solid rgba(24, 152, 184, 0.4);
  border-bottom: 5px solid rgba(24, 152, 184, 0.4);
}
#ranking #greek-ranking .ranking-item .item:nth-child(2)::after {
  border-top: 5px solid rgba(24, 152, 184, 0.4);
  border-left: 5px solid rgba(24, 152, 184, 0.4);
  border-right: 5px solid rgba(24, 152, 184, 0.4);
}
#ranking #greek-ranking h3 {
  color: #1899B8;
}
#ranking #drink-ranking {
  background-color: #E1CAB3;
}
#ranking #drink-ranking .ranking-item .item:nth-child(2)::before {
  border-left: 5px solid rgba(160, 104, 59, 0.4);
  border-right: 5px solid rgba(160, 104, 59, 0.4);
  border-bottom: 5px solid rgba(160, 104, 59, 0.4);
}
#ranking #drink-ranking .ranking-item .item:nth-child(2)::after {
  border-top: 5px solid rgba(160, 104, 59, 0.4);
  border-left: 5px solid rgba(160, 104, 59, 0.4);
  border-right: 5px solid rgba(160, 104, 59, 0.4);
}
@media (max-width: 768px) {
  #ranking #drink-ranking .ranking-item .item:nth-child(2) .pct img {
    width: auto;
    height: 210px;
  }
}
@media (max-width: 768px) {
  #ranking #drink-ranking .ranking-item .item:nth-child(1) .pct img, #ranking #drink-ranking .ranking-item .item:nth-child(3) .pct img {
    width: auto;
    height: 150px;
  }
}
#ranking #drink-ranking h3 {
  color: #A0683B;
}

.shop {
  display: flex;
  padding-top: 160px;
}
@media (max-width: 768px) {
  .shop {
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  .shop {
    padding-top: 80px;
  }
}
.shop li {
  width: 33.3333333333%;
  text-align: center;
  background-size: cover;
  padding-block: 30.5px;
  padding-inline: clamp(20.5px, 20.5px + 43 * (100vw - 768px) / 262, 63.5px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-position: center;
}
@media (max-width: 768px) {
  .shop li {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .shop li {
    padding: 32px 20px;
  }
}
.shop li h3 {
  font-size: 3rem;
  font-family: "Darumadrop One", sans-serif;
}
.shop li .lead {
  margin-block: 24px 48px;
}
@media (max-width: 500px) {
  .shop li .lead {
    margin-block: 16px 24px;
  }
}
.shop li .content {
  line-height: 30px;
}
.shop li .btn {
  margin-top: 40px;
}
@media (max-width: 500px) {
  .shop li .btn {
    margin-top: 24px;
  }
}
.shop li:nth-child(1) {
  background-image: url(../img/acai-bg.webp);
  color: #ffffff;
}
.shop li:nth-child(1) .btn {
  border: 1px solid #ffffff;
  background-color: #811F51;
  color: #ffffff;
}
.shop li:nth-child(1) .btn::after {
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
.shop li:nth-child(1) .btn:hover {
  border: 1px solid #811F51;
  background-color: #ffffff;
  color: #811F51;
}
.shop li:nth-child(1) .btn:hover::after {
  border-top: 1px solid #811F51;
  border-right: 1px solid #811F51;
}
.shop li:nth-child(2) {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.shop li:nth-child(2)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url(../img/greekyogurt-bg.webp);
  background-size: cover;
  background-position: center;
  transform: scale(1.5);
}
.shop li:nth-child(2) .btn {
  border: 1px solid #ffffff;
  background-color: #1899B8;
  color: #ffffff;
}
.shop li:nth-child(2) .btn::after {
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
.shop li:nth-child(2) .btn:hover {
  border: 1px solid #1899B8;
  background-color: #ffffff;
  color: #1899B8;
}
.shop li:nth-child(2) .btn:hover::after {
  border-top: 1px solid #1899B8;
  border-right: 1px solid #1899B8;
}
.shop li:nth-child(3) {
  background-image: url(../img/tapioka-bg.webp);
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.shop li:nth-child(3)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.52;
}
.shop li:nth-child(3) .btn {
  border: 1px solid #ffffff;
  background-color: #000807;
  color: #ffffff;
}
.shop li:nth-child(3) .btn::after {
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
.shop li:nth-child(3) .btn:hover {
  border: 1px solid #000807;
  background-color: #ffffff;
  color: #000807;
}
.shop li:nth-child(3) .btn:hover::after {
  border-top: 1px solid #000807;
  border-right: 1px solid #000807;
}
.shop li:nth-child(3) h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 40px;
}
@media (max-width: 500px) {
  .shop li:nth-child(3) h4 {
    margin-top: 24px;
  }
}
.shop li:nth-child(3) h4 span {
  font-size: 1rem;
}
.shop li:nth-child(3) .inner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.shop li:nth-child(3) .inner .tapioka-logo {
  width: 100px;
}
.shop li:nth-child(3) .inner p {
  text-align: left;
  font-size: 0.875rem;
}

.loop {
  display: flex;
  animation: loop 20s linear infinite;
  margin-top: 209px;
  position: relative;
  z-index: 1;
}
@media (max-width: 500px) {
  .loop {
    margin-top: 100px;
  }
}
.loop li {
  font-size: 8rem;
  color: #fefbf0;
  text-shadow: 1px 1px 0 #333333, -1px 1px 0 #333333, 1px -1px 0 #333333, -1px -1px 0 #333333;
  text-wrap: nowrap;
}
@media (max-width: 500px) {
  .loop li {
    font-size: 5rem;
  }
}

.card-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: "Zen Maru Gothic", sans-serif;
  display: block;
  margin-bottom: 32px;
}
@media (max-width: 500px) {
  .card-section h2 {
    margin-bottom: 24px;
  }
}
.card-section .wrapper {
  display: flex;
  align-items: flex-start;
}
.card-section .inner {
  background-color: #ffffff;
  text-align: center;
  padding: 50px 40px 80.5px;
  border-radius: 20px;
  margin-top: 114px;
  margin-left: -50px;
}
@media (max-width: 500px) {
  .card-section .inner {
    padding: 25px 20px;
    margin-left: -82px;
  }
}
.card-section .inner .text {
  margin-bottom: 40px;
}
@media (max-width: 500px) {
  .card-section .inner .text {
    margin-bottom: 24px;
  }
}
.card-pct {
  width: 360px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .card-pct {
    width: clamp(260px, 260px + 100 * (100vw - 500px) / 100, 360px);
  }
}
@media (max-width: 500px) {
  .card-pct {
    width: 190px;
  }
}
.card-pct img {
  border-radius: 200px;
}
@media (max-width: 500px) {
  .card-pct img {
    border-radius: 60px;
  }
}

#store-search {
  margin-top: 60px;
  position: relative;
  z-index: 0;
  padding-bottom: 80px;
}
@media (max-width: 500px) {
  #store-search {
    margin-top: 40px;
    padding-bottom: 40px;
  }
}
#store-search::before, #store-search::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background-color: #FFEAF5;
  z-index: -2;
}
#store-search::before {
  border-radius: 50%/100% 100% 0 0;
  bottom: calc(100% - 54px);
  height: 200px;
}
@media (max-width: 768px) {
  #store-search::before {
    height: 169px;
    bottom: calc(100% - 24px);
  }
}
@media (max-width: 500px) {
  #store-search::before {
    height: 100px;
    bottom: calc(100% + 36px);
  }
}
#store-search::after {
  bottom: 0;
  height: calc(100% - 54px);
}
@media (max-width: 768px) {
  #store-search::after {
    height: calc(100% - 24px);
  }
}
@media (max-width: 500px) {
  #store-search::after {
    height: calc(100% + 36px);
  }
}
#store-search .btn {
  padding: 18px 50px;
}
@media (max-width: 768px) {
  #store-search .btn {
    padding: 10.5px 30px;
  }
}
#store-search .btn i {
  transition: all 0.5s;
}
#store-search .btn::after {
  display: none;
}
#store-search .btn:hover i {
  transform: translateY(-5px);
}
#store-search .bg-illustration {
  width: 520px;
  position: absolute;
  top: -130px;
  right: -90px;
  transform: rotate(10deg);
  opacity: 0.5;
  z-index: -1;
}
@media (max-width: 768px) {
  #store-search .bg-illustration {
    width: 260px;
    right: -40px;
  }
}
@media (max-width: 500px) {
  #store-search .bg-illustration {
    width: 197px;
    top: -110px;
    right: -30px;
  }
}

#delivery {
  position: relative;
  z-index: 1;
  margin-top: -110px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  #delivery {
    margin-top: initial;
    padding-top: 80px;
  }
}
@media (max-width: 500px) {
  #delivery {
    padding-block: 40px;
  }
}
#delivery::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -2;
  width: 100%;
  height: calc(100% - 110px);
  background-color: #DEEDEE;
}
@media (max-width: 768px) {
  #delivery::before {
    height: 100%;
  }
}
#delivery .wrapper {
  justify-content: flex-end;
}
#delivery .wrapper .inner {
  margin-right: -90px;
  margin-top: 190px;
  position: relative;
}
@media (max-width: 768px) {
  #delivery .wrapper .inner {
    margin-top: 140px;
    margin-left: initial;
  }
}
@media (max-width: 500px) {
  #delivery .wrapper .inner {
    margin-top: 100px;
  }
}
#delivery .wrapper .inner .acai-face {
  width: 154px;
  position: absolute;
  bottom: -20px;
  right: -50px;
}
@media (max-width: 500px) {
  #delivery .wrapper .inner .acai-face {
    width: 100px;
  }
}
#delivery .wrapper .delivery-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}
#delivery .wrapper .delivery-item .icon {
  width: 60px;
  flex-shrink: 0;
}
#delivery .wrapper .delivery-item p {
  font-size: 1.25rem;
}
#delivery .wrapper .delivery-item p span {
  font-size: 1.5rem;
  font-weight: 600;
}
#delivery .bg-illustration {
  width: 453px;
  position: absolute;
  top: 150px;
  left: -90px;
  transform: rotate(15deg);
  opacity: 0.5;
  z-index: -1;
}
@media (max-width: 768px) {
  #delivery .bg-illustration {
    width: 300px;
    top: 90px;
  }
}

#fc-recruitment {
  position: relative;
  z-index: 1;
  margin-top: -110px;
  padding-bottom: 80px;
  overflow-y: hidden;
}
@media (max-width: 768px) {
  #fc-recruitment {
    margin-top: initial;
    padding-top: 80px;
  }
}
@media (max-width: 500px) {
  #fc-recruitment {
    padding-block: 40px;
  }
}
#fc-recruitment::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% - 110px);
  background-color: #FFEAF5;
}
@media (max-width: 768px) {
  #fc-recruitment::before {
    height: 100%;
  }
}
#fc-recruitment .card-pct {
  height: 250px;
  display: flex;
  align-items: center;
  background-color: #761E4C;
  border-radius: 200px;
}
@media (max-width: 768px) {
  #fc-recruitment .card-pct {
    height: clamp(186px, 186px + 64 * (100vw - 500px) / 100, 250px);
  }
}
@media (max-width: 500px) {
  #fc-recruitment .card-pct {
    height: 136px;
    border-radius: 60px;
  }
}
#fc-recruitment .card-pct img {
  -o-object-fit: contain;
     object-fit: contain;
}
#fc-recruitment .inner {
  margin-top: 190px;
}
@media (max-width: 768px) {
  #fc-recruitment .inner {
    margin-top: 110px;
  }
}
@media (max-width: 500px) {
  #fc-recruitment .inner {
    margin-top: 100px;
  }
}
@media (max-width: 768px) {
  #fc-recruitment .btn {
    padding: 10.5px 30px;
  }
}
#fc-recruitment .bg-illustration {
  width: 520px;
  position: absolute;
  z-index: -1;
  bottom: -200px;
  right: 5%;
  opacity: 0.5;
}
@media (max-width: 768px) {
  #fc-recruitment .bg-illustration {
    width: 350px;
    right: initial;
    left: -90px;
    bottom: -140px;
  }
}

#recruitment {
  background-image: url(../img/bg-3.webp);
  background-size: cover;
  background-position: center;
  padding-block: 170px 120px;
  position: relative;
  overflow-x: hidden;
}
@media (max-width: 500px) {
  #recruitment {
    padding-block: 60px;
  }
}
#recruitment .inner {
  max-width: 700px;
  margin-inline: auto;
  padding-inline: 50px;
  position: relative;
  z-index: 1;
}
@media (max-width: 500px) {
  #recruitment .inner {
    padding-inline: 20px;
  }
}
#recruitment .inner h3 {
  font-size: 1.25rem;
  margin-bottom: 13px;
}
#recruitment .inner .greek-logo {
  position: absolute;
  top: -100px;
  right: -60px;
  z-index: -1;
  width: 155px;
}
@media (max-width: 768px) {
  #recruitment .inner .greek-logo {
    right: -20px;
  }
}
@media (max-width: 500px) {
  #recruitment .inner .greek-logo {
    top: -48px;
    right: 0;
    width: 135px;
  }
}
#recruitment .inner .greek-logo img {
  height: initial;
}

.faq li {
  background-color: #ffffff;
  border-radius: 5px;
  border: 1px solid #595353;
  width: 100%;
  padding: 15px 25px;
}
.faq li:not(:first-child) {
  margin-top: 10px;
}
.faq .question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: all 0.5s;
}
.faq .question:hover {
  opacity: 0.5;
}
.faq .question::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: rotate(45deg);
  transition: all 0.5s;
}
.faq .question.close::after {
  transform: rotate(225deg);
}
.faq .answer {
  border-top: 1px solid rgba(89, 83, 83, 0.5019607843);
  padding-top: 15px;
  margin-top: 15px;
  display: none;
}
.faq .answer p:not(:first-of-type) {
  margin-top: 1em;
}

#concept {
  background-image: url(../img/concept-image.webp);
  background-position: center 70%;
  background-size: cover;
  padding: 118px 20px;
}
@media (max-width: 500px) {
  #concept {
    padding: 20px;
  }
}
#concept .wrapper {
  border: 1px solid #ffffff;
  padding: 83.5px 20px 422.5px;
  text-align: center;
}
@media (max-width: 500px) {
  #concept .wrapper {
    padding: 42px 5px 160px;
  }
}
#concept .wrapper h2,
#concept .wrapper p {
  font-size: 1.25rem;
  line-height: 70px;
  letter-spacing: 36%;
}
@media (max-width: 500px) {
  #concept .wrapper h2,
  #concept .wrapper p {
    line-height: 35px;
    letter-spacing: initial;
    font-size: 1rem;
  }
}
#concept .wrapper h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: normal;
  margin-bottom: initial;
}

#news {
  background-image: url(../img/bg-4.webp);
  background-size: cover;
  background-position: center;
  padding-block: 160px;
}
@media (max-width: 500px) {
  #news {
    padding-block: 80px;
  }
}
#news .wrapper {
  max-width: 1200px;
}
#news .wrapper h3 {
  font-size: 1.125rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 10px;
}
@media (max-width: 500px) {
  #news .wrapper h3 {
    gap: 20px;
    font-size: 1rem;
  }
}
#news .wrapper h3 span {
  background-color: #FFA155;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 0.75rem;
  position: relative;
}
#news .wrapper h3 span::before {
  content: "";
  position: absolute;
  top: -6px;
  right: -12px;
  width: 17.5px;
  height: 12.5px;
  background-image: url(../img/accent.svg);
  background-size: contain;
}
#news li a {
  display: flex;
  align-items: center;
  border-top: 1px solid #DFDFDF;
  padding-block: 20px;
  gap: 64px;
}
@media (max-width: 768px) {
  #news li a {
    gap: 40px;
  }
}
@media (max-width: 500px) {
  #news li a {
    gap: 15px;
    padding-inline: 16px;
  }
}
#news li .thumbnail {
  width: 15%;
  flex-shrink: 0;
}
@media (max-width: 500px) {
  #news li .thumbnail {
    width: 100px;
  }
}
#news li .thumbnail img {
  height: 97px;
  border-radius: 10px;
}
#news li .inner {
  display: flex;
  gap: 40px;
  flex: 1;
}
@media (max-width: 768px) {
  #news li .inner {
    gap: 20px;
  }
}
@media (max-width: 500px) {
  #news li .inner {
    flex-direction: column;
    gap: 10px;
  }
}
#news li .inner p {
  width: 50%;
  margin-top: 2em;
}
@media (max-width: 500px) {
  #news li .inner p {
    font-size: 0.875rem;
    width: 100%;
    margin-top: initial;
  }
}
#news li .title {
  width: 50%;
}
@media (max-width: 500px) {
  #news li .title {
    width: 100%;
  }
}
#news li .title time {
  font-size: 0.875rem;
}
#news li .title h3 {
  margin-top: 10px;
}
#news .more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  transition: all 0.5s;
}
#news .more::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: rotate(45deg);
  transition: all 0.5s;
}
#news .more:hover {
  opacity: 0.5;
}
#news .more:hover::after {
  transform: translateX(5px) rotate(45deg);
}

#instagram {
  background-color: #FFEAF5;
  padding-block: 54px 238px;
  overflow-x: hidden;
}
#instagram .wrapper {
  max-width: 1000px;
}
#instagram h2 {
  margin-bottom: 8px;
}
#instagram p {
  text-align: center;
  margin-bottom: 32px;
}
#instagram .instagram-icon {
  width: 60px;
  margin-inline: auto;
  margin-bottom: 28px;
}
@media (max-width: 500px) {
  #instagram .instagram-icon {
    width: 50px;
  }
}
#instagram .outer {
  position: relative;
  z-index: 1;
}
#instagram .outer .click {
  position: absolute;
  top: 20px;
  right: -30px;
  z-index: -1;
  width: 120px;
  animation: click 20s linear infinite;
}

.sbi_item {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2509803922);
}

#commitment-top {
  height: 100vh;
  position: relative;
}
#commitment-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.2;
}
#commitment-top .content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5%;
  display: flex;
  flex-direction: column;
  gap: 66px;
}
@media (max-width: 500px) {
  #commitment-top .content {
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    justify-content: space-around;
  }
}
#commitment-top .content .lead {
  width: 459px;
  margin-inline: auto;
}
@media (max-width: 500px) {
  #commitment-top .content .lead {
    width: 190px;
  }
}
#commitment-top h1 {
  font-size: 3rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
#commitment-top h1 span {
  font-size: 1.25rem;
  font-weight: 400;
}
#commitment-top .wave-svg {
  width: 100%;
}
#commitment-top .wave-svg-top {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}
#commitment-top .wave-path-top {
  animation: waveMove-top 4s ease-in-out infinite;
}

.concept {
  text-align: center;
  color: #f6f6f6;
  font-size: 1.25rem;
  line-height: 57px;
  margin-bottom: 58px;
}
@media (max-width: 768px) {
  .concept {
    line-height: 40px;
  }
}
@media (max-width: 500px) {
  .concept {
    margin-bottom: initial;
    line-height: 30px;
    font-size: 1rem;
  }
}
.concept .content {
  padding-inline: 20px;
}
.concept .wave-path-bottom {
  animation: waveMove-bottom 6s ease-in-out infinite;
}

#commitment h2 {
  font-size: 4rem;
  line-height: 1;
  font-weight: 400;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 100px;
}
@media (max-width: 500px) {
  #commitment h2 {
    margin-bottom: 64px;
    font-size: 1.71rem;
  }
}
#commitment h2 span {
  font-size: 2rem;
}
@media (max-width: 500px) {
  #commitment h2 span {
    font-size: 1rem;
  }
}
#commitment h2::before, #commitment h2::after {
  content: "";
  display: inline-block;
  width: 80px;
  height: 1px;
  margin-bottom: 0.25em;
  transform: translateY(-50%);
}
#commitment h2::before {
  margin-right: 30px;
}
#commitment h2::after {
  margin-left: 30px;
}
#commitment .list {
  margin-bottom: 100px;
}
@media (max-width: 500px) {
  #commitment .list {
    margin-bottom: 64px;
  }
}
#commitment .item {
  background-color: #ffffff;
  border-radius: 20px;
  width: min(1000px, 100% - 40px);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2509803922);
  padding: 25px 35px;
}
@media (max-width: 500px) {
  #commitment .item {
    width: 100%;
    padding: 10px 12px;
  }
}
#commitment .item-wrapper {
  border-radius: 20px;
  padding: 37.5px 3%;
}
@media (max-width: 500px) {
  #commitment .item-wrapper {
    padding: 20px 5px 16px;
  }
}
#commitment .item .inner {
  display: flex;
  align-items: flex-start;
  gap: 56px;
}
@media (max-width: 768px) {
  #commitment .item .inner {
    gap: clamp(24px, 24px + 16 * (100vw - 500px) / 268, 40px);
  }
}
#commitment .item .icon {
  width: 130px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  #commitment .item .icon {
    width: clamp(100px, 100px + 30 * (100vw - 500px) / 268, 130px);
  }
}
#commitment .item .content h3 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 500px) {
  #commitment .item .content h3 {
    margin-bottom: 16px;
    font-size: 1.14rem;
  }
}
#commitment .item .content p {
  line-height: 36px;
}
@media (max-width: 500px) {
  #commitment .item .content p {
    line-height: 20px;
  }
}
#commitment .item .content-list {
  background-color: #FEF3F1;
  border-radius: 20px;
  position: relative;
  width: 300px;
  padding: 20px 30px;
  margin-top: 43px;
  margin-inline: auto;
}
@media (max-width: 500px) {
  #commitment .item .content-list {
    width: 250px;
  }
}
#commitment .item .content-list li::before {
  content: "・";
}
#commitment .item .content-list .acai-face {
  position: absolute;
  top: -40px;
  right: -20px;
  width: 80px;
}
#commitment .item .content .check-list {
  display: flex;
  gap: 40px;
  margin-block: 16px;
}
@media (max-width: 768px) {
  #commitment .item .content .check-list {
    flex-direction: column;
    gap: 8px;
  }
}
#commitment .item .content .check-list li {
  display: flex;
  align-items: center;
  gap: 5px;
}
#commitment .item .content .check-list li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: contain;
}
#commitment .item:nth-child(even) {
  margin-left: auto;
}
#commitment .item:not(:first-child) {
  margin-top: 80px;
}
@media (max-width: 500px) {
  #commitment .item:not(:first-child) {
    margin-top: 32px;
  }
}
#commitment .btn {
  margin-inline: auto;
  margin-top: 14px;
}
#commitment .btn-wrapper {
  text-align: center;
}
#commitment .btn-lead {
  font-size: 0.875rem;
}
#commitment .btn-lead::before, #commitment .btn-lead::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 1px;
}
#commitment .btn-lead::before {
  transform: rotate(15deg);
  margin-right: 15px;
}
#commitment .btn-lead::after {
  transform: rotate(-15deg);
  margin-left: 15px;
}
#commitment .btn-lead span {
  position: relative;
}
#commitment .btn-lead span::before, #commitment .btn-lead span::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 1px;
  bottom: 8px;
}
#commitment .btn-lead span::before {
  transform: rotate(30deg);
  left: -24px;
}
#commitment .btn-lead span::after {
  transform: rotate(-30deg);
  right: -24px;
}

#commitment-faq {
  margin-top: 120px;
}
@media (max-width: 500px) {
  #commitment-faq {
    margin-block: 64px 178px;
  }
}
#commitment-faq.wrapper {
  max-width: 1000px;
}
#commitment-faq .title {
  text-align: center;
  position: relative;
  width: 60%;
  margin-inline: auto;
  padding-top: 90px;
  z-index: 1;
}
@media (max-width: 768px) {
  #commitment-faq .title {
    padding-top: 60px;
  }
}
@media (max-width: 500px) {
  #commitment-faq .title {
    padding-top: 40px;
  }
}
#commitment-faq .title::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  height: 100%;
  border-radius: 50%/100% 100% 0 0;
}
@media (max-width: 500px) {
  #commitment-faq .title::before {
    top: 7px;
    width: calc(100% - 28px);
  }
}
#commitment-faq .title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: calc(100% + 23px);
  border-radius: 50%/100% 100% 0 0;
  z-index: -1;
}
#commitment-faq .title h2 {
  font-size: 1.5rem;
}
@media (max-width: 500px) {
  #commitment-faq .title h2 {
    font-size: 1.14rem;
    font-weight: normal;
  }
}
#commitment-faq .title ul li {
  position: absolute;
  width: 90px;
}
@media (max-width: 768px) {
  #commitment-faq .title ul li {
    width: 60px;
  }
}
@media (max-width: 500px) {
  #commitment-faq .title ul li {
    width: 42px;
  }
}
#commitment-faq .title ul li:nth-child(1) {
  bottom: -50px;
  left: -30px;
}
@media (max-width: 768px) {
  #commitment-faq .title ul li:nth-child(1) {
    bottom: -42px;
    left: -10px;
  }
}
@media (max-width: 500px) {
  #commitment-faq .title ul li:nth-child(1) {
    bottom: -15px;
  }
}
#commitment-faq .title ul li:nth-child(2) {
  bottom: -50px;
  right: -30px;
}
@media (max-width: 768px) {
  #commitment-faq .title ul li:nth-child(2) {
    bottom: -43px;
    right: -10px;
  }
}
@media (max-width: 500px) {
  #commitment-faq .title ul li:nth-child(2) {
    bottom: -15px;
  }
}
#commitment-faq .inner {
  padding-block: 65px;
  border-radius: 20px;
  position: relative;
}
@media (max-width: 500px) {
  #commitment-faq .inner {
    padding-block: 38px 32px;
  }
}
#commitment-faq .inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border-radius: 20px;
}
@media (max-width: 500px) {
  #commitment-faq .inner::before {
    width: calc(100% - 14px);
    height: calc(100% - 14px);
  }
}
#commitment-faq .inner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
#commitment-faq .inner .acai-face {
  position: absolute;
  top: -8px;
  right: 30%;
  width: 115px;
  transform: rotate(-10deg);
  z-index: 1;
}
@media (max-width: 768px) {
  #commitment-faq .inner .acai-face {
    width: 80px;
    top: 15px;
    right: 25%;
  }
}
@media (max-width: 500px) {
  #commitment-faq .inner .acai-face {
    width: 68px;
    top: 0;
    right: 4%;
  }
}
#commitment-faq .faq {
  width: min(600px, 100% - 80px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 500px) {
  #commitment-faq .faq {
    width: calc(100% - 40px);
  }
}

.acai-commitment #commitment-top {
  background-image: url(../img/mv-acai-concept.webp);
  background-size: 150%;
  background-position: 30% 75%;
}
@media (max-width: 768px) {
  .acai-commitment #commitment-top {
    background-size: 200%;
  }
}
@media (max-width: 500px) {
  .acai-commitment #commitment-top {
    background-size: 300%;
    background-position: 56% 75%;
  }
}
.acai-commitment #commitment-top h1 {
  color: #811F51;
}
.acai-commitment #commitment-top .top-wave {
  filter: drop-shadow(0 -3px 40px #811F51);
  width: 100%;
}
.acai-commitment .concept .content {
  background-color: #811F51;
  filter: drop-shadow(0 47px 80px #811F51);
}
@media (max-width: 500px) {
  .acai-commitment .concept .content {
    filter: drop-shadow(0 15px 80px #811F51);
  }
}
.acai-commitment #commitment h2 {
  color: #811F51;
}
.acai-commitment #commitment h2::before, .acai-commitment #commitment h2::after {
  background-color: #811F51;
}
.acai-commitment #commitment .item-wrapper {
  border: 1px dashed #811F51;
}
.acai-commitment #commitment .item .content h3 {
  color: #811F51;
}
.acai-commitment #commitment .item .content .check-list li::before {
  background-image: url(../img/icon-check-acai.svg);
}
.acai-commitment #commitment .btn-lead {
  color: #811F51;
}
.acai-commitment #commitment .btn-lead::before, .acai-commitment #commitment .btn-lead::after {
  background-color: #811F51;
}
.acai-commitment #commitment .btn-lead span::before, .acai-commitment #commitment .btn-lead span::after {
  background-color: #811F51;
}
.acai-commitment #commitment .btn {
  background-color: #811F51;
  color: #ffffff;
}
.acai-commitment #commitment .btn::after {
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
.acai-commitment #commitment .btn:hover {
  background-color: #FDF5EC;
  color: #811F51;
}
.acai-commitment #commitment .btn:hover::after {
  border-top: 1px solid #811F51;
  border-right: 1px solid #811F51;
}
.acai-commitment #commitment-faq .title::before {
  border-top: 1px dashed #811F51;
  border-left: 1px dashed #811F51;
  border-right: 1px dashed #811F51;
}
.acai-commitment #commitment-faq .title::after {
  background-color: #FFEAF5;
}
.acai-commitment #commitment-faq .inner {
  background-color: #FFEAF5;
}
.acai-commitment #commitment-faq .inner::before {
  border: 1px dashed #811F51;
}

.greek-yogurt-commitment #commitment-top {
  background-image: url(../img/mv-greek-concept.webp);
  background-size: 220%;
  background-position: 45% 40%;
}
@media (max-width: 768px) {
  .greek-yogurt-commitment #commitment-top {
    background-size: 280%;
    background-position: 43% 18%;
  }
}
@media (max-width: 500px) {
  .greek-yogurt-commitment #commitment-top {
    background-size: 470%;
    background-position: 58% 38%;
  }
}
@media (max-width: 500px) {
  .greek-yogurt-commitment #commitment-top .content {
    width: 100%;
  }
}
.greek-yogurt-commitment #commitment-top h1 {
  color: #1899B8;
}
.greek-yogurt-commitment #commitment-top .top-wave {
  filter: drop-shadow(0 -3px 40px #1899B8);
  width: 100%;
}
.greek-yogurt-commitment .concept .content {
  background-color: #1899B8;
  filter: drop-shadow(0 47px 80px #1899B8);
}
@media (max-width: 500px) {
  .greek-yogurt-commitment .concept .content {
    filter: drop-shadow(0 15px 80px #1899B8);
  }
}
.greek-yogurt-commitment #commitment h2 {
  color: #1899B8;
}
.greek-yogurt-commitment #commitment h2::before, .greek-yogurt-commitment #commitment h2::after {
  background-color: #1899B8;
}
.greek-yogurt-commitment #commitment .item-wrapper {
  border: 1px dashed #1899B8;
}
.greek-yogurt-commitment #commitment .item .content h3 {
  color: #1899B8;
}
.greek-yogurt-commitment #commitment .item .content .check-list li::before {
  background-image: url(../img/icon-check-greek.svg);
}
.greek-yogurt-commitment #commitment .btn-lead {
  color: #1899B8;
}
.greek-yogurt-commitment #commitment .btn-lead::before, .greek-yogurt-commitment #commitment .btn-lead::after {
  background-color: #1899B8;
}
.greek-yogurt-commitment #commitment .btn-lead span::before, .greek-yogurt-commitment #commitment .btn-lead span::after {
  background-color: #1899B8;
}
.greek-yogurt-commitment #commitment .btn {
  background-color: #1899B8;
  color: #ffffff;
  border: 1px solid #1899B8;
}
.greek-yogurt-commitment #commitment .btn::after {
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
.greek-yogurt-commitment #commitment .btn:hover {
  background-color: #FDF5EC;
  color: #1899B8;
}
.greek-yogurt-commitment #commitment .btn:hover::after {
  border-top: 1px solid #1899B8;
  border-right: 1px solid #1899B8;
}
.greek-yogurt-commitment #commitment-faq .title::before {
  border-top: 1px dashed #1899B8;
  border-left: 1px dashed #1899B8;
  border-right: 1px dashed #1899B8;
}
.greek-yogurt-commitment #commitment-faq .title::after {
  background-color: #DEEDEE;
}
.greek-yogurt-commitment #commitment-faq .title ul li:nth-child(1) {
  transform: rotate(47deg);
  width: 78px;
}
@media (max-width: 768px) {
  .greek-yogurt-commitment #commitment-faq .title ul li:nth-child(1) {
    width: 50px;
  }
}
@media (max-width: 500px) {
  .greek-yogurt-commitment #commitment-faq .title ul li:nth-child(1) {
    width: 35px;
  }
}
.greek-yogurt-commitment #commitment-faq .title ul li:nth-child(2) {
  width: 81px;
  transform: rotate(-92deg);
}
@media (max-width: 768px) {
  .greek-yogurt-commitment #commitment-faq .title ul li:nth-child(2) {
    width: 50px;
  }
}
@media (max-width: 500px) {
  .greek-yogurt-commitment #commitment-faq .title ul li:nth-child(2) {
    width: 28px;
    right: 0;
  }
}
.greek-yogurt-commitment #commitment-faq .inner {
  background-color: #DEEDEE;
}
.greek-yogurt-commitment #commitment-faq .inner::before {
  border: 1px dashed #1899B8;
}

.tapioka-commitment #commitment-top {
  background-image: url(../img/mv-tapioca-concept.webp);
  background-size: cover;
  background-position: center;
}
@media (max-width: 500px) {
  .tapioka-commitment #commitment-top {
    background-position: 58% 65%;
    background-size: 450%;
  }
}
@media (max-width: 500px) {
  .tapioka-commitment #commitment-top .content {
    width: 100%;
  }
}
.tapioka-commitment #commitment-top h1 {
  color: #ffffff;
}
.tapioka-commitment #commitment-top .top-wave {
  filter: drop-shadow(0 -3px 40px #A0683B);
  width: 100%;
}
.tapioka-commitment .concept .content {
  background-color: #A0683B;
  filter: drop-shadow(0 47px 80px #A0683B);
}
@media (max-width: 500px) {
  .tapioka-commitment .concept .content {
    filter: drop-shadow(0 15px 80px #A0683B);
  }
}
.tapioka-commitment #commitment h2 {
  color: #A0683B;
}
.tapioka-commitment #commitment h2::before, .tapioka-commitment #commitment h2::after {
  background-color: #A0683B;
}
.tapioka-commitment #commitment .item-wrapper {
  border: 1px dashed #A0683B;
}
.tapioka-commitment #commitment .item .content h3 {
  color: #A0683B;
}
.tapioka-commitment #commitment .btn-lead {
  color: #A0683B;
}
.tapioka-commitment #commitment .btn-lead::before, .tapioka-commitment #commitment .btn-lead::after {
  background-color: #A0683B;
}
.tapioka-commitment #commitment .btn-lead span::before, .tapioka-commitment #commitment .btn-lead span::after {
  background-color: #A0683B;
}
.tapioka-commitment #commitment .btn {
  background-color: #A0683B;
  color: #ffffff;
  border: 1px solid #A0683B;
}
.tapioka-commitment #commitment .btn::after {
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
.tapioka-commitment #commitment .btn:hover {
  background-color: #FDF5EC;
  color: #A0683B;
}
.tapioka-commitment #commitment .btn:hover::after {
  border-top: 1px solid #A0683B;
  border-right: 1px solid #A0683B;
}
.tapioka-commitment .collaboration {
  margin-bottom: 100px;
  overflow-x: hidden;
}
.tapioka-commitment .collaboration-top {
  background-image: url(../img/bg-tapioca-brand.webp);
  background-size: cover;
  background-position: center;
  padding-block: 70px 40px;
}
@media (max-width: 500px) {
  .tapioka-commitment .collaboration-top {
    padding-block: 20px 40px;
    border-radius: 20px 20px 0 0;
  }
}
.tapioka-commitment .collaboration h3 {
  font-size: 2.5rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 500px) {
  .tapioka-commitment .collaboration h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
}
.tapioka-commitment .collaboration .wrapper {
  max-width: 1000px;
}
.tapioka-commitment .collaboration .drink {
  margin-top: 130px;
  position: relative;
}
@media (max-width: 768px) {
  .tapioka-commitment .collaboration .drink {
    margin-top: 170px;
  }
}
@media (max-width: 500px) {
  .tapioka-commitment .collaboration .drink {
    margin-top: 24px;
    text-align: center;
  }
}
.tapioka-commitment .collaboration .drink ul {
  display: flex;
  align-items: flex-end;
  gap: 80px;
}
@media (max-width: 768px) {
  .tapioka-commitment .collaboration .drink ul {
    gap: 60px;
  }
}
@media (max-width: 500px) {
  .tapioka-commitment .collaboration .drink ul {
    margin-top: -20px;
    flex-direction: column;
    gap: 6px;
  }
}
.tapioka-commitment .collaboration .drink ul li {
  width: 50%;
}
@media (max-width: 500px) {
  .tapioka-commitment .collaboration .drink ul li:last-child {
    width: 95%;
    margin-inline: auto;
  }
}
.tapioka-commitment .collaboration .drink .bubble {
  position: absolute;
  transform: rotate(-20deg);
  top: -100px;
  right: clamp(460px, 460px + 320 * (100vw - 768px) / 492, 780px);
  width: 237px;
}
@media (max-width: 1022px) {
  .tapioka-commitment .collaboration .drink .bubble {
    transform: rotate(0);
  }
}
@media (max-width: 768px) {
  .tapioka-commitment .collaboration .drink .bubble {
    top: -60px;
    right: initial;
    position: relative;
    margin-left: 50px;
  }
}
@media (max-width: 500px) {
  .tapioka-commitment .collaboration .drink .bubble {
    top: 70px;
    transform: rotate(-20deg);
    margin-left: initial;
  }
}
.tapioka-commitment .collaboration .drink .bubble::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(20deg);
  width: 395px;
  height: 281px;
  background-image: url(../img/speech-bubble.webp);
  background-size: cover;
}
@media (max-width: 500px) {
  .tapioka-commitment .collaboration .drink .bubble::before {
    width: 245px;
    height: 191px;
  }
}
.tapioka-commitment .collaboration .drink .bubble .lead {
  color: #D3A61B;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 500px) {
  .tapioka-commitment .collaboration .drink .bubble .lead {
    font-size: 1.14rem;
  }
}
.tapioka-commitment .collaboration .drink .bubble .content {
  color: #ffffff;
}
@media (max-width: 500px) {
  .tapioka-commitment .collaboration .drink .bubble .content {
    display: none;
  }
}
.tapioka-commitment .collaboration-bottom {
  background-color: #040B0A;
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.5019607843);
  padding-block: 55px;
  text-align: center;
}
@media (max-width: 500px) {
  .tapioka-commitment .collaboration-bottom {
    border-radius: 0 0 20px 20px;
  }
}
.tapioka-commitment .collaboration-bottom .wrapper {
  display: inline-block;
  text-align: left;
}
.tapioka-commitment .collaboration-bottom p {
  color: #ffffff;
  line-height: 44px;
}
.tapioka-commitment #commitment-faq .title::before {
  border-top: 1px dashed #A0683B;
  border-left: 1px dashed #A0683B;
  border-right: 1px dashed #A0683B;
}
.tapioka-commitment #commitment-faq .title::after {
  background-color: #E1CAB3;
}
.tapioka-commitment #commitment-faq .title ul li:nth-child(1) {
  width: 78px;
}
@media (max-width: 768px) {
  .tapioka-commitment #commitment-faq .title ul li:nth-child(1) {
    width: 50px;
  }
}
@media (max-width: 500px) {
  .tapioka-commitment #commitment-faq .title ul li:nth-child(1) {
    width: 35px;
  }
}
.tapioka-commitment #commitment-faq .title ul li:nth-child(2) {
  width: 63px;
}
@media (max-width: 768px) {
  .tapioka-commitment #commitment-faq .title ul li:nth-child(2) {
    width: 50px;
  }
}
@media (max-width: 500px) {
  .tapioka-commitment #commitment-faq .title ul li:nth-child(2) {
    width: 28px;
    right: 0;
  }
}
.tapioka-commitment #commitment-faq .inner {
  background-color: #E1CAB3;
}
.tapioka-commitment #commitment-faq .inner::before {
  border: 1px dashed #A0683B;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 78px;
}
@media (max-width: 768px) {
  .brand-logo {
    gap: clamp(16px, 16px + 24 * (100vw - 500px) / 268, 40px);
  }
}
@media (max-width: 500px) {
  .brand-logo {
    gap: 16px;
  }
}
.brand-logo .black-tiger {
  width: 488px;
}
.brand-logo .acai-kobo-logo {
  width: 291px;
}
.brand-logo p {
  font-size: 6rem;
  font-weight: 600;
  text-shadow: 1px 1px 0 #ffffff, -1px 1px 0 #ffffff, 1px -1px 0 #ffffff, -1px -1px 0 #ffffff;
}
@media (max-width: 768px) {
  .brand-logo p {
    font-size: 4rem;
  }
}
@media (max-width: 500px) {
  .brand-logo p {
    font-size: 2rem;
  }
}

.menu-top {
  height: 50vh;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}
@media (max-width: 500px) {
  .menu-top {
    margin-bottom: 40px;
    height: 40vh;
  }
}
.menu-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}
.menu-top h1 {
  font-family: "Darumadrop One", sans-serif;
  font-size: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (max-width: 500px) {
  .menu-top h1 {
    font-size: 4.57rem;
  }
}
.menu-top h1 span {
  font-size: 2.25rem;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media (max-width: 500px) {
  .menu-top h1 span {
    font-size: 1.71rem;
  }
}
.menu-top p {
  font-size: 1.25rem;
  text-align: center;
}
@media (max-width: 500px) {
  .menu-top p {
    font-size: 1.14rem;
  }
}
.menu-lead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px 20px;
  margin-bottom: 80px;
}
@media (max-width: 500px) {
  .menu-lead {
    flex-direction: column;
    margin-bottom: 40px;
    padding: 20px 20px;
  }
}
.menu-lead.wrapper {
  width: min(800px, 100% - 40px);
}
.menu-lead p {
  line-height: 25px;
  max-width: 400px;
}
@media (max-width: 500px) {
  .menu-lead p {
    text-align: center;
  }
}
.menu-lead .acai-face {
  width: 94px;
}
@media (max-width: 500px) {
  .menu-lead .acai-face {
    width: 74px;
  }
}

#menu-list .item {
  padding-block: 122px;
}
@media (max-width: 500px) {
  #menu-list .item {
    padding-block: 40px;
  }
}
#menu-list .wrapper {
  position: relative;
}
#menu-list .content {
  border-radius: 20px;
  position: relative;
  max-width: 800px;
}
@media (max-width: 500px) {
  #menu-list .content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
#menu-list .content h2 {
  font-size: clamp(4rem, 64px + 32 * (100vw - 768px) / 270, 6rem);
  font-family: "Darumadrop One", sans-serif;
  color: #ffffff;
  position: relative;
  margin-bottom: 32px;
  line-height: 1;
  padding-bottom: 24px;
}
@media (max-width: 500px) {
  #menu-list .content h2 {
    font-size: 3.25rem;
    margin-bottom: 24px;
  }
}
#menu-list .content h2::before {
  content: "";
  position: absolute;
  width: 61.5px;
  height: 1px;
  background-color: #ffffff;
}
#menu-list .content p {
  color: #ffffff;
}
@media (max-width: 500px) {
  #menu-list .content p {
    font-size: 1.14rem;
  }
}
#menu-list .content .menu-btn {
  position: absolute;
  width: 163px;
  height: 163px;
  border-radius: 50%;
  z-index: 1;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  transition: all 0.5s;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2509803922);
  font-weight: 900;
}
@media (max-width: 500px) {
  #menu-list .content .menu-btn {
    width: 100px;
    height: 100px;
    font-size: 1.14rem;
  }
}
#menu-list .content .menu-btn .arrow {
  width: 30px;
  height: 2px;
  position: relative;
  transition: all 0.5s;
}
#menu-list .content .menu-btn .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 15px;
  height: 15px;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.5s;
}
#menu-list .content .menu-btn:hover .arrow {
  transform: translateX(5px);
}
#menu-list .menu-pct {
  width: clamp(378px, 378px + 140 * (100vw - 768px) / 270, 518px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
@media (max-width: 768px) {
  #menu-list .menu-pct {
    transform: initial;
    top: initial;
  }
}
@media (max-width: 500px) {
  #menu-list .menu-pct {
    position: initial;
  }
}
#menu-list .acai {
  background-color: #FFEAF5;
}
#menu-list .acai .content {
  background-color: #811F51;
  padding-block: clamp(60px, 60px + 40 * (100vw - 768px) / 270, 100px);
  padding-inline: 30px 170px;
}
@media (max-width: 500px) {
  #menu-list .acai .content {
    padding: 20px 30px 70px;
  }
}
#menu-list .acai .content h2::before {
  bottom: 0;
  left: 0;
}
@media (max-width: 500px) {
  #menu-list .acai .content h2::before {
    left: 50%;
    transform: translateX(-50%);
  }
}
#menu-list .acai .content .menu-btn {
  color: #811F51;
  border: 1px solid #811F51;
  bottom: -60px;
  left: 34%;
}
@media (max-width: 768px) {
  #menu-list .acai .content .menu-btn {
    bottom: -80px;
    right: 50px;
    left: initial;
  }
}
@media (max-width: 500px) {
  #menu-list .acai .content .menu-btn {
    right: initial;
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%);
  }
}
#menu-list .acai .content .menu-btn .arrow {
  background-color: #811F51;
}
#menu-list .acai .content .menu-btn .arrow::after {
  border-top: 2px solid #811F51;
  border-right: 2px solid #811F51;
}
#menu-list .acai .content .menu-btn:hover {
  border: 1px solid #ffffff;
  color: #ffffff;
  background-color: #811F51;
}
#menu-list .acai .content .menu-btn:hover .arrow {
  background-color: #ffffff;
}
#menu-list .acai .content .menu-btn:hover .arrow::after {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
#menu-list .acai .menu-pct {
  right: 0;
}
@media (max-width: 768px) {
  #menu-list .acai .menu-pct {
    bottom: 90px;
    width: clamp(300px, 300px + 78 * (100vw - 500px) / 268, 378px);
  }
}
@media (max-width: 500px) {
  #menu-list .acai .menu-pct {
    width: 283px;
    margin-top: 40px;
    margin-inline: auto;
  }
}
#menu-list .greek {
  background-color: #DEEDEE;
}
@media (max-width: 500px) {
  #menu-list .greek .wrapper {
    display: flex;
    flex-direction: column-reverse;
  }
}
#menu-list .greek .content {
  background-color: #1899B8;
  padding-block: clamp(60px, 60px + 40 * (100vw - 768px) / 270, 100px);
  padding-inline: 30px;
  margin-left: auto;
}
@media (max-width: 500px) {
  #menu-list .greek .content {
    padding: 20px 30px 70px;
    width: 100%;
  }
}
#menu-list .greek .content h2 {
  text-align: right;
}
@media (max-width: 500px) {
  #menu-list .greek .content h2 {
    text-align: left;
  }
}
#menu-list .greek .content h2::before {
  bottom: 0;
  right: 0;
}
@media (max-width: 500px) {
  #menu-list .greek .content h2::before {
    right: initial;
    left: 50%;
    transform: translateX(-50%);
  }
}
#menu-list .greek .content p {
  display: flex;
  justify-content: flex-end;
}
#menu-list .greek .content .menu-btn {
  color: #1899B8;
  border: 1px solid #1899B8;
  bottom: -60px;
  left: 250px;
}
@media (max-width: 768px) {
  #menu-list .greek .content .menu-btn {
    left: clamp(20px, 20px + 30 * (100vw - 500px) / 268, 50px);
  }
}
@media (max-width: 500px) {
  #menu-list .greek .content .menu-btn {
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%);
  }
}
#menu-list .greek .content .menu-btn .arrow {
  background-color: #1899B8;
}
#menu-list .greek .content .menu-btn .arrow::after {
  border-top: 2px solid #1899B8;
  border-right: 2px solid #1899B8;
}
#menu-list .greek .content .menu-btn:hover {
  border: 1px solid #ffffff;
  color: #ffffff;
  background-color: #1899B8;
}
#menu-list .greek .content .menu-btn:hover .arrow {
  background-color: #ffffff;
}
#menu-list .greek .content .menu-btn:hover .arrow::after {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
#menu-list .greek .menu-pct {
  width: clamp(350px, 350px + 160 * (100vw - 768px) / 356, 510px);
  left: 0;
}
@media (max-width: 768px) {
  #menu-list .greek .menu-pct {
    width: clamp(270px, 270px + 80 * (100vw - 500px) / 268, 350px);
    bottom: 120px;
  }
}
@media (max-width: 500px) {
  #menu-list .greek .menu-pct {
    width: 283px;
    margin-inline: auto;
    margin-top: 40px;
  }
}
#menu-list .drink {
  background-color: #E1CAB3;
}
#menu-list .drink .content {
  background-color: #A0683B;
  padding-inline: 30px 170px;
  padding-block: clamp(60px, 60px + 40 * (100vw - 768px) / 270, 100px);
}
@media (max-width: 500px) {
  #menu-list .drink .content {
    padding: 20px 30px 70px;
  }
}
#menu-list .drink .content h2::before {
  bottom: 0;
  left: 0;
}
@media (max-width: 500px) {
  #menu-list .drink .content h2::before {
    left: 50%;
    transform: translateX(-50%);
  }
}
#menu-list .drink .content .menu-btn {
  color: #A0683B;
  border: 1px solid #A0683B;
  bottom: -60px;
  left: clamp(210px, 210px + 40 * (100vw - 768px) / 232, 250px);
}
@media (max-width: 768px) {
  #menu-list .drink .content .menu-btn {
    bottom: -80px;
    right: 50px;
    left: initial;
  }
}
@media (max-width: 500px) {
  #menu-list .drink .content .menu-btn {
    right: initial;
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%);
  }
}
#menu-list .drink .content .menu-btn .arrow {
  background-color: #A0683B;
}
#menu-list .drink .content .menu-btn .arrow::after {
  border-top: 2px solid #A0683B;
  border-right: 2px solid #A0683B;
}
#menu-list .drink .content .menu-btn:hover {
  border: 1px solid #ffffff;
  color: #ffffff;
  background-color: #A0683B;
}
#menu-list .drink .content .menu-btn:hover .arrow {
  background-color: #ffffff;
}
#menu-list .drink .content .menu-btn:hover .arrow::after {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
#menu-list .drink .menu-pct {
  width: initial;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  right: 0;
}
@media (max-width: 768px) {
  #menu-list .drink .menu-pct {
    bottom: 90px;
  }
}
@media (max-width: 500px) {
  #menu-list .drink .menu-pct {
    align-items: center;
    margin-top: 40px;
  }
}
#menu-list .drink .menu-pct li:nth-child(1) {
  width: clamp(306px, 306px + 90 * (100vw - 768px) / 232, 396px);
  margin-bottom: -70px;
}
@media (max-width: 768px) {
  #menu-list .drink .menu-pct li:nth-child(1) {
    width: clamp(236px, 236px + 70 * (100vw - 500px) / 100, 306px);
    margin-bottom: -50px;
  }
}
@media (max-width: 500px) {
  #menu-list .drink .menu-pct li:nth-child(1) {
    width: 229px;
  }
}
#menu-list .drink .menu-pct li:nth-child(2) {
  width: clamp(384px, 384px + 160 * (100vw - 768px) / 232, 544px);
  margin-right: clamp(0px, 0px + 60 * (100vw - 768px) / 268, 60px);
}
@media (max-width: 768px) {
  #menu-list .drink .menu-pct li:nth-child(2) {
    width: clamp(304px, 304px + 80 * (100vw - 500px) / 100, 384px);
  }
}
@media (max-width: 500px) {
  #menu-list .drink .menu-pct li:nth-child(2) {
    width: 285px;
  }
}

.menu-title {
  color: #811F51;
  font-family: "Darumadrop One", sans-serif;
  font-size: 4rem;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  display: inline-block;
}
@media (max-width: 500px) {
  .menu-title {
    font-size: 3.42rem;
    margin-bottom: 60px;
  }
}
.menu-title::before, .menu-title::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 68px;
  background-size: contain;
}
@media (max-width: 500px) {
  .menu-title::before, .menu-title::after {
    width: 40px;
    height: 48px;
  }
}
.menu-title::before {
  background-image: url(../img/title-accent_left.webp);
  top: 0;
  right: 100%;
}
.menu-title::after {
  background-image: url(../img/title-accent_right.webp);
  top: 0;
  left: 100%;
}

#customize {
  margin-top: 160px;
  text-align: center;
}
@media (max-width: 500px) {
  #customize {
    margin-top: 100px;
  }
}
#customize .wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px 30px;
}
@media (max-width: 768px) {
  #customize .wrapper {
    flex-direction: column;
  }
}
#customize .wrapper .topping-item,
#customize .wrapper .size-item {
  width: 48%;
  text-align: center;
}
@media (max-width: 768px) {
  #customize .wrapper .topping-item,
  #customize .wrapper .size-item {
    width: 100%;
  }
}
#customize .wrapper .topping-item .inner,
#customize .wrapper .size-item .inner {
  border: 3px solid #811F51;
  background-color: #ffffff;
  border-radius: 20px;
  margin-top: -32px;
}
#customize .wrapper .topping-item h3,
#customize .wrapper .size-item h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  color: #811F51;
  background-color: #ffffff;
  border: 3px solid #811F51;
  border-radius: 20px;
  padding: 20px 40px;
  display: inline-block;
}
@media (max-width: 500px) {
  #customize .wrapper .topping-item h3,
  #customize .wrapper .size-item h3 {
    font-size: 1.42rem;
  }
}
#customize .wrapper .topping-item .inner {
  padding: 40px 34px;
}
@media (max-width: 500px) {
  #customize .wrapper .topping-item .inner {
    padding: 40px 26.5px;
  }
}
#customize .wrapper .topping-item ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, 96px);
  justify-content: center;
  gap: 24px 30px;
  margin-bottom: 30px;
}
@media (max-width: 500px) {
  #customize .wrapper .topping-item ul {
    gap: 16px 8px;
    grid-template-columns: repeat(auto-fill, 86px);
  }
}
#customize .wrapper .topping-item ul figure {
  background-color: #FFEAF5;
  border-radius: 50%;
}
@media (max-width: 500px) {
  #customize .wrapper .topping-item ul figure {
    width: 60px;
    margin-inline: auto;
  }
}
#customize .wrapper .topping-item .text-bottom {
  color: #811F51;
}
#customize .wrapper .topping-item .text-bottom span {
  font-size: 1.5rem;
}
@media (max-width: 500px) {
  #customize .wrapper .topping-item .text-bottom span {
    font-size: 1.42rem;
  }
}
#customize .wrapper .topping-item:nth-of-type(3) ul figure, #customize .wrapper .topping-item:nth-of-type(4) ul figure {
  background-color: #FBE6C4;
}
#customize .wrapper .size-item .inner {
  padding: 40px 20px;
}
#customize .wrapper .size-item li {
  display: flex;
  align-items: center;
  background-color: #FFEAF5;
  gap: 16px;
  border-radius: 20px;
  padding: 20px 16px;
}
@media (max-width: 1022px) {
  #customize .wrapper .size-item li {
    flex-direction: column;
  }
}
#customize .wrapper .size-item li .item-left, #customize .wrapper .size-item li .item-right {
  display: flex;
  align-items: center;
}
#customize .wrapper .size-item li .item-left {
  gap: 16px;
}
#customize .wrapper .size-item li .item-right {
  flex: 1;
  justify-content: space-between;
  flex-direction: column;
}
#customize .wrapper .size-item li .size {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 900;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  background-color: #811F51;
  flex-shrink: 0;
}
#customize .wrapper .size-item li h4 {
  font-size: 1rem;
  color: #811F51;
  text-align: left;
}
#customize .wrapper .size-item li .price {
  color: #811F51;
  font-size: 1.5rem;
  font-weight: 900;
  text-align: right;
}
#customize .wrapper .size-item li:nth-child(1) .size-pct {
  width: 80px;
}
#customize .wrapper .size-item li:nth-child(2) .size-pct {
  width: 90px;
}
#customize .wrapper .size-item li:nth-child(3) .size-pct {
  width: 100px;
}
#customize .wrapper .size-item li:not(:first-child) {
  margin-top: 16px;
}

.note-menu {
  margin-top: 80px;
  display: inline-block;
  text-align: left;
}
@media (max-width: 500px) {
  .note-menu {
    margin-top: 40px;
    font-size: 0.857rem;
    padding-inline: 20px;
  }
}

#lo-menu .menu-top {
  background-image: url(../img/menu-mv.webp);
  background-position: center 65%;
  background-size: cover;
}
#lo-menu .menu-lead {
  border: 1px solid #811F51;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  gap: 50px 0;
}
@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 94px;
  }
}
.menu-grid .item:nth-child(2) {
  margin-top: 164px;
}
@media (max-width: 768px) {
  .menu-grid .item:nth-child(2) {
    margin-top: initial;
  }
}
.menu-grid .item:nth-child(odd):not(:first-of-type) {
  margin-top: -164px;
}
@media (max-width: 768px) {
  .menu-grid .item:nth-child(odd):not(:first-of-type) {
    margin-top: initial;
  }
}
.menu-grid .item:nth-child(odd) .inner {
  margin-right: 50px;
}
@media (max-width: 768px) {
  .menu-grid .item:nth-child(odd) .inner {
    margin-right: initial;
  }
}
.menu-grid .item:nth-child(even) .inner {
  flex-direction: row-reverse;
  margin-left: 50px;
}
@media (max-width: 768px) {
  .menu-grid .item:nth-child(even) .inner {
    margin-left: initial;
  }
}
@media (max-width: 500px) {
  .menu-grid .item:nth-child(even) .inner {
    flex-direction: column;
  }
}
.menu-grid .item .inner {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 500px) {
  .menu-grid .item .inner {
    flex-direction: column;
    align-items: center;
  }
}
.menu-grid .item .inner .pct,
.menu-grid .item .inner .content {
  width: 50%;
}
.menu-grid .item .inner .pct {
  flex-shrink: 0;
}
@media (max-width: 500px) {
  .menu-grid .item .inner .pct {
    width: 150px;
    margin-top: -50px;
  }
}
.menu-grid .item .inner .content {
  text-align: center;
  font-weight: 900;
}
@media (max-width: 500px) {
  .menu-grid .item .inner .content {
    width: 100%;
  }
}
.menu-grid .item .inner .content h3 {
  font-size: 1.375rem;
  margin-bottom: 24px;
}
@media (max-width: 500px) {
  .menu-grid .item .inner .content h3 {
    margin-bottom: 16px;
    font-size: 1.28rem;
  }
}
.menu-grid .item .inner .content .size-cost {
  font-size: 1.25rem;
}
@media (max-width: 500px) {
  .menu-grid .item .inner .content .size-cost {
    font-size: 1.14rem;
  }
}
@media (max-width: 500px) {
  .menu-grid .item .inner .content .size-cost.pc {
    display: none;
  }
}
.menu-grid .item .inner .content .size-cost.sp {
  display: none;
}
@media (max-width: 500px) {
  .menu-grid .item .inner .content .size-cost.sp {
    display: block;
  }
}
.menu-grid .item .inner .content dl.size-cost {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.menu-grid .item .inner .content dl.size-cost dt {
  width: 40%;
  text-align: right;
}
.menu-grid .item .inner .content dl.size-cost dd {
  width: 50%;
  text-align: left;
}

#lo-acai-menu #acai-menu-content {
  text-align: center;
}
#lo-acai-menu .menu-top {
  background-image: url(../img/manu-acai-mv.webp);
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
#lo-acai-menu .menu-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}
#lo-acai-menu .menu-lead {
  border: 1px solid #811F51;
}
#lo-acai-menu .menu-grid .item {
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.2509803922));
  background-size: contain;
}
#lo-acai-menu .menu-grid .item:nth-child(odd) {
  background-image: url(../img/bg-acai-menu-blob-pink.svg);
}
#lo-acai-menu .menu-grid .item:nth-child(even) {
  background-image: url(../img/bg-acai-menu-blob-cream.svg);
}
#lo-acai-menu .menu-grid .item:nth-child(2) .inner .content h3 {
  margin-bottom: 16px;
}
@media (max-width: 500px) {
  #lo-acai-menu .menu-grid .item:nth-child(2) .inner .content h3 {
    margin-bottom: 8px;
  }
}
#lo-acai-menu .menu-grid .item:nth-child(2) .inner .content .taste {
  margin-bottom: 16px;
  color: #333333;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#lo-acai-menu .menu-grid .item:nth-child(4) .inner {
  align-items: center;
}
#lo-acai-menu .menu-grid .item:nth-child(4) .size-detail {
  align-items: center;
}
#lo-acai-menu .menu-grid .item:nth-child(4) .size-detail .detail-wrapper {
  margin-top: initial;
}
#lo-acai-menu .menu-grid .item .inner .content {
  color: #811F51;
}
#lo-acai-menu .menu-grid .item .size-detail {
  display: flex;
  gap: 24px;
  text-align: center;
  justify-content: center;
  margin-top: 24px;
}
#lo-acai-menu .menu-grid .item .size-detail h4 {
  display: inline-block;
  background-color: #811F51;
  color: #ffffff;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 900;
  padding: 5px 10px;
}
#lo-acai-menu .menu-grid .item .size-detail .detail-wrapper {
  background-color: #ffffff;
  border: 1px solid #811F51;
  border-radius: 10px;
  padding: 20px 15px;
  margin-top: -10px;
}
#lo-acai-menu #customize .wrapper {
  flex-wrap: wrap;
}
#lo-acai-menu #customize .wrapper .topping-item ul {
  grid-template-columns: repeat(3, 96px);
}
@media (max-width: 500px) {
  #lo-acai-menu #customize .wrapper .topping-item:nth-child(1) {
    order: 1;
  }
}
@media (max-width: 500px) {
  #lo-acai-menu #customize .wrapper .topping-item:nth-child(3) {
    order: 2;
  }
}
@media (max-width: 500px) {
  #lo-acai-menu #customize .wrapper .topping-item:nth-of-type(4) {
    order: 3;
  }
}
#lo-acai-menu #customize .wrapper .topping-item:nth-of-type(4) .inner ul {
  grid-template-columns: repeat(2, 96px);
}
@media (max-width: 500px) {
  #lo-acai-menu #customize .wrapper .size-item {
    order: 4;
  }
}
#lo-acai-menu #customize .standard-topping {
  background-color: #FFEAF5;
  border-radius: 20px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  margin-inline: 20px;
}
@media (max-width: 500px) {
  #lo-acai-menu #customize .standard-topping {
    margin-top: initial;
    margin-inline: initial;
  }
}
@media (max-width: 500px) {
  #lo-acai-menu #customize .standard-topping.pc {
    display: none;
  }
}
#lo-acai-menu #customize .standard-topping.sp {
  display: none;
}
@media (max-width: 500px) {
  #lo-acai-menu #customize .standard-topping.sp {
    display: flex;
    order: 5;
  }
}
#lo-acai-menu #customize .standard-topping .check {
  width: 60px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.2509803922));
}
#lo-acai-menu #customize .standard-topping .content {
  font-size: 1.25rem;
  text-align: center;
}
#lo-acai-menu #customize .standard-topping .content h4 {
  font-weight: 900;
  margin-bottom: 12px;
}
#lo-acai-menu #order-flow {
  text-align: center;
  margin-top: 80px;
}
#lo-acai-menu #order-flow h2 {
  font-size: 1.5rem;
  font-weight: 500;
  display: inline-block;
  background-color: #ffffff;
  border: 3px solid #811F51;
  border-radius: 20px;
  padding: 20px 40px;
  margin-bottom: 8px;
}
@media (max-width: 500px) {
  #lo-acai-menu #order-flow h2 {
    font-size: 1.42rem;
  }
}
#lo-acai-menu #order-flow .sub-title {
  font-size: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 670px;
  margin-inline: auto;
  color: #811F51;
}
@media (max-width: 500px) {
  #lo-acai-menu #order-flow .sub-title {
    font-size: 1.14rem;
  }
}
#lo-acai-menu #order-flow .sub-title span {
  flex-shrink: 0;
  background-color: #FDF5EC;
  padding: 10px;
}
#lo-acai-menu #order-flow .sub-title::before, #lo-acai-menu #order-flow .sub-title::after {
  content: "";
  width: 30%;
  height: 1px;
  border-top: 1px dashed #811F51;
}
#lo-acai-menu #order-flow ol {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  #lo-acai-menu #order-flow ol {
    flex-direction: column;
    gap: 31px;
  }
}
@media (max-width: 500px) {
  #lo-acai-menu #order-flow ol {
    margin-top: 24px;
  }
}
#lo-acai-menu #order-flow ol .flow {
  width: 20%;
}
@media (max-width: 768px) {
  #lo-acai-menu #order-flow ol .flow {
    width: 100%;
  }
}
#lo-acai-menu #order-flow ol .flow:not(:nth-child(5)) {
  display: flex;
  flex-direction: column;
  position: relative;
}
#lo-acai-menu #order-flow ol .flow:not(:nth-child(5))::before, #lo-acai-menu #order-flow ol .flow:not(:nth-child(5))::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -23px;
}
@media (max-width: 768px) {
  #lo-acai-menu #order-flow ol .flow:not(:nth-child(5))::before, #lo-acai-menu #order-flow ol .flow:not(:nth-child(5))::after {
    top: 100%;
    right: initial;
    left: 50%;
  }
}
#lo-acai-menu #order-flow ol .flow:not(:nth-child(5))::before {
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background-color: #811F51;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  #lo-acai-menu #order-flow ol .flow:not(:nth-child(5))::before {
    transform: translateX(-50%);
    width: 3px;
    height: 25px;
  }
}
#lo-acai-menu #order-flow ol .flow:not(:nth-child(5))::after {
  width: 16px;
  height: 16px;
  border-top: 3px solid #811F51;
  border-right: 3px solid #811F51;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 3px;
}
@media (max-width: 768px) {
  #lo-acai-menu #order-flow ol .flow:not(:nth-child(5))::after {
    transform: translateX(-50%) rotate(135deg);
    top: initial;
    bottom: -25px;
  }
}
@media (max-width: 500px) {
  #lo-acai-menu #order-flow ol .flow:nth-child(4) .br-pc {
    display: block;
    height: 0;
  }
}
#lo-acai-menu #order-flow ol .flow .step {
  font-size: 1rem;
  font-weight: 900;
  color: #ffffff;
  background-color: #811F51;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}
@media (max-width: 500px) {
  #lo-acai-menu #order-flow ol .flow .step {
    width: 80px;
    height: 80px;
  }
}
#lo-acai-menu #order-flow ol .flow .step span {
  font-size: 2.25rem;
  margin-top: -12px;
}
#lo-acai-menu #order-flow ol .flow .inner {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 80px 10px 40px;
  margin-top: -50px;
  flex: 1;
  position: relative;
  z-index: -1;
}
#lo-acai-menu #order-flow ol .flow .inner p {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 40px;
}
@media (max-width: 1022px) {
  #lo-acai-menu #order-flow ol .flow .inner p {
    font-size: clamp(1rem, 16px + 8 * (100vw - 768px) / 254, 1.5rem);
  }
}
@media (max-width: 768px) {
  #lo-acai-menu #order-flow ol .flow .inner p {
    font-size: 1.5rem;
  }
}
#lo-acai-menu #order-flow ol .flow .inner ul {
  display: flex;
  justify-content: center;
  gap: 12px;
}
#lo-acai-menu #order-flow ol .flow .inner ul li {
  font-size: 2rem;
  font-weight: 900;
  color: #811F51;
  width: 33.3333333333%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFEAF5;
  border-radius: 50%;
}
@media (max-width: 1022px) {
  #lo-acai-menu #order-flow ol .flow .inner ul li {
    font-size: clamp(1.25rem, 20px + 12 * (100vw - 768px) / 254, 2rem);
  }
}
@media (max-width: 768px) {
  #lo-acai-menu #order-flow ol .flow .inner ul li {
    font-size: 2rem;
    width: 60px;
  }
}
#lo-acai-menu #order-flow ol .flow .inner .topping {
  max-width: 120px;
  margin-inline: auto;
}
#lo-acai-menu #order-flow ol .completed {
  background-color: #FFEAF5;
  border-radius: 20px;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#lo-acai-menu #order-flow ol .completed p {
  color: #811F51;
  font-size: 1rem;
}
#lo-acai-menu #order-flow ol .completed p strong {
  font-size: 1.5rem;
  font-weight: 500;
  display: inline-block;
  margin-top: 12px;
}
#lo-acai-menu #order-flow ol .completed .pct {
  position: relative;
}
@media (max-width: 768px) {
  #lo-acai-menu #order-flow ol .completed .pct {
    width: 50%;
    margin-inline: auto;
  }
}
#lo-acai-menu #order-flow ol .completed .pct li:last-child {
  width: 38px;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 768px) {
  #lo-acai-menu #order-flow ol .completed .pct li:last-child {
    top: 0;
    right: 10%;
  }
}
@media (max-width: 768px) {
  #lo-acai-menu #order-flow ol .br-pc {
    display: none;
  }
}

#lo-greek-menu #greek-menu-content {
  text-align: center;
  overflow-x: hidden;
}
#lo-greek-menu .menu-top {
  background-image: url(../img/menu-greek-yogurt-mv.webp);
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
#lo-greek-menu .menu-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}
#lo-greek-menu .menu-top h1 {
  text-align: center;
}
@media (max-width: 768px) {
  #lo-greek-menu .menu-top h1 {
    font-size: clamp(4rem, 64px + 32 * (100vw - 500px) / 268, 6rem);
  }
}
@media (max-width: 500px) {
  #lo-greek-menu .menu-top h1 {
    font-size: 3.42rem;
  }
}
#lo-greek-menu .menu-lead {
  border: 1px solid #1899B8;
}
#lo-greek-menu .menu-title {
  color: #1899B8;
}
@media (max-width: 768px) {
  #lo-greek-menu .menu-title {
    font-size: clamp(3.5rem, 56px + 8 * (100vw - 500px) / 268, 4rem);
  }
}
@media (max-width: 500px) {
  #lo-greek-menu .menu-title {
    font-size: clamp(3rem, 42px + 7 * (100vw - 360px) / 140, 3.5rem);
  }
}
@media (max-width: 768px) {
  #lo-greek-menu .menu-grid {
    gap: 40px;
  }
}
#lo-greek-menu .menu-grid .item {
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.2509803922));
  background-position: center;
  background-size: contain;
}
#lo-greek-menu .menu-grid .item:nth-child(odd) {
  background-image: url(../img/bg-greek-menu-blob-blue.svg);
}
@media (max-width: 500px) {
  #lo-greek-menu .menu-grid .item:nth-child(odd) {
    background-image: url(../img/bg-greek-menu-blob-blue-sp.svg);
  }
}
#lo-greek-menu .menu-grid .item:nth-child(odd) .inner {
  margin-right: initial;
}
#lo-greek-menu .menu-grid .item:nth-child(even) {
  background-image: url(../img/bg-greek-menu-blob-crem.svg);
}
@media (max-width: 500px) {
  #lo-greek-menu .menu-grid .item:nth-child(even) {
    background-image: url(../img/bg-greek-menu-blob-crem-sp.svg);
  }
}
@media (max-width: 500px) {
  #lo-greek-menu .menu-grid .item:nth-child(even) .inner {
    flex-direction: row-reverse;
  }
}
#lo-greek-menu .menu-grid .item:nth-child(2) .inner .content h3 {
  margin-bottom: 16px;
}
@media (max-width: 500px) {
  #lo-greek-menu .menu-grid .item:nth-child(2) .inner .content h3 {
    margin-bottom: 8px;
  }
}
#lo-greek-menu .menu-grid .item:nth-child(2) .inner .content .taste {
  margin-bottom: 16px;
  color: #333333;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#lo-greek-menu .menu-grid .item:nth-child(4) .inner {
  align-items: center;
}
#lo-greek-menu .menu-grid .item:nth-child(4) .size-detail {
  align-items: center;
}
#lo-greek-menu .menu-grid .item:nth-child(4) .size-detail .detail-wrapper {
  margin-top: initial;
}
#lo-greek-menu .menu-grid .item .inner {
  align-items: center;
}
@media (max-width: 500px) {
  #lo-greek-menu .menu-grid .item .inner {
    flex-direction: row;
  }
}
#lo-greek-menu .menu-grid .item .inner .content {
  color: #1899B8;
}
@media (max-width: 500px) {
  #lo-greek-menu .menu-grid .item .inner .pct {
    margin-top: initial;
  }
}
#lo-greek-menu .menu-grid .item .size-detail {
  display: flex;
  gap: 24px;
  text-align: center;
  justify-content: center;
  margin-top: 24px;
}
#lo-greek-menu .menu-grid .item .size-detail h4 {
  display: inline-block;
  background-color: #811F51;
  color: #ffffff;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 900;
  padding: 5px 10px;
}
#lo-greek-menu .menu-grid .item .size-detail .detail-wrapper {
  background-color: #ffffff;
  border: 1px solid #811F51;
  border-radius: 10px;
  padding: 20px 15px;
  margin-top: -10px;
}
#lo-greek-menu .price-banner {
  width: 300px;
  margin-left: 10%;
  margin-top: -60px;
}
@media (max-width: 768px) {
  #lo-greek-menu .price-banner {
    margin-top: 40px;
    margin-inline: auto;
  }
}
@media (max-width: 500px) {
  #lo-greek-menu .price-banner {
    width: 200px;
  }
}
#lo-greek-menu #customize {
  margin-top: 80px;
}
@media (max-width: 500px) {
  #lo-greek-menu #customize {
    margin-top: 40px;
  }
}
#lo-greek-menu #customize.wrapper {
  max-width: initial;
  width: min(1000px, 100% - 40px);
  border: 1px dashed #1899B8;
  border-radius: 20px;
  padding-block: 30px;
}
@media (max-width: 500px) {
  #lo-greek-menu #customize.wrapper {
    border: none;
  }
}
#lo-greek-menu #customize .title {
  display: flex;
  justify-content: space-between;
  max-width: 700px;
  margin-inline: auto;
}
#lo-greek-menu #customize .title .accent {
  width: 50px;
}
@media (max-width: 768px) {
  #lo-greek-menu #customize .title .accent {
    width: 30px;
  }
}
#lo-greek-menu #customize .title h2 {
  font-size: 2.25rem;
  color: #E32B69;
  position: relative;
}
@media (max-width: 768px) {
  #lo-greek-menu #customize .title h2 {
    font-size: clamp(1.5rem, 24px + 12 * (100vw - 500px) / 268, 2.25rem);
  }
}
@media (max-width: 500px) {
  #lo-greek-menu #customize .title h2 {
    font-size: 1.71rem;
  }
}
#lo-greek-menu #customize .title h2::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 20px;
  background-image: url(../img/line-yellow.webp);
  background-size: contain;
}
#lo-greek-menu #customize .sub-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 10px;
}
@media (max-width: 768px) {
  #lo-greek-menu #customize .sub-title {
    font-size: clamp(0.875rem, 14px + 6 * (100vw - 500px) / 268, 1.25rem);
  }
}
@media (max-width: 500px) {
  #lo-greek-menu #customize .sub-title {
    font-size: 1rem;
  }
}
#lo-greek-menu #customize .inner {
  position: relative;
  margin-top: 16px;
}
@media (max-width: 500px) {
  #lo-greek-menu #customize .inner {
    border: 1px dashed #1899B8;
    border-radius: 20px;
    padding: 20px 16px;
  }
}
#lo-greek-menu #customize .inner .list {
  display: flex;
}
@media (max-width: 500px) {
  #lo-greek-menu #customize .inner .list {
    flex-direction: column;
  }
}
#lo-greek-menu #customize .inner .list li {
  width: 33.3333333333%;
  padding-inline: 16px;
}
@media (max-width: 500px) {
  #lo-greek-menu #customize .inner .list li {
    width: 100%;
    padding-block: 20px;
  }
}
#lo-greek-menu #customize .inner .list li:not(:first-child) {
  border-left: 1px dashed #1899B8;
}
@media (max-width: 500px) {
  #lo-greek-menu #customize .inner .list li:not(:first-child) {
    border-top: 1px dashed #1899B8;
    border-left: none;
  }
}
#lo-greek-menu #customize .inner .list li .pct {
  width: 100px;
  margin-inline: auto;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  #lo-greek-menu #customize .inner .list li p {
    font-size: clamp(0.875rem, 14px + 2 * (100vw - 500px) / 268, 1rem);
  }
}
#lo-greek-menu #customize .inner .star li {
  position: absolute;
  top: -20px;
  z-index: -1;
  width: 45px;
}
@media (max-width: 768px) {
  #lo-greek-menu #customize .inner .star li {
    width: 30px;
  }
}
#lo-greek-menu #customize .inner .star li:nth-child(1) {
  left: 3%;
}
@media (max-width: 768px) {
  #lo-greek-menu #customize .inner .star li:nth-child(1) {
    top: initial;
    bottom: 0;
  }
}
@media (max-width: 500px) {
  #lo-greek-menu #customize .inner .star li:nth-child(1) {
    bottom: 10px;
  }
}
#lo-greek-menu #customize .inner .star li:nth-child(2) {
  right: 3%;
}
@media (max-width: 500px) {
  #lo-greek-menu #customize .inner .star li:nth-child(2) {
    top: 10px;
  }
}
#lo-greek-menu .menu-features {
  display: flex;
  gap: 20px;
  margin-top: 160px;
}
@media (max-width: 768px) {
  #lo-greek-menu .menu-features {
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  #lo-greek-menu .menu-features {
    margin-top: 80px;
  }
}
#lo-greek-menu .menu-features li {
  width: 33.3333333333%;
  border-radius: 20px;
  background-color: #ffffff;
  padding: 40px 16px;
  text-align: center;
}
@media (max-width: 768px) {
  #lo-greek-menu .menu-features li {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }
}
@media (max-width: 500px) {
  #lo-greek-menu .menu-features li {
    width: 100%;
    padding: 30px 16px;
  }
}
@media (max-width: 768px) {
  #lo-greek-menu .menu-features li:nth-child(2) {
    margin-left: auto;
  }
}
#lo-greek-menu .menu-features li .icon {
  width: 100px;
  margin-inline: auto;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  #lo-greek-menu .menu-features li .icon {
    margin-inline: initial;
  }
}
#lo-greek-menu .menu-features li h3 {
  margin-bottom: 12px;
  color: #1899B8;
  font-size: 1.5rem;
  font-weight: 400;
}
#lo-greek-menu .note {
  text-align: center;
}

#lo-drink-menu.lower {
  margin-bottom: initial;
}
#lo-drink-menu .menu-top {
  background-image: url(../img/menu-tapioka-mv.webp);
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
#lo-drink-menu .menu-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}
#lo-drink-menu .menu-top h1 {
  text-align: center;
}
@media (max-width: 768px) {
  #lo-drink-menu .menu-top h1 {
    font-size: clamp(4rem, 64px + 32 * (100vw - 500px) / 268, 6rem);
  }
}
@media (max-width: 500px) {
  #lo-drink-menu .menu-top h1 {
    font-size: 3.42rem;
  }
}
#lo-drink-menu .menu-lead {
  border: 1px solid #A0683B;
}
#lo-drink-menu .menu-title {
  color: #A0683B;
}
@media (max-width: 768px) {
  #lo-drink-menu .menu-title {
    font-size: clamp(3.5rem, 56px + 8 * (100vw - 500px) / 268, 4rem);
  }
}
@media (max-width: 500px) {
  #lo-drink-menu .menu-title {
    font-size: clamp(3rem, 42px + 7 * (100vw - 360px) / 140, 3.5rem);
  }
}
#lo-drink-menu .choice-menu {
  text-align: center;
  font-size: 1.15rem;
  margin-bottom: 32px;
}
@media (max-width: 500px) {
  #lo-drink-menu .choice-menu {
    margin-bottom: 16px;
  }
}
#lo-drink-menu .choice-menu span {
  position: relative;
}
#lo-drink-menu .choice-menu span::before, #lo-drink-menu .choice-menu span::after {
  content: "";
  position: absolute;
  top: 50%;
  background-color: #FFB538;
  height: 17px;
  width: 2px;
}
#lo-drink-menu .choice-menu span::before {
  left: -16px;
  transform: translateY(-50%) rotate(-30deg);
}
#lo-drink-menu .choice-menu span::after {
  right: -16px;
  transform: translateY(-50%) rotate(30deg);
}
#lo-drink-menu .tab {
  display: flex;
  text-align: center;
}
#lo-drink-menu .tab li {
  width: 50%;
  border-radius: 20px 20px 0 0;
  opacity: 0.5;
}
#lo-drink-menu .tab li a {
  color: #ffffff;
  font-size: 1.25rem;
  font-family: "Darumadrop One", sans-serif;
  padding-block: 14px;
  width: 100%;
}
#lo-drink-menu .tab li:nth-child(1) {
  background-color: #A0683B;
}
#lo-drink-menu .tab li:nth-child(2) {
  background-image: url(../img/bg-tapioca-brand.webp);
  background-size: cover;
}
#lo-drink-menu .tab li.active {
  opacity: 1;
}
#lo-drink-menu .tab-item {
  padding-block: 89px 14px;
  padding-inline: clamp(20px, 20px + 93 * (100vw - 768px) / 432, 113px);
  display: none;
  opacity: 0;
}
@media (max-width: 768px) {
  #lo-drink-menu .tab-item {
    padding: 89px 40px 14px;
  }
}
@media (max-width: 500px) {
  #lo-drink-menu .tab-item {
    padding: 89px 20px 14px;
  }
}
#lo-drink-menu .tab-item.is-active {
  display: block;
  animation: tab 1s forwards;
}
#lo-drink-menu #drink-menu-content {
  text-align: center;
  padding-bottom: 244px;
  background-color: #E1CAB3;
}
@media (max-width: 768px) {
  #lo-drink-menu #drink-menu-content .menu-grid {
    gap: 40px;
  }
}
#lo-drink-menu #drink-menu-content .menu-grid .item {
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.2509803922));
  background-position: center;
  background-size: contain;
}
#lo-drink-menu #drink-menu-content .menu-grid .item:nth-child(odd) {
  background-image: url(../img/bg-drink-menu-blob-brown.svg);
}
@media (max-width: 500px) {
  #lo-drink-menu #drink-menu-content .menu-grid .item:nth-child(odd) {
    background-image: url(../img/bg-drink-menu-blob-brown-sp.svg);
  }
}
@media (max-width: 1022px) {
  #lo-drink-menu #drink-menu-content .menu-grid .item:nth-child(odd):not(:first-of-type) {
    margin-top: -74px;
  }
}
@media (max-width: 768px) {
  #lo-drink-menu #drink-menu-content .menu-grid .item:nth-child(odd):not(:first-of-type) {
    margin-top: initial;
  }
}
#lo-drink-menu #drink-menu-content .menu-grid .item:nth-child(odd) .inner {
  margin-right: initial;
}
#lo-drink-menu #drink-menu-content .menu-grid .item:nth-child(even) {
  background-image: url(../img/bg-drink-menu-blob-crem.svg);
}
@media (max-width: 500px) {
  #lo-drink-menu #drink-menu-content .menu-grid .item:nth-child(even) {
    background-image: url(../img/bg-drink-menu-blob-bcream-sp.svg);
  }
}
@media (max-width: 500px) {
  #lo-drink-menu #drink-menu-content .menu-grid .item:nth-child(even) .inner {
    flex-direction: row-reverse;
  }
}
@media (max-width: 1022px) {
  #lo-drink-menu #drink-menu-content .menu-grid .item:nth-child(2) {
    margin-top: 74px;
  }
}
@media (max-width: 768px) {
  #lo-drink-menu #drink-menu-content .menu-grid .item:nth-child(2) {
    margin-top: initial;
  }
}
#lo-drink-menu #drink-menu-content .menu-grid .item:nth-child(2) .inner .content h3 {
  margin-bottom: 16px;
}
@media (max-width: 500px) {
  #lo-drink-menu #drink-menu-content .menu-grid .item:nth-child(2) .inner .content h3 {
    margin-bottom: 8px;
  }
}
#lo-drink-menu #drink-menu-content .menu-grid .item:nth-child(2) .inner .content .taste {
  margin-bottom: 16px;
  color: #333333;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#lo-drink-menu #drink-menu-content .menu-grid .item:nth-child(4) .inner {
  align-items: center;
}
#lo-drink-menu #drink-menu-content .menu-grid .item:nth-child(4) .size-detail {
  align-items: center;
}
#lo-drink-menu #drink-menu-content .menu-grid .item:nth-child(4) .size-detail .detail-wrapper {
  margin-top: initial;
}
#lo-drink-menu #drink-menu-content .menu-grid .item:nth-child(n+7):nth-child(odd) .inner {
  padding-left: clamp(40px, 40px + 80 * (100vw - 768px) / 512, 120px);
}
@media (max-width: 768px) {
  #lo-drink-menu #drink-menu-content .menu-grid .item:nth-child(n+7):nth-child(odd) .inner {
    padding-left: initial;
  }
}
#lo-drink-menu #drink-menu-content .menu-grid .item:nth-child(n+7):nth-child(even) .inner {
  padding-right: clamp(0px, 0px + 110 * (100vw - 768px) / 512, 110px);
}
@media (max-width: 768px) {
  #lo-drink-menu #drink-menu-content .menu-grid .item:nth-child(n+7):nth-child(even) .inner {
    padding-right: initial;
  }
}
#lo-drink-menu #drink-menu-content .menu-grid .item:nth-child(n+7):last-child .inner {
  padding-right: initial;
}
#lo-drink-menu #drink-menu-content .menu-grid .item:nth-child(n+7):last-child .inner h3 {
  margin-bottom: 8px;
}
#lo-drink-menu #drink-menu-content .menu-grid .item:nth-child(n+7):last-child .inner .taste {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#lo-drink-menu #drink-menu-content .menu-grid .item .inner {
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  #lo-drink-menu #drink-menu-content .menu-grid .item .inner {
    justify-content: center;
  }
}
@media (max-width: 500px) {
  #lo-drink-menu #drink-menu-content .menu-grid .item .inner {
    flex-direction: row;
  }
}
#lo-drink-menu #drink-menu-content .menu-grid .item .inner .content {
  color: #A0683B;
  width: initial;
  display: inline-block;
}
#lo-drink-menu #drink-menu-content .menu-grid .item .inner .pct {
  width: auto;
}
@media (max-width: 500px) {
  #lo-drink-menu #drink-menu-content .menu-grid .item .inner .pct {
    margin-top: initial;
  }
}
#lo-drink-menu #drink-menu-content .menu-grid .item .inner .pct img {
  height: 200px;
}
@media (max-width: 1022px) {
  #lo-drink-menu #drink-menu-content .menu-grid .item .inner .pct img {
    height: 140px;
  }
}
@media (max-width: 768px) {
  #lo-drink-menu #drink-menu-content .menu-grid .item .inner .pct img {
    height: 200px;
  }
}
#lo-drink-menu #drink-menu-content .menu-grid .item .size-detail {
  display: flex;
  gap: 24px;
  text-align: center;
  justify-content: center;
  margin-top: 24px;
}
#lo-drink-menu #drink-menu-content .menu-grid .item .size-detail h4 {
  display: inline-block;
  background-color: #811F51;
  color: #ffffff;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 900;
  padding: 5px 10px;
}
#lo-drink-menu #drink-menu-content .menu-grid .item .size-detail .detail-wrapper {
  background-color: #ffffff;
  border: 1px solid #811F51;
  border-radius: 10px;
  padding: 20px 15px;
  margin-top: -10px;
}
#lo-drink-menu #collaboration-menu-content {
  text-align: center;
  background-image: url(../img/bg-tapioca-brand.webp);
  background-size: cover;
  background-position: center;
  padding-bottom: 244px;
}
#lo-drink-menu #collaboration-menu-content h2 {
  color: #ffffff;
}
#lo-drink-menu #collaboration-menu-content h2::before, #lo-drink-menu #collaboration-menu-content h2::after {
  display: none;
}
@media (max-width: 768px) {
  #lo-drink-menu #collaboration-menu-content .menu-grid {
    gap: 40px;
  }
}
#lo-drink-menu #collaboration-menu-content .menu-grid .item {
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.2509803922));
  background-size: contain;
  background-position: center;
}
#lo-drink-menu #collaboration-menu-content .menu-grid .item:nth-child(odd) {
  background-image: url(../img/bg-drink-menu-blob-black-a.svg);
}
@media (max-width: 500px) {
  #lo-drink-menu #collaboration-menu-content .menu-grid .item:nth-child(odd) {
    background-image: url(../img/bg-drink-menu-blob-black-a-sp.svg);
  }
}
#lo-drink-menu #collaboration-menu-content .menu-grid .item:nth-child(odd) .inner {
  margin-right: initial;
}
#lo-drink-menu #collaboration-menu-content .menu-grid .item:nth-child(even) {
  background-image: url(../img/bg-drink-menu-blob-black-b.svg);
}
@media (max-width: 500px) {
  #lo-drink-menu #collaboration-menu-content .menu-grid .item:nth-child(even) {
    background-image: url(../img/bg-drink-menu-blob-black-b-sp.svg);
  }
}
@media (max-width: 500px) {
  #lo-drink-menu #collaboration-menu-content .menu-grid .item:nth-child(even) .inner {
    flex-direction: row-reverse;
  }
}
#lo-drink-menu #collaboration-menu-content .menu-grid .item:nth-child(2) .inner .content h3 {
  margin-bottom: 16px;
}
@media (max-width: 500px) {
  #lo-drink-menu #collaboration-menu-content .menu-grid .item:nth-child(2) .inner .content h3 {
    margin-bottom: 8px;
  }
}
#lo-drink-menu #collaboration-menu-content .menu-grid .item:nth-child(2) .inner .content .taste {
  margin-bottom: 16px;
  color: #333333;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#lo-drink-menu #collaboration-menu-content .menu-grid .item:nth-child(4) .inner {
  align-items: center;
}
#lo-drink-menu #collaboration-menu-content .menu-grid .item:nth-child(4) .size-detail {
  align-items: center;
}
#lo-drink-menu #collaboration-menu-content .menu-grid .item:nth-child(4) .size-detail .detail-wrapper {
  margin-top: initial;
}
#lo-drink-menu #collaboration-menu-content .menu-grid .item .inner {
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 500px) {
  #lo-drink-menu #collaboration-menu-content .menu-grid .item .inner {
    flex-direction: row;
  }
}
#lo-drink-menu #collaboration-menu-content .menu-grid .item .inner .content {
  color: #D4A71B;
  width: initial;
  display: inline-block;
}
#lo-drink-menu #collaboration-menu-content .menu-grid .item .inner .pct {
  width: auto;
}
@media (max-width: 500px) {
  #lo-drink-menu #collaboration-menu-content .menu-grid .item .inner .pct {
    margin-top: initial;
  }
}
#lo-drink-menu #collaboration-menu-content .menu-grid .item .inner .pct img {
  height: 200px;
}
#lo-drink-menu #collaboration-menu-content .menu-grid .item .size-detail {
  display: flex;
  gap: 24px;
  text-align: center;
  justify-content: center;
  margin-top: 24px;
}
#lo-drink-menu #collaboration-menu-content .menu-grid .item .size-detail h4 {
  display: inline-block;
  background-color: #811F51;
  color: #ffffff;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 900;
  padding: 5px 10px;
}
#lo-drink-menu #collaboration-menu-content .menu-grid .item .size-detail .detail-wrapper {
  background-color: #ffffff;
  border: 1px solid #811F51;
  border-radius: 10px;
  padding: 20px 15px;
  margin-top: -10px;
}
#lo-drink-menu #collaboration-menu-content .note-menu {
  color: #ffffff;
}
@media (max-width: 500px) {
  #lo-drink-menu .note-menu {
    padding-inline: initial;
  }
}

.lower-top {
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
  height: 90vh;
  color: #ffffff;
  gap: 24px;
  margin-bottom: 80px;
}
.lower-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}
.lower-top h1 {
  font-family: "Darumadrop One", sans-serif;
  font-size: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (max-width: 500px) {
  .lower-top h1 {
    font-size: 4.57rem;
  }
}
.lower-top h1 span {
  font-size: 2.25rem;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media (max-width: 500px) {
  .lower-top h1 span {
    font-size: 1.71rem;
  }
}

#lo-about .lower-top {
  background-image: url(../img/about-us-mv.webp);
  margin-bottom: initial;
  height: 70vh;
}
#lo-about .lower-top .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50vh;
}
#lo-about .lower-top .wave {
  position: absolute;
  bottom: -1px;
  left: 0;
}
#lo-about h2 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 54px;
}
@media (max-width: 500px) {
  #lo-about h2 {
    font-size: 1.71rem;
    margin-bottom: 24px;
  }
}
#lo-about .contents p {
  font-size: 1.125rem;
  line-height: 40px;
}
@media (max-width: 500px) {
  #lo-about .contents p {
    font-size: 1rem;
    line-height: 28px;
  }
}
#lo-about .contents p:not(:first-of-type) {
  margin-top: 1.5em;
}
@media (max-width: 1022px) {
  #lo-about .contents .pct {
    margin-top: 40px;
  }
}
@media (max-width: 500px) {
  #lo-about .contents .pct {
    margin-top: 32px;
  }
}
#lo-about .contents .pct li {
  position: absolute;
}
#lo-about .contents .pct li img {
  border-radius: 50px;
}
@media (max-width: 500px) {
  #lo-about .contents .pct li img {
    border-radius: 20px;
  }
}
#lo-about #culture {
  background-color: #FFEAF5;
  padding-block: 80px 25px;
  position: relative;
  overflow-x: hidden;
}
@media (max-width: 1022px) {
  #lo-about #culture {
    overflow-x: initial;
  }
}
@media (max-width: 500px) {
  #lo-about #culture {
    padding-block: initial;
  }
}
#lo-about #culture .wrapper {
  max-width: 600px;
}
@media (max-width: 1022px) {
  #lo-about #culture .pct {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 1022px) {
  #lo-about #culture .pct li {
    position: initial;
  }
}
#lo-about #culture .pct li:nth-child(1) {
  width: clamp(235px, 235px + 90 * (100vw - 1022px) / 198, 325px);
  left: -10px;
  bottom: 5%;
}
@media (max-width: 1022px) {
  #lo-about #culture .pct li:nth-child(1) {
    width: 325px;
  }
}
@media (max-width: 768px) {
  #lo-about #culture .pct li:nth-child(1) {
    width: 200px;
  }
}
@media (max-width: 500px) {
  #lo-about #culture .pct li:nth-child(1) {
    width: 133px;
  }
}
#lo-about #culture .pct li:nth-child(2) {
  width: clamp(277px, 277px + 140 * (100vw - 1022px) / 198, 417px);
  right: -60px;
  top: 20%;
}
@media (max-width: 1022px) {
  #lo-about #culture .pct li:nth-child(2) {
    width: 417px;
  }
}
@media (max-width: 768px) {
  #lo-about #culture .pct li:nth-child(2) {
    width: 300px;
  }
}
@media (max-width: 500px) {
  #lo-about #culture .pct li:nth-child(2) {
    width: 225px;
  }
}
#lo-about #freedom {
  background-image: url(../img/bg-2.webp);
  background-size: cover;
  background-position: bottom;
  padding-bottom: 230px;
  position: relative;
  z-index: -1;
}
@media (max-width: 500px) {
  #lo-about #freedom {
    margin-top: -10px;
    padding-bottom: 90px;
  }
}
#lo-about #freedom .content {
  margin-left: auto;
  max-width: 600px;
}
@media (max-width: 1022px) {
  #lo-about #freedom .content {
    margin-inline: auto;
  }
}
@media (max-width: 1022px) {
  #lo-about #freedom .pct {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
}
@media (max-width: 1022px) {
  #lo-about #freedom .pct li {
    position: initial;
  }
}
#lo-about #freedom .pct li:nth-child(1) {
  width: clamp(266px, 266px + 70 * (100vw - 1022px) / 198, 336px);
  left: 0;
  top: 40%;
}
@media (max-width: 500px) {
  #lo-about #freedom .pct li:nth-child(1) {
    width: 150px;
  }
}
#lo-about #freedom .pct li:nth-child(2) {
  width: clamp(300px, 300px + 100 * (100vw - 1022px) / 198, 400px);
  left: clamp(86px, 86px + 90 * (100vw - 1022px) / 198, 176px);
  top: 55%;
}
@media (max-width: 1022px) {
  #lo-about #freedom .pct li:nth-child(2) {
    margin-top: 56px;
    margin-left: -30px;
  }
}
@media (max-width: 500px) {
  #lo-about #freedom .pct li:nth-child(2) {
    width: 200px;
  }
}
#lo-about #history {
  background-color: #811F51;
  position: relative;
  z-index: 1;
  padding-bottom: 217px;
}
@media (max-width: 500px) {
  #lo-about #history {
    padding-bottom: 60px;
  }
}
#lo-about #history .wave {
  position: absolute;
  bottom: calc(100% - 120px);
  z-index: -1;
}
@media (max-width: 1022px) {
  #lo-about #history .wave {
    bottom: calc(100% - 90px);
  }
}
@media (max-width: 768px) {
  #lo-about #history .wave {
    bottom: calc(100% - 50px);
  }
}
@media (max-width: 500px) {
  #lo-about #history .wave {
    bottom: calc(100% - 30px);
  }
}
#lo-about #history h2 {
  color: #ffffff;
  display: flex;
  flex-direction: column;
}
@media (max-width: 500px) {
  #lo-about #history h2 {
    text-align: center;
  }
}
#lo-about #history h2 span {
  font-size: 1.5rem;
  color: #D4A71B;
  font-family: "Darumadrop One", sans-serif;
}
#lo-about #history .inner {
  display: flex;
  gap: 80px;
}
@media (max-width: 768px) {
  #lo-about #history .inner {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
#lo-about #history .inner .pct {
  width: 40%;
  margin-top: initial;
}
@media (max-width: 768px) {
  #lo-about #history .inner .pct {
    width: 70%;
  }
}
@media (max-width: 500px) {
  #lo-about #history .inner .pct {
    width: 200px;
  }
}
#lo-about #history .inner .pct img {
  border-radius: 50px;
}
@media (max-width: 500px) {
  #lo-about #history .inner .pct img {
    border-radius: 20px;
  }
}
#lo-about #history .inner .content {
  width: 60%;
  color: #ffffff;
}
@media (max-width: 768px) {
  #lo-about #history .inner .content {
    width: 100%;
  }
}
#lo-about #history .timeline {
  background-color: #ffffff;
  border-radius: 30px;
  overflow-y: scroll;
  padding: 28px 50px;
  height: 489px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  #lo-about #history .timeline {
    padding: 21px 23px;
  }
}
#lo-about #history .timeline li {
  display: flex;
  align-items: flex-start;
  position: relative;
  gap: 5%;
}
@media (max-width: 500px) {
  #lo-about #history .timeline li {
    flex-direction: column;
    align-items: flex-start;
  }
}
#lo-about #history .timeline li:not(:first-of-type) {
  padding-top: 40px;
}
#lo-about #history .timeline li:nth-child(even) .pct {
  width: 100px;
}
@media (max-width: 500px) {
  #lo-about #history .timeline li:nth-child(even) .pct {
    width: 300px;
    height: 150px;
  }
}
#lo-about #history .timeline li:nth-child(odd) .pct {
  width: 120px;
}
@media (max-width: 500px) {
  #lo-about #history .timeline li:nth-child(odd) .pct {
    width: 300px;
    height: 150px;
  }
}
#lo-about #history .timeline li:nth-child(3n) .pct {
  width: 150px;
}
@media (max-width: 500px) {
  #lo-about #history .timeline li:nth-child(3n) .pct {
    width: 300px;
    height: 150px;
  }
}
#lo-about #history .timeline li:nth-child(4n) .pct {
  transform: translateY(-5px);
}
#lo-about #history .timeline li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8px;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  border-left: 3px dashed #811F51;
  opacity: 0.7;
}
#lo-about #history .timeline .left {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media (max-width: 768px) {
  #lo-about #history .timeline .left {
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  #lo-about #history .timeline .left {
    gap: 8px;
  }
}
#lo-about #history .timeline time {
  color: #811F51;
  font-size: 2rem;
  flex-shrink: 0;
  width: 250px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 500px) {
  #lo-about #history .timeline time {
    font-size: 1.75rem;
  }
}
#lo-about #history .timeline time span {
  opacity: 0.56;
  text-wrap: nowrap;
}
#lo-about #history .timeline time::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #811F51;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 1;
}
#lo-about #history .timeline .content {
  margin-top: 8px;
}
@media (max-width: 768px) {
  #lo-about #history .timeline .content {
    margin-left: 30px;
  }
}
#lo-about #history .timeline h3 {
  color: #811F51;
  font-size: 1.25rem;
  font-weight: 400;
}
#lo-about #history .timeline .pct {
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
@media (max-width: 1022px) {
  #lo-about #history .timeline .pct {
    margin-top: initial;
  }
}
@media (max-width: 500px) {
  #lo-about #history .timeline .pct {
    aspect-ratio: initial;
    margin-left: 30px;
  }
}
#lo-about #history .timeline .pct img {
  border-radius: 50%;
  height: 100%;
}
@media (max-width: 500px) {
  #lo-about #history .timeline .pct img {
    border-radius: 5px;
  }
}
#lo-about #company {
  position: relative;
  z-index: 1;
  background-color: #FFEAF5;
  padding-bottom: 160px;
}
@media (max-width: 500px) {
  #lo-about #company {
    padding-block: 40px 80px;
  }
}
#lo-about #company .wave {
  position: absolute;
  bottom: 99%;
  z-index: -1;
}
#lo-about #company .wrapper {
  max-width: 1000px;
}
#lo-about #company h2 {
  color: #333333;
  display: flex;
  flex-direction: column;
  text-align: center;
}
#lo-about #company h2 span {
  font-size: 1.5rem;
  color: #D4A71B;
  font-family: "Darumadrop One", sans-serif;
}
#lo-about #company h3 {
  font-size: 3rem;
  font-weight: 500;
  color: #811F51;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 500px) {
  #lo-about #company h3 {
    font-size: 2.57rem;
  }
}
#lo-about #company .copy {
  font-size: 2.25rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 500px) {
  #lo-about #company .copy {
    font-size: 1.71rem;
  }
}
#lo-about #company .detail {
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 500px) {
  #lo-about #company .detail {
    font-size: 1rem;
  }
}
#lo-about #company .map {
  max-width: 840px;
  margin: 40px auto 64px;
}
#lo-about #company dl {
  display: flex;
  flex-wrap: wrap;
}
#lo-about #company .term,
#lo-about #company .description {
  border-bottom: 1px solid #A5A3A3;
  padding-block: 30px;
}
@media (max-width: 500px) {
  #lo-about #company .term,
  #lo-about #company .description {
    padding-block: 15px;
  }
}
#lo-about #company .term {
  padding-left: 40px;
  width: 20%;
  font-size: 1.125rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  #lo-about #company .term {
    width: 30%;
  }
}
@media (max-width: 500px) {
  #lo-about #company .term {
    padding-left: 20px;
    width: 32%;
  }
}
#lo-about #company .description {
  padding-right: 40px;
  width: 80%;
}
@media (max-width: 768px) {
  #lo-about #company .description {
    width: 70%;
  }
}
@media (max-width: 500px) {
  #lo-about #company .description {
    padding-right: 20px;
    width: 68%;
  }
}
#lo-about #company .description dt {
  width: 20%;
}
@media (max-width: 768px) {
  #lo-about #company .description dt {
    width: 30%;
  }
}
@media (max-width: 500px) {
  #lo-about #company .description dt {
    width: 40%;
  }
}
#lo-about #company .description dd {
  width: 80%;
}
@media (max-width: 768px) {
  #lo-about #company .description dd {
    width: 70%;
  }
}
@media (max-width: 500px) {
  #lo-about #company .description dd {
    width: 60%;
  }
}
#lo-about .banner-btn {
  position: relative;
  z-index: 1;
}
#lo-about .banner-btn .wave {
  position: absolute;
  top: -60px;
  left: 0;
  z-index: -1;
}
#lo-about .banner-btn .wrapper {
  max-width: 1000px;
}
#lo-about .banner-btn ul {
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  #lo-about .banner-btn ul {
    flex-direction: column;
  }
}
#lo-about .banner-btn ul li {
  width: 33.3333333333%;
  padding: 20px;
  border-radius: 20px;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  #lo-about .banner-btn ul li {
    width: 100%;
  }
}
#lo-about .banner-btn ul li a {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
#lo-about .banner-btn ul li a:hover {
  opacity: 0.5;
}
#lo-about .banner-btn ul li img {
  border-radius: 20px;
  height: 150px;
}
#lo-about .banner-btn ul li h3 {
  font-size: 1.5rem;
  text-align: center;
}
#lo-about .banner-btn ul li:nth-child(3) img {
  -o-object-position: top;
     object-position: top;
}
@media (max-width: 768px) {
  #lo-about .banner-btn ul li:nth-child(3) img {
    -o-object-position: center -100px;
       object-position: center -100px;
  }
}
@media (max-width: 500px) {
  #lo-about .banner-btn ul li:nth-child(3) img {
    -o-object-position: center top;
       object-position: center top;
  }
}

.lower-top {
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
  height: 50vh;
  color: #ffffff;
  gap: 24px;
  margin-bottom: 160px;
}
@media (max-width: 500px) {
  .lower-top {
    margin-bottom: 80px;
    height: 40vh;
  }
}
.lower-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}
.lower-top h1 {
  font-family: "Darumadrop One", sans-serif;
  font-size: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .lower-top h1 {
    line-height: 75px;
  }
}
@media (max-width: 500px) {
  .lower-top h1 {
    font-size: 4.57rem;
    line-height: 48px;
  }
}
.lower-top h1 span {
  font-size: 2.25rem;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media (max-width: 500px) {
  .lower-top h1 span {
    font-size: 1.71rem;
  }
}

#lo-how-to-order .lower-top {
  background-image: url(../img/how-to-order-mv.webp);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#lo-how-to-order h2 {
  font-size: 1.5rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 40px;
}
@media (max-width: 500px) {
  #lo-how-to-order h2 {
    font-size: clamp(1.28rem, 17.92px + 3.08 * (100vw - 360px) / 140, 1.5rem);
    margin-bottom: 24px;
  }
}
#lo-how-to-order section {
  text-align: center;
}
#lo-how-to-order #procedure h2 {
  position: relative;
}
#lo-how-to-order #procedure h2::before, #lo-how-to-order #procedure h2::after {
  content: "";
  position: absolute;
  top: 50%;
  background-color: #333333;
  height: 20px;
  width: 2px;
}
@media (max-width: 768px) {
  #lo-how-to-order #procedure h2::before, #lo-how-to-order #procedure h2::after {
    top: initial;
    bottom: 0;
    height: 34px;
  }
}
#lo-how-to-order #procedure h2::before {
  left: -16px;
  transform: translateY(-50%) rotate(-30deg);
}
@media (max-width: 768px) {
  #lo-how-to-order #procedure h2::before {
    transform: rotate(-30deg);
  }
}
#lo-how-to-order #procedure h2::after {
  right: -16px;
  transform: translateY(-50%) rotate(30deg);
}
@media (max-width: 768px) {
  #lo-how-to-order #procedure h2::after {
    transform: rotate(30deg);
  }
}
#lo-how-to-order #procedure .merchandise {
  margin-bottom: 40px;
}
#lo-how-to-order #procedure .item {
  display: flex;
  filter: drop-shadow(10px 10px 4px rgba(0, 0, 0, 0.1019607843));
}
@media (max-width: 768px) {
  #lo-how-to-order #procedure .item {
    flex-direction: column;
  }
}
#lo-how-to-order #procedure .item.acai .heading {
  background-color: #811F51;
}
#lo-how-to-order #procedure .item.acai ol {
  background-color: #FFEAF5;
}
#lo-how-to-order #procedure .item.acai .step {
  background-color: #811F51;
}
#lo-how-to-order #procedure .item.acai .step-wrapper:nth-child(1) {
  width: 40%;
}
@media (max-width: 500px) {
  #lo-how-to-order #procedure .item.acai .step-wrapper:nth-child(1) {
    width: 100%;
  }
}
#lo-how-to-order #procedure .item.acai .step-wrapper:nth-child(2), #lo-how-to-order #procedure .item.acai .step-wrapper:nth-child(3) {
  width: 30%;
}
@media (max-width: 500px) {
  #lo-how-to-order #procedure .item.acai .step-wrapper:nth-child(2), #lo-how-to-order #procedure .item.acai .step-wrapper:nth-child(3) {
    width: 100%;
  }
}
#lo-how-to-order #procedure .item.acai .inner .size li {
  color: #811F51;
  background-color: #FFEAF5;
}
#lo-how-to-order #procedure .item.greek .heading {
  background-color: #1899B8;
}
#lo-how-to-order #procedure .item.greek ol {
  background-color: #DEEDEE;
}
#lo-how-to-order #procedure .item.greek .step {
  background-color: #1899B8;
}
#lo-how-to-order #procedure .item.greek .step-wrapper:nth-child(1) {
  width: 40%;
}
@media (max-width: 500px) {
  #lo-how-to-order #procedure .item.greek .step-wrapper:nth-child(1) {
    width: 100%;
  }
}
#lo-how-to-order #procedure .item.greek .step-wrapper:nth-child(2), #lo-how-to-order #procedure .item.greek .step-wrapper:nth-child(3) {
  width: 30%;
}
@media (max-width: 500px) {
  #lo-how-to-order #procedure .item.greek .step-wrapper:nth-child(2), #lo-how-to-order #procedure .item.greek .step-wrapper:nth-child(3) {
    width: 100%;
  }
}
#lo-how-to-order #procedure .item.drink .heading {
  background-color: #A0683B;
}
#lo-how-to-order #procedure .item.drink .heading .pct img {
  width: auto;
  height: 182px;
}
#lo-how-to-order #procedure .item.drink ol {
  background-color: #E1CAB3;
}
#lo-how-to-order #procedure .item.drink .step {
  background-color: #A0683B;
}
#lo-how-to-order #procedure .item.drink .step-wrapper:nth-child(1), #lo-how-to-order #procedure .item.drink .step-wrapper:nth-child(2) {
  width: 50%;
}
@media (max-width: 500px) {
  #lo-how-to-order #procedure .item.drink .step-wrapper:nth-child(1), #lo-how-to-order #procedure .item.drink .step-wrapper:nth-child(2) {
    width: 100%;
  }
}
#lo-how-to-order #procedure .item.drink .inner .size li {
  color: #A0683B;
  background-color: #E1CAB3;
}
#lo-how-to-order #procedure .item:not(:first-of-type) {
  margin-top: 80px;
}
#lo-how-to-order #procedure .item .heading {
  width: 221px;
  border-radius: 20px 0 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 1022px) {
  #lo-how-to-order #procedure .item .heading {
    width: 150px;
  }
}
@media (max-width: 768px) {
  #lo-how-to-order #procedure .item .heading {
    width: 100%;
    border-radius: 20px 20px 0 0;
    flex-direction: row;
    align-items: center;
  }
}
#lo-how-to-order #procedure .item .heading h3 {
  font-size: 2rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}
#lo-how-to-order #procedure .item .heading h3 span {
  font-size: 1rem;
}
@media (max-width: 768px) {
  #lo-how-to-order #procedure .item .heading h3 .br-spc {
    display: none;
  }
}
@media (max-width: 768px) {
  #lo-how-to-order #procedure .item .heading .pct {
    width: 200px;
  }
}
#lo-how-to-order #procedure .item ol {
  display: flex;
  gap: 40px;
  padding: 32px;
  border-radius: 0 20px 20px 0;
  flex: 1;
}
@media (max-width: 1022px) {
  #lo-how-to-order #procedure .item ol {
    gap: 12px;
    padding: 16px;
  }
}
@media (max-width: 500px) {
  #lo-how-to-order #procedure .item ol {
    flex-direction: column;
    gap: 40px;
  }
}
#lo-how-to-order #procedure .item .step {
  font-size: 1rem;
  font-weight: 900;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  #lo-how-to-order #procedure .item .step {
    width: 80px;
    height: 80px;
  }
}
#lo-how-to-order #procedure .item .step span {
  font-size: 2.25rem;
  line-height: 1;
}
#lo-how-to-order #procedure .item .step-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
#lo-how-to-order #procedure .item .step-wrapper .arrow {
  position: absolute;
  top: 50%;
  right: -57px;
  z-index: 3;
  transform: translateY(-50%);
  width: 74px;
  height: 2px;
  background-color: #333333;
  border-radius: 2px;
}
@media (max-width: 1022px) {
  #lo-how-to-order #procedure .item .step-wrapper .arrow {
    right: -21px;
    width: 34px;
  }
}
@media (max-width: 500px) {
  #lo-how-to-order #procedure .item .step-wrapper .arrow {
    right: initial;
    top: initial;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%) rotate(90deg);
  }
}
#lo-how-to-order #procedure .item .step-wrapper .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
  border-radius: 2px;
}
#lo-how-to-order #procedure .item .inner {
  background-color: #ffffff;
  padding: 80px 22px 40px;
  border-radius: 20px;
  flex: 1;
  margin-top: -50px;
  width: 100%;
}
@media (max-width: 1022px) {
  #lo-how-to-order #procedure .item .inner {
    padding: 80px 12px 40px;
  }
}
#lo-how-to-order #procedure .item .inner .icon {
  width: 50px;
  margin-inline: auto;
}
#lo-how-to-order #procedure .item .inner .topping {
  width: 120px;
  margin-inline: auto;
}
#lo-how-to-order #procedure .item .inner h4 {
  font-size: 1.5rem;
  margin-block: 8px 40px;
}
@media (max-width: 768px) {
  #lo-how-to-order #procedure .item .inner h4 {
    font-size: clamp(1.25rem, 20px + 4 * (100vw - 500px) / 268, 1.5rem);
  }
}
@media (max-width: 500px) {
  #lo-how-to-order #procedure .item .inner h4 {
    font-size: 1.42rem;
  }
}
@media (max-width: 500px) {
  #lo-how-to-order #procedure .item .inner h4 .br-pc {
    display: none;
  }
}
#lo-how-to-order #procedure .item .inner .size {
  display: flex;
  gap: 12px;
  justify-content: center;
}
@media (max-width: 768px) {
  #lo-how-to-order #procedure .item .inner .size {
    gap: 6px;
  }
}
#lo-how-to-order #procedure .item .inner .size li {
  font-size: 2rem;
  font-weight: 900;
  color: #811F51;
  background-color: #FFEAF5;
  border-radius: 50%;
  width: 33.3333333333%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  #lo-how-to-order #procedure .item .inner .size li {
    font-size: 1.5rem;
  }
}
@media (max-width: 500px) {
  #lo-how-to-order #procedure .item .inner .size li {
    width: 50px;
  }
}
#lo-how-to-order #procedure .item .inner p {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 40px;
}
@media (max-width: 1022px) {
  #lo-how-to-order #procedure .item .inner p {
    font-size: clamp(1rem, 16px + 4 * (100vw - 768px) / 254, 1.25rem);
  }
}
@media (max-width: 500px) {
  #lo-how-to-order #procedure .item .inner p {
    font-size: 1.14rem;
  }
}
#lo-how-to-order #flavor {
  max-width: 1000px;
  margin-inline: auto;
  margin-bottom: 80px;
}
#lo-how-to-order #flavor .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 500px) {
  #lo-how-to-order #flavor .title {
    justify-content: center;
  }
}
#lo-how-to-order #flavor .title::before, #lo-how-to-order #flavor .title::after {
  content: "";
  display: inline-block;
  width: 30%;
  height: 2px;
  background-color: #333333;
}
@media (max-width: 500px) {
  #lo-how-to-order #flavor .title::before, #lo-how-to-order #flavor .title::after {
    display: none;
  }
}
#lo-how-to-order #flavor .title .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#lo-how-to-order #flavor .title .icon {
  width: 24px;
}
#lo-how-to-order #flavor .title h2 {
  margin-bottom: initial;
  margin-inline: 16px;
}
#lo-how-to-order #flavor .title h2::before, #lo-how-to-order #flavor .title h2::after {
  display: none;
}
#lo-how-to-order #flavor ul {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}
@media (max-width: 1022px) {
  #lo-how-to-order #flavor ul {
    grid-template-columns: repeat(4, 150px);
    justify-content: center;
  }
}
@media (max-width: 768px) {
  #lo-how-to-order #flavor ul {
    grid-template-columns: repeat(auto-fill, 100px);
  }
}
@media (max-width: 500px) {
  #lo-how-to-order #flavor ul {
    grid-template-columns: repeat(auto-fill, 90px);
  }
}
#lo-how-to-order #flavor ul h3 {
  font-size: 0.875rem;
  width: 100px;
  border-radius: 10px;
  padding-block: 6.5px;
  text-align: center;
  margin-inline: auto;
  margin-top: 14px;
}
@media (max-width: 500px) {
  #lo-how-to-order #flavor ul h3 {
    width: 90px;
  }
}
#lo-how-to-order #flavor ul .plain h3 {
  color: #1899B8;
  background-color: #EBF3F4;
}
#lo-how-to-order #flavor ul .strawberry h3 {
  color: #EB4647;
  background-color: #FDEEEB;
}
#lo-how-to-order #flavor ul .matcha h3 {
  color: #4D6905;
  background-color: #F4F5E5;
}
#lo-how-to-order #flavor ul .chocolate h3 {
  color: #763C12;
  background-color: #F4EBE4;
}
#lo-how-to-order #flavor ul .black-sesame h3 {
  color: #312E2D;
  background-color: #F2EFED;
}
#lo-how-to-order #flavor ul .oreo h3 {
  color: #0D3B73;
  background-color: #E7EAF4;
}
#lo-how-to-order #flavor ul .caramel h3 {
  color: #B25811;
  background-color: #FEEEDF;
}
#lo-how-to-order #flavor .note {
  text-align: right;
  margin-top: 10px;
}
#lo-how-to-order .guide {
  background-color: #ffffff;
  border-radius: 20px;
  margin-block: 80px;
  display: flex;
  padding: 30px;
  text-align: left;
}
@media (max-width: 768px) {
  #lo-how-to-order .guide {
    padding: 16px;
  }
}
@media (max-width: 500px) {
  #lo-how-to-order .guide {
    flex-direction: column;
    padding: 30px;
    margin-block: 80px 40px;
  }
}
#lo-how-to-order .guide h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  #lo-how-to-order .guide h3 {
    font-size: clamp(1.25rem, 20px + 4 * (100vw - 500px) / 268, 1.5rem);
  }
}
@media (max-width: 500px) {
  #lo-how-to-order .guide h3 {
    font-size: clamp(1.125rem, 15.75px + 4.13 * (100vw - 360px) / 140, 1.42rem);
  }
}
#lo-how-to-order .guide .left,
#lo-how-to-order .guide .right {
  width: 50%;
}
@media (max-width: 500px) {
  #lo-how-to-order .guide .left,
  #lo-how-to-order .guide .right {
    width: 100%;
  }
}
#lo-how-to-order .guide .left {
  border-right: 2px dotted #333333;
  padding-right: 30px;
}
@media (max-width: 768px) {
  #lo-how-to-order .guide .left {
    padding-right: 16px;
  }
}
@media (max-width: 500px) {
  #lo-how-to-order .guide .left {
    padding-right: initial;
    border-right: none;
    padding-bottom: 30px;
    border-bottom: 2px dotted #333333;
  }
}
#lo-how-to-order .guide .left .title {
  display: flex;
  justify-content: center;
}
#lo-how-to-order .guide .left .title .icon {
  width: 40px;
}
@media (max-width: 768px) {
  #lo-how-to-order .guide .left .title .icon {
    width: 30px;
  }
}
#lo-how-to-order .guide .left li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media (max-width: 768px) {
  #lo-how-to-order .guide .left li {
    gap: 8px;
  }
}
#lo-how-to-order .guide .left li:not(:first-of-type) {
  margin-top: 16px;
}
#lo-how-to-order .guide .left li .check {
  width: 25px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  #lo-how-to-order .guide .left li .check {
    width: 20px;
  }
}
#lo-how-to-order .guide .right {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-left: 30px;
  text-align: left;
}
@media (max-width: 768px) {
  #lo-how-to-order .guide .right {
    flex-direction: column;
    padding-left: 16px;
  }
}
@media (max-width: 500px) {
  #lo-how-to-order .guide .right {
    flex-direction: row;
    padding-left: initial;
    padding-top: 30px;
    justify-content: center;
  }
}
#lo-how-to-order .guide .right .icon {
  width: 66px;
}
@media (max-width: 768px) {
  #lo-how-to-order .guide .right .icon {
    width: 40px;
  }
}
#lo-how-to-order .btn {
  margin-inline: auto;
  margin-top: 14px;
  background-color: #811F51;
  color: #ffffff;
}
@media (max-width: 500px) {
  #lo-how-to-order .btn {
    width: 80%;
    justify-content: center;
  }
}
#lo-how-to-order .btn::after {
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
#lo-how-to-order .btn-wrapper {
  text-align: center;
}
#lo-how-to-order .btn-lead {
  font-size: 0.875rem;
  color: #811F51;
}
#lo-how-to-order .btn-lead::before, #lo-how-to-order .btn-lead::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: #811F51;
}
#lo-how-to-order .btn-lead::before {
  transform: rotate(15deg);
  margin-right: 15px;
}
#lo-how-to-order .btn-lead::after {
  transform: rotate(-15deg);
  margin-left: 15px;
}
#lo-how-to-order .btn-lead span {
  position: relative;
}
#lo-how-to-order .btn-lead span::before, #lo-how-to-order .btn-lead span::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 1px;
  bottom: 8px;
  background-color: #811F51;
}
#lo-how-to-order .btn-lead span::before {
  transform: rotate(30deg);
  left: -24px;
}
#lo-how-to-order .btn-lead span::after {
  transform: rotate(-30deg);
  right: -24px;
}
#lo-how-to-order .btn:hover {
  background-color: #FDF5EC;
  color: #811F51;
}
#lo-how-to-order .btn:hover::after {
  border-top: 1px solid #811F51;
  border-right: 1px solid #811F51;
}

#lo-news .lower-top {
  background-image: url(../img/news-mv.webp);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: initial;
}
#lo-news #news-content {
  padding-top: 160px;
}
@media (max-width: 500px) {
  #lo-news #news-content {
    padding-top: 64px;
  }
}
#lo-news h2 {
  font-size: 2.5rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 64px;
}
#lo-news section {
  text-align: center;
}
#lo-news .item {
  border-top: 1px solid #DFDFDF;
  border-bottom: 1px solid #DFDFDF;
}
#lo-news .item a {
  display: flex;
  align-items: center;
  min-height: 190px;
  padding: 20px 10px;
  text-align: left;
  transition: all 0.5s;
  border-left: 8px solid #FDF5EC;
}
#lo-news .item a:hover {
  border-left: 8px solid #811F51;
  background-color: #FFF6FA;
}
#lo-news .item a .pct {
  height: 190px;
  width: 20%;
  text-align: center;
}
@media (max-width: 1022px) {
  #lo-news .item a .pct {
    width: 35%;
  }
}
@media (max-width: 768px) {
  #lo-news .item a .pct {
    height: clamp(110px, 110px + 50 * (100vw - 500px) / 268, 160px);
  }
}
@media (max-width: 500px) {
  #lo-news .item a .pct {
    height: clamp(80px, 80px + 30 * (100vw - 360px) / 140, 110px);
  }
}
#lo-news .item a .pct img {
  height: 100%;
  border-radius: 20px;
}
#lo-news .item a .content {
  width: 80%;
  display: flex;
  align-items: center;
}
@media (max-width: 1022px) {
  #lo-news .item a .content {
    width: 65%;
  }
}
@media (max-width: 768px) {
  #lo-news .item a .content {
    flex-direction: column;
    padding-left: 40px;
  }
}
@media (max-width: 500px) {
  #lo-news .item a .content {
    padding-left: 20px;
  }
}
#lo-news .item a .content .title {
  width: 40%;
  padding-left: 64px;
}
@media (max-width: 1022px) {
  #lo-news .item a .content .title {
    padding-left: 40px;
  }
}
@media (max-width: 768px) {
  #lo-news .item a .content .title {
    padding-left: initial;
    width: 100%;
    margin-bottom: 10px;
  }
}
#lo-news .item a .content .title time {
  font-size: 0.875rem;
}
#lo-news .item a .content .title h3 {
  font-size: 1.125rem;
  font-weight: 500;
}
@media (max-width: 500px) {
  #lo-news .item a .content .title h3 {
    font-size: 1rem;
  }
}
#lo-news .item a .content p {
  width: 60%;
  padding-left: 40px;
}
@media (max-width: 1022px) {
  #lo-news .item a .content p {
    padding-left: 24px;
  }
}
@media (max-width: 768px) {
  #lo-news .item a .content p {
    width: 100%;
    padding-left: initial;
    font-size: 0.875rem;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 1.5rem;
  margin-top: 80px;
}
@media (max-width: 500px) {
  .nav-links {
    font-size: 1.14rem;
  }
}
.nav-links .current {
  color: #ffffff;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  background-color: #811F51;
}
@media (max-width: 500px) {
  .nav-links .current {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.nav-links .prev,
.nav-links .next {
  width: 16px;
  height: 16px;
}
@media (max-width: 500px) {
  .nav-links .prev,
  .nav-links .next {
    width: 12px;
    height: 12px;
  }
}
.nav-links .prev {
  border-bottom: 1px solid #333333;
  border-left: 1px solid #333333;
  transform: rotate(45deg);
}
.nav-links .next {
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: rotate(45deg);
}

#news-single {
  padding-top: 260px;
}
@media (max-width: 500px) {
  #news-single {
    padding-top: 100px;
  }
}
#news-single .wrapper {
  max-width: 856px;
}
#news-single .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 500px) {
  #news-single .title-wrapper {
    margin-bottom: 24px;
  }
}
#news-single .title-wrapper p,
#news-single .title-wrapper h1 {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 500px) {
  #news-single .title-wrapper p,
  #news-single .title-wrapper h1 {
    font-size: 1.28rem;
  }
}
#news-single .pct {
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: 80px;
}
@media (max-width: 500px) {
  #news-single .pct {
    margin-bottom: 24px;
    max-width: initial;
    width: 70%;
  }
}
#news-single .pct img {
  border-radius: 20px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#news-single .content p:not(:first-of-type) {
  margin-top: 1em;
}
#news-single h2 {
  margin-top: 40px;
  padding: 10px;
  border-left: 3px solid #811F51;
}
@media (max-width: 500px) {
  #news-single h2 {
    margin-top: 32px;
  }
}
#news-single .wp-block-paragraph {
  width: calc(100% - 20px);
  margin-inline: auto;
  font-size: 1.125rem;
  line-height: 30px;
}
@media (max-width: 500px) {
  #news-single .wp-block-paragraph {
    line-height: 25px;
  }
}
#news-single address {
  margin-top: 16px;
  padding: 10px;
  border-top: 1px solid #333333;
}
#news-single address dl {
  display: flex;
  flex-wrap: wrap;
  line-height: 30px;
}
@media (max-width: 500px) {
  #news-single address dl {
    line-height: 24px;
  }
}
#news-single address dl dt {
  width: 80px;
}
#news-single address dl dd {
  width: calc(100% - 80px);
}
#news-single .btn {
  margin-inline: auto;
  margin-top: 80px;
}
@media (max-width: 500px) {
  #news-single .btn {
    margin-top: 40px;
  }
}
#news-single .btn::after {
  display: none;
}
#news-single .btn::before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-bottom: 1px solid #811F51;
  border-left: 1px solid #811F51;
  transform: rotate(45deg);
  transition: all 0.5s;
  flex-shrink: 0;
}
#news-single .btn:hover {
  background-color: #811F51;
  color: #ffffff;
}
#news-single .btn:hover::before {
  transform: translateX(-5px) rotate(45deg);
  border-bottom: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
}

#lp-fc-bg .left,
#lp-fc-bg .right {
  box-shadow: inset 0 0 12px #811F51;
}
#lp-fc-bg .left {
  background-image: url(../img/fc-bg-left.webp);
  background-position: left;
}
@media (max-width: 768px) {
  #lp-fc-bg .left {
    background-image: url(../img/fc-bg-sp.webp);
    background-position: center;
  }
}
#lp-fc-bg .right {
  background-image: url(../img/fc-bg-right.webp);
  background-position: right;
}
#lp-fc {
  background-color: #FDF5EC;
  padding-top: 56px;
  font-family: "Zen Maru Gothic", sans-serif;
}
#lp-fc .line-contact {
  display: flex;
  justify-content: center;
}
#lp-fc .line-contact a {
  color: #ffffff;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #00B900;
  border: 1px solid #00B900;
  border-radius: 30px;
  padding: 5px 40px;
  transition: all 0.5s;
}
@media (max-width: 500px) {
  #lp-fc .line-contact a {
    font-size: 1rem;
  }
}
#lp-fc .line-contact a .bi {
  font-size: 2rem;
}
#lp-fc .line-contact a:hover {
  border: 1px solid #00B900;
  background-color: #FDF5EC;
  color: #00B900;
}
#lp-fc section:not(:last-child) {
  padding-bottom: 40px;
}
#lp-fc .wrapper {
  padding-inline: 20px;
}
#lp-fc h2 {
  position: relative;
  font-size: 1.25rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 500px) {
  #lp-fc h2 {
    font-size: 1.42rem;
  }
}
#lp-fc h2::before, #lp-fc h2::after {
  content: "";
  position: absolute;
  top: 50%;
  background-color: #811F51;
  height: 20px;
  width: 1px;
}
@media (max-width: 768px) {
  #lp-fc h2::before, #lp-fc h2::after {
    top: initial;
    bottom: 0;
    height: 34px;
  }
}
#lp-fc h2::before {
  left: -16px;
  transform: translateY(-50%) rotate(-30deg);
}
@media (max-width: 768px) {
  #lp-fc h2::before {
    transform: rotate(-30deg);
  }
}
#lp-fc h2::after {
  right: -16px;
  transform: translateY(-50%) rotate(30deg);
}
@media (max-width: 768px) {
  #lp-fc h2::after {
    transform: rotate(30deg);
  }
}
#lp-fc .appeal-banner {
  margin-bottom: 40px;
}

#fc-top {
  position: relative;
  z-index: 1;
}
#fc-top .inexperienced-lead {
  width: 198px;
  margin-bottom: 16px;
}
#fc-top h1 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 15%;
  margin-bottom: 24px;
}
@media (max-width: 500px) {
  #fc-top h1 {
    font-size: 1.42rem;
  }
}
#fc-top h1 span {
  color: #811F51;
}
#fc-top p {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 50px;
}
@media (max-width: 500px) {
  #fc-top p {
    font-size: 1rem;
  }
}
#fc-top .pct li {
  position: absolute;
  z-index: -1;
}
#fc-top .pct li:nth-child(1) {
  width: 237px;
  top: 15px;
  right: 0;
}
@media (max-width: 500px) {
  #fc-top .pct li:nth-child(1) {
    width: clamp(197px, 197px + 40 * (100vw - 360px) / 140, 237px);
  }
}
#fc-top .pct li:nth-child(2) {
  width: 118px;
  top: 160px;
  right: 0;
}
@media (max-width: 500px) {
  #fc-top .pct li:nth-child(2) {
    width: clamp(108px, 108px + 10 * (100vw - 360px) / 140, 118px);
  }
}
#fc-strengths {
  text-align: center;
}
#fc-strengths h2 span {
  font-size: 2rem;
  color: #811F51;
  font-style: italic;
}
@media (max-width: 500px) {
  #fc-strengths h2 span {
    font-size: 2.28rem;
  }
}
#fc-strengths li {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  gap: 24px;
  border-radius: 10px;
  padding: 10px;
  text-align: left;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1019607843);
}
#fc-strengths li:not(:first-of-type) {
  margin-top: 16px;
}
#fc-strengths li .num {
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: #811F51;
  border-radius: 50%;
  color: #ffffff;
  padding-left: 5px;
}
@media (max-width: 500px) {
  #fc-strengths li .num {
    font-size: 1.14rem;
  }
}
#fc-strengths li .content h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #811F51;
}
@media (max-width: 500px) {
  #fc-strengths li .content h3 {
    font-size: 1.14rem;
  }
}
#fc-strengths li .content p {
  font-size: 0.875rem;
}
@media (max-width: 500px) {
  #fc-strengths li .content p {
    font-size: 1rem;
  }
}
#fc-strengths .banner {
  margin-top: 24px;
}

#why {
  text-align: center;
}
#why li {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  gap: 24px;
  border-radius: 10px;
  padding: 10px;
  text-align: left;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1019607843);
}
#why li:not(:first-of-type) {
  margin-top: 16px;
}
#why li .icon {
  width: 51px;
  flex-shrink: 0;
}
#why li .content h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #811F51;
}
@media (max-width: 500px) {
  #why li .content h3 {
    font-size: 1.14rem;
  }
}
#why li .content p {
  font-size: 0.875rem;
}
@media (max-width: 500px) {
  #why li .content p {
    font-size: 1rem;
  }
}

#sales-date {
  text-align: center;
}
#sales-date .banner {
  width: 353px;
  margin-inline: auto;
  margin-bottom: 8px;
}
#sales-date table {
  border-collapse: collapse;
  width: 100%;
  font-weight: 500;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2509803922);
}
@media (max-width: 500px) {
  #sales-date table {
    font-size: 1.14rem;
  }
}
#sales-date table:not(:last-child) {
  margin-bottom: 16px;
}
#sales-date table th,
#sales-date table td {
  line-height: 36px;
}
#sales-date table .fc-store {
  background-color: #811F51;
  border: 1px solid #811F51;
  color: #ffffff;
  font-size: 1.25rem;
  height: 56px;
}
#sales-date table .item,
#sales-date table .totalling,
#sales-date table .this-month {
  border-inline: 1px solid #DFDFDF;
}
#sales-date table .totalling,
#sales-date table .this-month {
  background-color: #ffffff;
}
#sales-date table .item {
  background-color: #F3F2F2;
}
#sales-date table .this-month {
  border: 1px solid #811F51;
  color: #811F51;
  height: 56px;
}
#sales-date table .this-month td:first-of-type {
  font-size: 1.25rem;
}
@media (max-width: 500px) {
  #sales-date table .this-month td:first-of-type {
    font-size: 1.42rem;
  }
}
#sales-date table .this-month td:last-of-type {
  font-size: 1.5rem;
  position: relative;
}
@media (max-width: 500px) {
  #sales-date table .this-month td:last-of-type {
    font-size: 1.71rem;
  }
}
#sales-date table .this-month td:last-of-type p {
  position: absolute;
  right: -18px;
  bottom: 20px;
  font-size: 0.75rem;
  color: #ffffff;
  background-color: #811F51;
  border-radius: 50%;
  line-height: initial;
  padding: 7px 10px;
  z-index: 1;
}
@media (max-width: 500px) {
  #sales-date table .this-month td:last-of-type p {
    font-size: 0.857rem;
  }
}
#sales-date table .this-month td:last-of-type p::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transform: rotate(-35deg);
  z-index: -1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 12px 6px 0px;
  border-color: transparent #811F51 transparent transparent;
}
#sales-date table .total {
  background-color: #F3F2F2;
}
#sales-date table .total th {
  line-height: initial;
  height: 36px;
}
#sales-date table .total .inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 500px) {
  #sales-date table .total .inner {
    font-size: 1.14rem;
  }
}
#sales-date table .total .inner .icon {
  width: 24px;
}

#fc-secret {
  text-align: center;
}
#fc-secret .content {
  background-color: #ffffff;
  border: 1px solid #811F51;
  border-radius: 20px;
  padding: 20px;
}
#fc-secret .content .banner {
  width: 258px;
  margin-inline: auto;
}
#fc-secret .content p {
  max-width: 266px;
  margin-inline: auto;
  text-align: left;
}
#fc-secret .content .text {
  font-size: 0.875rem;
  margin-bottom: 5px;
}
@media (max-width: 500px) {
  #fc-secret .content .text {
    font-size: 1rem;
  }
}
#fc-secret .content .note {
  font-size: 0.75rem;
}
@media (max-width: 500px) {
  #fc-secret .content .note {
    font-size: 0.857rem;
  }
}

#fc-content {
  text-align: center;
}
#fc-content li {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 10px 30px 30px;
  text-align: left;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1019607843);
}
#fc-content li:not(:first-of-type) {
  margin-top: 16px;
}
#fc-content li .pct img {
  height: 106px;
  border-radius: 10px;
}
#fc-content li h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #811F51;
  margin-block: 24px 16px;
  text-align: center;
}
@media (max-width: 500px) {
  #fc-content li h3 {
    font-size: 1.14rem;
  }
}
#fc-content li p {
  font-size: 0.875rem;
}
@media (max-width: 500px) {
  #fc-content li p {
    font-size: 1rem;
  }
}

#first-cost {
  text-align: center;
}
#first-cost h2 {
  border-bottom: 1px solid #811F51;
  padding-block: 10px;
}
#first-cost h2::before, #first-cost h2::after {
  display: none;
}
#first-cost table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 16px;
}
#first-cost table tr {
  border: 1px solid #A5A3A3;
}
#first-cost table tr th,
#first-cost table tr td {
  padding: 10px;
}
#first-cost table tr th {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #FAFBFB;
  border-right: 1px solid #A5A3A3;
}
#first-cost table tr th .icon {
  width: 40px;
  flex-shrink: 0;
}
#first-cost table tr th p {
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
}
@media (max-width: 500px) {
  #first-cost table tr th p {
    font-size: 1.14rem;
  }
}
#first-cost table tr td {
  background-color: #F8F3F5;
  text-align: right;
}
#first-cost table tr td p {
  color: #811F51;
  font-size: 0.875rem;
  font-weight: 500;
}
@media (max-width: 500px) {
  #first-cost table tr td p {
    font-size: 1rem;
  }
}
#first-cost table tr td p span {
  color: #333333;
  font-weight: 400;
}
#first-cost .banner {
  width: 196px;
  margin-inline: auto;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.1019607843));
}

#fc-flow {
  text-align: center;
}
#fc-flow ol {
  text-align: left;
}
#fc-flow ol li {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 10px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1019607843);
}
#fc-flow ol li:not(:last-child) {
  margin-bottom: 16px;
  position: relative;
}
#fc-flow ol li:not(:last-child)::before, #fc-flow ol li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  border-radius: 2px;
}
#fc-flow ol li:not(:last-child)::before {
  width: 2px;
  height: 16px;
  top: 100%;
  transform: translateX(-50%);
  background-color: #811F51;
}
#fc-flow ol li:not(:last-child)::after {
  width: 10px;
  height: 10px;
  bottom: -15px;
  transform: translateX(-50%) rotate(45deg);
  border-bottom: 2px solid #811F51;
  border-right: 2px solid #811F51;
  border-radius: 2px;
}
#fc-flow ol li .step {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #811F51;
  font-size: 0.75rem;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 500px) {
  #fc-flow ol li .step {
    font-size: 0.857rem;
  }
}
#fc-flow ol li .step span {
  font-size: 1rem;
  font-style: italic;
  line-height: 1;
  margin-left: -5px;
}
@media (max-width: 500px) {
  #fc-flow ol li .step span {
    font-size: 1.14rem;
  }
}
#fc-flow ol li h3 {
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 500px) {
  #fc-flow ol li h3 {
    font-size: 1.14rem;
  }
}

#fc-about {
  text-align: center;
}
#fc-about .title p {
  font-size: 1rem;
  color: #811F51;
  font-weight: 500;
}
@media (max-width: 500px) {
  #fc-about .title p {
    font-size: 1.14rem;
  }
}
#fc-about .inner {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  text-align: left;
  margin-bottom: 24px;
}
#fc-about .inner .portrait {
  width: 131px;
  flex-shrink: 0;
}
#fc-about .inner .portrait img {
  border-radius: 10px;
  height: 162px;
}
#fc-about .inner .introduction h3 {
  font-size: 1.25rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
@media (max-width: 500px) {
  #fc-about .inner .introduction h3 {
    font-size: 1.42rem;
  }
}
#fc-about .inner .introduction h3 span {
  font-size: 1rem;
  color: #811F51;
  font-weight: 500;
  margin-top: -5px;
}
@media (max-width: 500px) {
  #fc-about .inner .introduction h3 span {
    font-size: 1.14rem;
  }
}
#fc-about .inner .introduction p {
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 500px) {
  #fc-about .inner .introduction p {
    font-size: 1.14rem;
  }
}
#fc-about .content {
  text-align: left;
  padding: 10px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 25px;
}
@media (max-width: 500px) {
  #fc-about .content {
    font-size: 1.14rem;
  }
}

#fc-contact {
  text-align: center;
  background-color: #F1E9EE;
  padding-block: 22px 29px;
}
#fc-contact h2 {
  margin-bottom: 8px;
}
#fc-contact h2::before, #fc-contact h2::after {
  display: none;
}
#fc-contact p {
  margin-bottom: 24px;
}
#fc-contact .home-btn {
  margin-top: 24px;
}
#fc-contact .home-btn .btn {
  margin-inline: auto;
}

#lo-store-search .store-search {
  display: flex;
}
@media (max-width: 500px) {
  #lo-store-search .store-search {
    flex-direction: column-reverse;
  }
}
#lo-store-search .store-left {
  width: 350px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2509803922);
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #lo-store-search .store-left {
    width: 33.3333333333%;
  }
}
@media (max-width: 500px) {
  #lo-store-search .store-left {
    width: 100%;
    height: 50vh;
  }
}
#lo-store-search .store-left .home-btn {
  padding-block: 16px;
}
@media (max-width: 500px) {
  #lo-store-search .store-left .home-btn {
    padding-block: 10px 20px;
  }
}
#lo-store-search .store-left .home-btn .btn {
  padding: 10px 20px;
}
#lo-store-search .store-left .home-btn .btn::after {
  display: none;
}
#lo-store-search .store-left .home-btn .btn::before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-bottom: 1px solid #811F51;
  border-left: 1px solid #811F51;
  transform: rotate(45deg);
  transition: all 0.5s;
  flex-shrink: 0;
}
#lo-store-search .store-left .home-btn .btn:hover::before {
  transform: translateX(-5px) rotate(45deg);
  border-bottom: 1px solid #FDF5EC;
  border-left: 1px solid #FDF5EC;
}
#lo-store-search .store-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-top: 16px;
}
#lo-store-search .store-pagination button {
  transition: all 0.5s;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background-color: #FDF5EC;
}
#lo-store-search .store-pagination button:hover {
  color: #ffffff;
  background-color: #811F51;
  opacity: 0.5;
}
#lo-store-search .store-pagination .is-active {
  color: #ffffff;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background-color: #811F51;
}
#lo-store-search .store-list {
  overflow-y: auto;
  flex: 1;
  width: 100%;
}
#lo-store-search .store-list li {
  cursor: pointer;
  transition: all 0.5s;
  border-top: 1px solid #DFDFDF;
  border-bottom: 1px solid #DFDFDF;
  padding: 10px;
  border-left: 8px solid #FDF5EC;
}
#lo-store-search .store-list li:hover {
  border-left: 8px solid #811F51;
  background-color: #FFF6FA;
}
#lo-store-search .store-map {
  width: calc(100% - 350px);
}
@media (max-width: 768px) {
  #lo-store-search .store-map {
    width: 66.6666666667%;
  }
}
@media (max-width: 500px) {
  #lo-store-search .store-map {
    width: 100%;
  }
}
#lo-store-search #map {
  height: 100vh;
}
@media (max-width: 500px) {
  #lo-store-search #map {
    height: 50vh;
  }
}
#lo-store-search #search-area {
  width: 95%;
}
#lo-store-search #pac-card {
  background-color: #fff;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  font-family: Roboto;
  -moz-box-sizing: border-box;
  outline: none;
  border-radius: 50px;
  margin: 20px auto 40px;
}
@media (max-width: 500px) {
  #lo-store-search #pac-card {
    margin: 20px auto;
  }
}
#lo-store-search #pac-container {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
}
#lo-store-search #pac-input {
  font-family: Roboto;
  font-size: 15px;
  font-weight: 300;
  padding-inline: 13px;
  text-overflow: ellipsis;
  width: 97%;
}
#lo-store-search #pac-input:focus {
  border-color: #4d90fe;
}
#lo-store-search #title {
  display: none;
}
#lo-store-search .hidden {
  display: none;
}
#lo-store-search #panel {
  height: 100%;
  background-color: white;
  position: fixed;
  z-index: 1;
  overflow-x: hidden;
  transition: all 0.2s ease-out;
}
#lo-store-search .open {
  width: 250px;
}
#lo-store-search .place {
  font-family: "open sans", arial, sans-serif;
  font-size: 1.2em;
  font-weight: 500;
  margin-block-end: 0px;
  padding-left: 18px;
  padding-right: 18px;
}
#lo-store-search .distanceText {
  color: silver;
  font-family: "open sans", arial, sans-serif;
  font-size: 1em;
  font-weight: 400;
  margin-block-start: 0.25em;
  padding-left: 18px;
  padding-right: 18px;
}
#lo-store-search .gm-style-iw,
#lo-store-search .gm-style-iw-c {
  text-align: center;
}
#lo-store-search .gm-style-iw .icon,
#lo-store-search .gm-style-iw-c .icon {
  width: 60px;
}
#lo-store-search .gm-style-iw .inner,
#lo-store-search .gm-style-iw-c .inner {
  text-align: left;
}
#lo-store-search .gm-style-iw .inner h2,
#lo-store-search .gm-style-iw-c .inner h2 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}
#lo-store-search .gm-style-iw .inner .address,
#lo-store-search .gm-style-iw-c .inner .address {
  font-size: 1rem;
  margin-bottom: 10px;
}
#lo-store-search .gm-style-iw .inner .hours,
#lo-store-search .gm-style-iw-c .inner .hours {
  font-size: 1rem;
  margin-bottom: 10px;
}
#lo-store-search .gm-style-iw .inner .tel,
#lo-store-search .gm-style-iw-c .inner .tel {
  font-size: 1rem;
  margin-bottom: 10px;
}
#lo-store-search .gm-style-iw .inner .btn,
#lo-store-search .gm-style-iw-c .inner .btn {
  padding: 10px 20px;
  margin-inline: auto;
  color: #811F51;
}
#lo-store-search .gm-style-iw .inner .btn:hover,
#lo-store-search .gm-style-iw-c .inner .btn:hover {
  color: #ffffff;
}

.lp {
  width: 393px;
  margin-inline: auto;
  font-family: "Noto Serif JP", serif;
  background-color: #F1E0CC;
}
@media (max-width: 768px) {
  .lp {
    margin-right: initial;
  }
}
@media (max-width: 500px) {
  .lp {
    width: 100%;
  }
}
.lp-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  gap: 393px;
  z-index: -1;
}
.lp-bg .left,
.lp-bg .right {
  height: 100vh;
  width: 50%;
  height: 100vh;
  background-size: cover;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 768px) {
  .lp-bg .left,
  .lp-bg .right {
    width: calc(100% - 393px);
  }
}
.lp-bg .left {
  align-items: center;
  gap: 40px;
}
@media (max-width: 500px) {
  .lp-bg .left {
    visibility: hidden;
  }
}
.lp-bg .left h1 {
  width: 307px;
}
@media (max-width: 1022px) {
  .lp-bg .left h1 {
    width: clamp(187px, 187px + 113 * (100vw - 768px) / 254, 300px);
  }
}
@media (max-width: 768px) {
  .lp-bg .left h1 {
    visibility: hidden;
  }
}
.lp-bg .left .badge {
  width: 236px;
}
@media (max-width: 1022px) {
  .lp-bg .left .badge {
    width: clamp(146px, 146px + 90 * (100vw - 768px) / 254, 236px);
  }
}
@media (max-width: 768px) {
  .lp-bg .left .badge {
    display: none;
  }
}
.lp-bg .right {
  align-items: flex-start;
  text-align: center;
}
@media (max-width: 768px) {
  .lp-bg .right {
    display: none;
  }
}
.lp-bg .right .lead {
  font-size: 1.5rem;
  line-height: 50px;
  margin-left: 71px;
}
@media (max-width: 1022px) {
  .lp-bg .right .lead {
    margin-left: clamp(10px, 10px + 61 * (100vw - 768px) / 254, 71px);
  }
}
.lp h2 {
  font-size: 4rem;
  font-family: "Iosevka Charon", monospace;
}
@media (max-width: 500px) {
  .lp h2 {
    font-size: 4.57rem;
  }
}

#lp-caramel-nutus-bowl-bg .left,
#lp-caramel-nutus-bowl-bg .right {
  box-shadow: inset 0 0 12px #CD9352;
}
#lp-caramel-nutus-bowl-bg .left {
  background-image: url(../img/caramel-nutus-bowl-left.webp);
}
#lp-caramel-nutus-bowl-bg .right {
  background-image: url(../img/caramel-nutus-bowl-lright.webp);
}

#lp-caramel-nutus-bowl .mainvisual {
  position: relative;
}
#lp-caramel-nutus-bowl .scroll-down {
  font-size: 0.75rem;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #ffffff;
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 500px) {
  #lp-caramel-nutus-bowl .scroll-down {
    font-size: 0.857rem;
  }
}
#lp-caramel-nutus-bowl .scroll-down::after {
  content: "";
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  animation: scroll 3s infinite ease;
}
#lp-caramel-nutus-bowl #lp-concept {
  text-align: center;
  padding-bottom: 140px;
  position: relative;
}
#lp-caramel-nutus-bowl #lp-concept h2 {
  color: #F5EDE2;
  font-weight: 900;
}
#lp-caramel-nutus-bowl #lp-concept .lead {
  font-size: 1.5rem;
  margin-block: -40px 24px;
  line-height: 38px;
}
@media (max-width: 500px) {
  #lp-caramel-nutus-bowl #lp-concept .lead {
    font-size: 1.71rem;
  }
}
#lp-caramel-nutus-bowl #lp-concept .content {
  line-height: 30px;
}
#lp-caramel-nutus-bowl #lp-concept .pct {
  width: 283px;
  position: absolute;
  right: 0;
  bottom: -84px;
}
#lp-caramel-nutus-bowl #lp-feature {
  background-color: #341C0C;
  padding-block: 36px 100px;
}
#lp-caramel-nutus-bowl #lp-feature h2 {
  color: #563114;
}
#lp-caramel-nutus-bowl #lp-feature ul {
  margin-top: -30px;
}
#lp-caramel-nutus-bowl #lp-feature li .num {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #CD9352;
}
#lp-caramel-nutus-bowl #lp-feature li h3,
#lp-caramel-nutus-bowl #lp-feature li .description {
  color: #ffffff;
}
#lp-caramel-nutus-bowl #lp-feature li h3 {
  font-size: 1.25rem;
}
#lp-caramel-nutus-bowl #lp-feature li .pct {
  width: 160px;
}
#lp-caramel-nutus-bowl #lp-feature li:nth-child(2) {
  text-align: right;
}
#lp-caramel-nutus-bowl #lp-feature li:nth-child(2) .pct {
  margin-left: auto;
}
#lp-caramel-nutus-bowl #lp-recommendation {
  position: relative;
  background-color: #F6EEE5;
}
#lp-caramel-nutus-bowl #lp-recommendation .shape {
  position: absolute;
  bottom: 100%;
  width: 100%;
}
#lp-caramel-nutus-bowl #lp-recommendation .line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
#lp-caramel-nutus-bowl #lp-recommendation .line::before, #lp-caramel-nutus-bowl #lp-recommendation .line::after {
  content: "";
  width: 50%;
  height: 1px;
}
#lp-caramel-nutus-bowl #lp-recommendation .line span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
#lp-caramel-nutus-bowl #lp-recommendation .title {
  width: 211px;
  margin-inline: auto;
  text-align: center;
  color: #341C0C;
}
#lp-caramel-nutus-bowl #lp-recommendation .title .fun {
  width: 52px;
  margin-inline: auto;
  margin-bottom: 10px;
}
#lp-caramel-nutus-bowl #lp-recommendation .title h2 {
  font-size: 1.75rem;
  font-weight: 500;
}
#lp-caramel-nutus-bowl #lp-recommendation .title .line {
  margin-block: 10px;
}
#lp-caramel-nutus-bowl #lp-recommendation .title .line::before, #lp-caramel-nutus-bowl #lp-recommendation .title .line::after {
  background-color: #341C0C;
}
#lp-caramel-nutus-bowl #lp-recommendation .title .line span {
  background-color: #341C0C;
}
#lp-caramel-nutus-bowl #lp-recommendation .title p {
  font-size: 0.75rem;
}
@media (max-width: 500px) {
  #lp-caramel-nutus-bowl #lp-recommendation .title p {
    font-size: 0.857rem;
  }
}
#lp-caramel-nutus-bowl #lp-recommendation .list {
  padding-block: 16px;
  text-align: center;
}
#lp-caramel-nutus-bowl #lp-recommendation .list .wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
}
#lp-caramel-nutus-bowl #lp-recommendation .list .pct {
  width: 55%;
}
#lp-caramel-nutus-bowl #lp-recommendation .list .pct img {
  border-radius: 20px;
}
#lp-caramel-nutus-bowl #lp-recommendation .list .content {
  width: 45%;
}
#lp-caramel-nutus-bowl #lp-recommendation .list .content .heading-pct {
  width: 92px;
  margin-inline: auto;
}
#lp-caramel-nutus-bowl #lp-recommendation .list .content .line {
  margin-block: 16px;
}
#lp-caramel-nutus-bowl #lp-recommendation .list .content .line::before, #lp-caramel-nutus-bowl #lp-recommendation .list .content .line::after {
  width: 25%;
}
#lp-caramel-nutus-bowl #lp-recommendation .list:nth-child(1) {
  color: #78594A;
}
#lp-caramel-nutus-bowl #lp-recommendation .list:nth-child(1) .content .line::before, #lp-caramel-nutus-bowl #lp-recommendation .list:nth-child(1) .content .line::after {
  background-color: #78594A;
}
#lp-caramel-nutus-bowl #lp-recommendation .list:nth-child(1) .content .line span {
  background-color: #78594A;
}
#lp-caramel-nutus-bowl #lp-recommendation .list:nth-child(2), #lp-caramel-nutus-bowl #lp-recommendation .list:nth-child(3) {
  color: #ffffff;
}
#lp-caramel-nutus-bowl #lp-recommendation .list:nth-child(2) .content .line::before, #lp-caramel-nutus-bowl #lp-recommendation .list:nth-child(2) .content .line::after, #lp-caramel-nutus-bowl #lp-recommendation .list:nth-child(3) .content .line::before, #lp-caramel-nutus-bowl #lp-recommendation .list:nth-child(3) .content .line::after {
  background-color: #ffffff;
}
#lp-caramel-nutus-bowl #lp-recommendation .list:nth-child(2) .content .line span, #lp-caramel-nutus-bowl #lp-recommendation .list:nth-child(3) .content .line span {
  background-color: #ffffff;
}
#lp-caramel-nutus-bowl #lp-recommendation .list:nth-child(2) {
  background: linear-gradient(#D4AB80 27%, #A47549 100%);
  position: relative;
}
#lp-caramel-nutus-bowl #lp-recommendation .list:nth-child(2) .deco li {
  position: absolute;
}
#lp-caramel-nutus-bowl #lp-recommendation .list:nth-child(2) .deco li:nth-child(1) {
  width: 103px;
  top: -30px;
  left: 0;
}
#lp-caramel-nutus-bowl #lp-recommendation .list:nth-child(2) .deco li:nth-child(2) {
  width: 74px;
  bottom: -50px;
  right: 0;
}
#lp-caramel-nutus-bowl #lp-recommendation .list:nth-child(3) {
  background-color: #3A261B;
}
#lp-caramel-nutus-bowl #lp-recommendation .list:nth-child(3) .deco {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: -14px;
}
#lp-caramel-nutus-bowl #lp-recommendation .list:nth-child(3) .deco li:nth-child(1) {
  width: 106px;
}
#lp-caramel-nutus-bowl #lp-recommendation .list:nth-child(3) .deco li:nth-child(2) {
  width: 181px;
}
#lp-caramel-nutus-bowl #lp-recommendation .section-deco li {
  position: absolute;
}
#lp-caramel-nutus-bowl #lp-recommendation .section-deco li:nth-child(1) {
  width: 99px;
  top: -60px;
  left: 0;
}
#lp-caramel-nutus-bowl #lp-recommendation .section-deco li:nth-child(2) {
  width: 85px;
  top: 10px;
  right: 0;
}
#lp-caramel-nutus-bowl #lp-instagram {
  text-align: center;
  padding: 12px;
  background-color: #EBDDCE;
}
#lp-caramel-nutus-bowl #lp-instagram h2 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media (max-width: 500px) {
  #lp-caramel-nutus-bowl #lp-instagram h2 {
    font-size: 1.42rem;
  }
}
#lp-caramel-nutus-bowl #lp-instagram h2 .icon {
  width: 50px;
}

#lp-caramel-nutus-greek-yogurt-bg .left,
#lp-caramel-nutus-greek-yogurt-bg .right {
  box-shadow: inset 0 0 12px #CD9352;
}
#lp-caramel-nutus-greek-yogurt-bg .left {
  background-image: url(../img/bg-side-left.webp);
}
#lp-caramel-nutus-greek-yogurt-bg .right {
  background-image: url(../img/bg-side-right.webp);
}

#lp-caramel-nutus-greek-yogurt {
  background-color: #FDF5EC;
  color: #4B2007;
}
#lp-caramel-nutus-greek-yogurt h2 {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  line-height: 38px;
  font-size: 1.5rem;
  font-weight: 400;
}
@media (max-width: 500px) {
  #lp-caramel-nutus-greek-yogurt h2 {
    font-size: 1.71rem;
  }
}
#lp-caramel-nutus-greek-yogurt .wrapper {
  padding-inline: 20px;
}
#lp-caramel-nutus-greek-yogurt .title-accent {
  width: 80px;
  margin-inline: auto;
}
#lp-caramel-nutus-greek-yogurt .mainvisual {
  position: relative;
}
#lp-caramel-nutus-greek-yogurt .mainvisual .accent {
  position: absolute;
  bottom: -140px;
  left: 0;
  z-index: 1;
}
#lp-caramel-nutus-greek-yogurt .scroll-down {
  font-size: 0.75rem;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #ffffff;
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 500px) {
  #lp-caramel-nutus-greek-yogurt .scroll-down {
    font-size: 0.857rem;
  }
}
#lp-caramel-nutus-greek-yogurt .scroll-down::after {
  content: "";
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  animation: scroll 3s infinite ease;
}
#lp-caramel-nutus-greek-yogurt #lp-concept {
  text-align: center;
  padding-block: 110px;
  position: relative;
  background: linear-gradient(#F9E2C7, #FCF5ED);
}
#lp-caramel-nutus-greek-yogurt #lp-concept .lead {
  font-size: 1.5rem;
  font-weight: 400;
  margin-block: -40px 24px;
  line-height: 38px;
}
@media (max-width: 500px) {
  #lp-caramel-nutus-greek-yogurt #lp-concept .lead {
    font-size: 1.71rem;
  }
}
#lp-caramel-nutus-greek-yogurt #lp-concept .outer {
  width: 259px;
  margin-left: 50px;
}
#lp-caramel-nutus-greek-yogurt #lp-concept .text-points {
  width: 215px;
}
#lp-caramel-nutus-greek-yogurt #lp-concept .content {
  line-height: 30px;
  text-align: left;
  margin-top: 24px;
}
#lp-caramel-nutus-greek-yogurt #lp-concept .pct {
  width: 233px;
  position: absolute;
  right: 0;
  bottom: 0;
}
#lp-caramel-nutus-greek-yogurt #lp-material {
  padding-block: 40px 100px;
}
#lp-caramel-nutus-greek-yogurt #lp-material h2 span {
  font-size: 2.25rem;
  color: #D15C00;
}
@media (max-width: 500px) {
  #lp-caramel-nutus-greek-yogurt #lp-material h2 span {
    font-size: 2.57rem;
  }
}
#lp-caramel-nutus-greek-yogurt #lp-material li {
  display: flex;
  align-items: flex-end;
  margin-top: 16px;
}
#lp-caramel-nutus-greek-yogurt #lp-material li .pct,
#lp-caramel-nutus-greek-yogurt #lp-material li .content {
  width: 50%;
}
#lp-caramel-nutus-greek-yogurt #lp-material li .content .accent {
  width: 30px;
}
#lp-caramel-nutus-greek-yogurt #lp-material li h3 {
  color: #D15C00;
  font-weight: 900;
  margin-bottom: 10px;
}
#lp-caramel-nutus-greek-yogurt #lp-material li:nth-child(odd) .content .accent {
  margin-left: auto;
}
#lp-caramel-nutus-greek-yogurt #lp-recommendation {
  background-color: #FEEBD9;
  padding-block: 33px 48px;
}
#lp-caramel-nutus-greek-yogurt #lp-recommendation li {
  display: flex;
}
#lp-caramel-nutus-greek-yogurt #lp-recommendation li:not(:first-child) {
  margin-top: 16px;
}
#lp-caramel-nutus-greek-yogurt #lp-recommendation li:first-child {
  margin-top: 24px;
}
#lp-caramel-nutus-greek-yogurt #lp-recommendation li .pct {
  width: 47%;
}
#lp-caramel-nutus-greek-yogurt #lp-recommendation li .pct img {
  height: 100%;
}
#lp-caramel-nutus-greek-yogurt #lp-recommendation li .content {
  width: 53%;
  text-align: center;
  background-color: #ffffff;
  padding-block: 10px;
}
#lp-caramel-nutus-greek-yogurt #lp-recommendation li .content .icon {
  width: 30px;
  margin-inline: auto;
}
#lp-caramel-nutus-greek-yogurt #lp-recommendation li .content h3 {
  font-size: 1rem;
  font-weight: 400;
  border-bottom: 1px dashed #CD7811;
  display: inline-block;
  padding-bottom: 10px;
}
#lp-caramel-nutus-greek-yogurt #lp-recommendation li .content p {
  font-size: 0.75rem;
  padding-block: 10px;
}
@media (max-width: 500px) {
  #lp-caramel-nutus-greek-yogurt #lp-recommendation li .content p {
    font-size: 0.857rem;
  }
}
#lp-caramel-nutus-greek-yogurt #new-flavor {
  background-color: #B94D04;
}
#lp-caramel-nutus-greek-yogurt #new-flavor .text {
  width: 287px;
  margin-inline: auto;
}
#lp-caramel-nutus-greek-yogurt #new-flavor .badge {
  position: relative;
  margin-top: 24px;
}
#lp-caramel-nutus-greek-yogurt #new-flavor .badge .circle {
  width: 169px;
  margin-inline: auto;
}
#lp-caramel-nutus-greek-yogurt #new-flavor .badge h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.25rem;
}
#lp-caramel-nutus-greek-yogurt #new-flavor .caramel-bottom {
  margin-top: -50px;
}
#lp-caramel-nutus-greek-yogurt #lp-instagram {
  text-align: center;
  padding: 12px;
  background-color: #EBDDCE;
}
#lp-caramel-nutus-greek-yogurt #lp-instagram h2 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media (max-width: 500px) {
  #lp-caramel-nutus-greek-yogurt #lp-instagram h2 {
    font-size: 1.42rem;
  }
}
#lp-caramel-nutus-greek-yogurt #lp-instagram h2 .icon {
  width: 50px;
}

.page-caramel-nuts-greet-yogurt footer {
  background-color: #FCF5EC;
}

#lp-acai-kakigori-bg .left,
#lp-acai-kakigori-bg .right {
  box-shadow: inset 0 0 12px #008BE2;
}
#lp-acai-kakigori-bg .left {
  background-image: url(../img/bg-side-left-kakigoori.webp);
}
#lp-acai-kakigori-bg .left h1 {
  font-family: "Noto Serif JP", serif;
  color: #008BE2;
  font-size: 3rem;
  font-weight: 500;
}
#lp-acai-kakigori-bg .right {
  background-image: url(../img/bg-side-right-kakigoori.webp);
}
#lp-acai-kakigori-bg .right p {
  font-family: "Noto Serif JP", serif;
  color: #008BE2;
  font-size: 2.25rem;
  font-weight: 500;
  margin-inline: auto;
}

#lp-acai-kakigori {
  background-color: #E7FAFF;
  color: #4B2007;
  font-family: "Noto Sans JP", sans-serif;
}
#lp-acai-kakigori .title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
#lp-acai-kakigori .title .accent {
  width: 30px;
}
#lp-acai-kakigori h2 {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  color: #98207A;
}
@media (max-width: 500px) {
  #lp-acai-kakigori h2 {
    font-size: 1.71rem;
  }
}
#lp-acai-kakigori .wrapper {
  padding-inline: 15px;
}
#lp-acai-kakigori .title-accent {
  width: 80px;
  margin-inline: auto;
}
#lp-acai-kakigori #top {
  background-image: url(../img/bg-kakigori.webp);
  background-size: cover;
  background-position: top;
}
#lp-acai-kakigori #top h2 {
  width: 332px;
  margin-inline: auto;
}
#lp-acai-kakigori #top p {
  width: 272px;
  margin-inline: auto;
  margin-top: 30px;
}
#lp-acai-kakigori #lp-concept {
  text-align: center;
  padding-block: 44px 75px;
}
#lp-acai-kakigori #lp-concept .title h2 span {
  font-size: 0.875rem;
  color: #451D3E;
}
#lp-acai-kakigori #lp-concept .item {
  position: relative;
  background-color: #ffffff;
  border-radius: 20px;
  padding-block: 20px 74px;
}
#lp-acai-kakigori #lp-concept .item .badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
}
#lp-acai-kakigori #lp-concept .item h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #650159;
  margin-bottom: 16px;
}
#lp-acai-kakigori #lp-concept .item .fruits {
  position: absolute;
}
#lp-acai-kakigori #lp-concept .item .fruits img {
  height: 98px;
  width: auto;
}
#lp-acai-kakigori #lp-concept .item .accent {
  position: absolute;
}
#lp-acai-kakigori #lp-concept .item:nth-child(1) .fruits {
  bottom: 0;
  right: 0;
}
#lp-acai-kakigori #lp-concept .item:nth-child(1) .accent {
  width: 129px;
  bottom: -24px;
  left: -15px;
}
#lp-acai-kakigori #lp-concept .item:nth-child(2) .fruits {
  bottom: 0;
  left: 0;
}
#lp-acai-kakigori #lp-concept .item:nth-child(2) .fruits img {
  height: 80px;
}
#lp-acai-kakigori #lp-concept .item:nth-child(2) .accent {
  width: 129px;
  top: 0;
  right: -15px;
}
#lp-acai-kakigori #lp-concept .item:nth-child(3) .fruits {
  bottom: 0;
  right: 0;
}
#lp-acai-kakigori #lp-concept .item:nth-child(3) .accent {
  width: 98px;
  bottom: -24px;
  left: -15px;
}
#lp-acai-kakigori #lp-concept .item:not(:first-child) {
  margin-top: 24px;
}
#lp-acai-kakigori #lp-recommendation {
  padding-bottom: 30px;
}
#lp-acai-kakigori #lp-recommendation ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 6px;
}
#lp-acai-kakigori #lp-recommendation ul li {
  display: flex;
  flex-direction: column;
}
#lp-acai-kakigori #lp-recommendation ul li .pct img {
  border-radius: 20px 20px 0 0;
}
#lp-acai-kakigori #lp-recommendation ul li .content {
  border-radius: 0 0 20px 20px;
  background-color: #ffffff;
  flex: 1;
  padding: 20px 10px;
}
#lp-acai-kakigori #lp-recommendation ul li .content h3 {
  font-size: 1.25rem;
  font-weight: 900;
  position: relative;
  margin-bottom: 32px;
}
#lp-acai-kakigori #lp-recommendation ul li .content h3::before {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 68px;
  height: 3px;
  border-radius: 3px;
  background-color: #FCD5FC;
}
#lp-acai-kakigori #lp-recommendation ul li .content p {
  font-size: 0.8125rem;
}
#lp-acai-kakigori #lp-recommendation ul li:nth-child(1) .content h3, #lp-acai-kakigori #lp-recommendation ul li:nth-child(4) .content h3 {
  color: #E42D91;
}
#lp-acai-kakigori #lp-recommendation ul li:nth-child(2) .content h3, #lp-acai-kakigori #lp-recommendation ul li:nth-child(3) .content h3 {
  color: #6E5AE4;
}
#lp-acai-kakigori #lead-bottom {
  background-image: url(../img/lead-bottom.webp);
  background-size: cover;
  padding-bottom: 21px;
}
#lp-acai-kakigori #lead-bottom .heading h2 {
  margin-inline: auto;
}
#lp-acai-kakigori #lead-bottom .heading h2:nth-child(1) {
  width: 268px;
}
#lp-acai-kakigori #lead-bottom .heading h2:nth-child(2) {
  width: 195px;
}
#lp-acai-kakigori #lead-bottom .illustration {
  width: 308px;
  margin-inline: auto;
}
#lp-acai-kakigori #lp-instagram {
  text-align: center;
  padding: 12px;
  background-color: #9FC3EC;
}
#lp-acai-kakigori #lp-instagram h2 {
  color: #3A261B;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 500px) {
  #lp-acai-kakigori #lp-instagram h2 {
    font-size: 1.42rem;
  }
}
#lp-acai-kakigori #lp-instagram h2::before, #lp-acai-kakigori #lp-instagram h2::after {
  content: "";
  background-color: #FCF5EC;
  width: 61px;
  height: 1px;
}
#lp-acai-kakigori #lp-instagram h2 .icon {
  width: 50px;
}

.page-acai-kakigori footer {
  background-color: #E7FAFF;
}/*# sourceMappingURL=main.css.map */