@charset "utf-8";

/* ======================
visual
====================== */
.visual {
  height: 100svh;
}

.visual__pc {
  display: none;
}

.visual__pc,
.visual__sp {
  width: 100vw;
  height: 100svh;
  background-size: cover;
  object-fit: cover;
}

.visual__logo {
  width: 104px;
  position: absolute;
  top: 46%;
  right: 50%;
  transform: translate(50%, -50%);
}

.visual {
  position: relative;
}

.visual__board {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 64px;
  backdrop-filter: blur(5px);
  border-top: 1px solid #646464;
  border-bottom: 1px solid #646464;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  white-space: nowrap;
}

.visual__board__inner {
  width: max-content;
  line-height: 1;
  position: absolute;
  left: 0;
}

.visual__board span {
  font-size: 1.4rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.06em;
  padding: 0 24px 0;
  border-right: 1px solid #2B3340;
}

.visual__board__inner {
  animation: flowing 40s linear infinite;
}

@keyframes flowing {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.visual__board__inner:hover {
  animation-play-state: paused;
}

.visual__board img {
  width: 50px;
  text-align: center;
  vertical-align: middle;
}

.board--logo {
  width: 32px !important;
}

.sway {
  display: inline-block;
  animation: sway 2s linear infinite;
}

@keyframes sway {
  0% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(-10deg);
  }

  100% {
    transform: rotate(10deg);
  }
}

@media screen and (min-width: 769px) {
  .visual__sp {
    display: none;
  }

  .visual__pc {
    display: block;
  }

  .visual__logo {
    width: max(9vw, 116px);
  }

  .visual__board {
    height: 80px;
  }

  .visual__board span {
    font-size: 1.8rem;
  }

  .visual__board img {
    width: 64px;
    text-align: center;
    vertical-align: middle;
  }

  .board--logo {
    width: 40px !important;
  }
}

/* ======================
about
====================== */
.section--about {
  position: relative;
}

.about__content {
  position: relative;
  z-index: 1;
}

.about__visual {
  width: min(91.7333333333vw, 344px);
  margin: 0 auto;
}

.about__visual img {
  margin-top: 4px;
}

.about__wrap {
  position: relative;
  top: -76px;
}

.about__title {
  width: 296px;
  margin: 0 auto;
  position: relative;
  left: 9px;
}

.about__sub {
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
  text-align: center;
}

.about__txtArea {
  margin-top: 26px;
  text-align: center;
  font-weight: var(--weight-bold);
}

.about__txt--lead {
  font-size: min(4vw, 1.5rem);
}

.about__txt--description {
  margin-top: 16px;
  font-size: min(3.4666666667vw, 1.3rem);
  line-height: 1.6;
}

.about__line {
  position: absolute;
  top: 0;
  width: 100%;
  height: 546px;
  display: flex;
  justify-content: space-between;
}

.about__line img {
  margin: 16px 8px 0;
}

.about__frame {
  width: 100vw;
  position: absolute;
  bottom: -26px;
}

@media screen and (min-width: 769px) {
  .about__content {
    display: flex;
    justify-content: center;
    position: relative;
    left: -140px;
  }

  .about__visual {
    width: 55.5555555556vw;
    margin: 0;
  }

  .about__visual img {
    margin-top: 0;
  }

  .about__wrap {
    position: relative;
    top: -18px;
    transform: translateY(16%);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about__title {
    width: 36.1111111111vw;
  }

  .about__sub {
    margin-top: 16px;
    font-size: max(1.1111111111vw, 1.2rem);
  }

  .about__txtArea {
    margin-top: 1.9444444444vw;
  }

  .about__txt--lead {
    font-size: 1.6666666667vw;
  }

  .about__txt--description {
    margin-top: 22px;
    font-size: 1.25vw;
  }

  .about__line {
    position: absolute;
    top: 0;
    width: 100%;
  }

  .about__line img {
    margin: 24px 16px 0;
    height: 46.1111111111vw;
  }

  .about__frame {
    width: 100vw;
    position: absolute;
    bottom: -100px;
  }
}

/* ======================
gallery
====================== */
.gallery__content {
  background-image: url(../images/gallery_bg.png);
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
}

.gallery__label {
  background-color: #FDFDFD;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 0;
}

.gallery__label__inner {
  width: max-content;
  animation: scroll 10s linear infinite;
}

.gallery__label span {
  color: #D8EBE2;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--mainColor);
  font-size: 12.5rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-right: 24px;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.gallery__sns {
  position: absolute;
  top: 30px;
  right: 10px;
  z-index: 10;
}

.snsBtn--gallery {
  background-color: rgba(250, 250, 250, 0.2);
}

.snsBtn--gallery:hover {
  background-color: rgba(0, 158, 59, 0.6);
}

.slick-slider {
  overflow: hidden;
}

.gallerySlider {
  padding: 96px 0 44px;
}

.gallerySlider__item {
  padding-left: 30px;
}

.gallerySlider__item img {
  width: 256px;
}


@media screen and (min-width: 769px) {
  .gallery__content {
    position: relative;
    top: 10px;
    padding-bottom: 32px;
  }

  .gallery__label span {
    font-size: 12.5vw;
    margin-right: 48px;
  }

  .gallery__sns {
    position: absolute;
    top: 36px;
    right: 16px;
  }

  .gallerySlider {
    padding: 106px 0 48px;
  }

  .gallerySlider__item img {
    width: 20.5555555556vw;
  }
}

@media screen and (min-width: 769px) and (max-width: 1399px) {
  .section--gallery {
    position: relative;
    top: 47px;
  }

  .gallery__content {
    padding-bottom: 8px;
  }

  .gallery__label span {
    font-size: 12.5vw;
    margin-right: 60px;
  }
}

@media screen and (min-width: 1400px) {
  .section--gallery {
    position: relative;
    top: 4px;
  }
}

/* ======================
menu
====================== */
.section--menu {
  position: relative;
}

.menu__top {
  background-image: url(../images/menuTop-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 54px 22px 64px;
}

.menu__top__content {
  max-width: 448px;
  margin: 0 auto;
}

.menu__title {
  width: 240px;
  margin-left: 8px;
}

.menu__sub {
  color: var(--baseColor);
  font-size: 1.1rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 1.1px;
  margin: 10px 0 0 110px;
}

.menu__visual img {
  position: absolute;
  right: 0;
  width: min(90.6666666667vw, 400px);
}

.menu__list {
  margin-top: min(59.7333333333vw, 264px);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.menu__item {
  background-color: rgba(250, 250, 250, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 60px;
  width: 448px;
  height: 98px;
  color: var(--baseColor);
  position: relative;
  padding: 13px 28px 10px;
  transition: 0.5s;
  cursor: pointer;
}

.menu__item::before {
  content: '';
  display: block;
  width: 80px;
  height: 80px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 9px;
  left: 36px;
}

.menu__item--croffle::before {
  background-image: url(../images/slickImage/oreo.png);
}

.menu__item--cake::before {
  background-image: url(../images/slickImage/lotusIceBox.png);
}

.menu__item--drink::before {
  background-image: url(../images/slickImage/cafeLatte.png);
}

.menu__item:hover {
  background-color: rgba(40, 40, 40, 0.2);
  backdrop-filter: blur(24px);
}

.menu__item__wrap {
  margin-left: 116px;
}

.menu__category {
  font-size: min(3.4666666667vw, 1.8rem);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
}

.menu__description {
  font-size: min(2.9333333333vw, 1.2rem);
  font-weight: var(--weight-bold);
}

.menu__txt {
  margin-top: 1px;
}

.effect__item {
  pointer-events: none;
}

.effect__item--1 {
  position: absolute;
  top: 2%;
  left: 70%;
}

.effect__item--1 img {
  width: min(26.1333333333vw, 98px);
  height: auto;
}

.effect__item--2 {
  position: absolute;
  top: 13%;
  left: 7%;
}

.effect__item--2 img {
  width: min(28.2666666667vw,106px);
  height: auto;
}

.effect__item--3 {
  position: absolute;
  top: 24%;
  left: 26%;
}

.effect__item--3 img {
  width: min(26.1333333333vw, 96px);
  height: auto;
}

.effect__item--4 {
  height: auto;
  position: absolute;
  top: 43%;
  left: 72%;
}

.effect__item--4 img {
  width: min(26.6666666667vw, 100px);
  height: auto;
}

.floating {
  animation: floating 7s ease-in-out infinite alternate;
}

@keyframes floating {
  0% {
    transform: translate3d(8px, 5px, 0) rotate(-8deg)
  }

  50% {
    transform: translate3d(-8px, 5px, 0) rotate(8deg)
  }

  100% {
    transform: translate3d(8px, 5px, 0) rotate(-8deg)
  }
}

.upDown {
  animation: upDown 7s ease-in-out infinite alternate;
}

@keyframes upDown {
  0% {
    transform: translate3d(0, 10px, 0)
  }

  50% {
    transform: translate3d(0, -10px, 0)
  }

  100% {
    transform: translate3d(0, 10px, 0)
  }
}

.menu__bottom {
  background-image: url(../images/menuBottom-spBg.png);
  background-size: cover;
  background-position: right bottom;
  padding: 54px 0 0;
  height: 480px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.section--menu::after {
  content: '';
  display: block;
  width: 43.7333333333vw;
  height: min(48.5333333333vw, 182px);
  position: absolute;
  top: 66%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(../images/ribon-sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.menuSlider {
  margin: 0 auto;
  max-width: 1080px;
  height: 300px;
  position: absolute;
  top: 45%;
  left: 52%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.menuSlider--drink {
  position: absolute;
  top: 47%;
  left: 51%;
}

.menuSlider--drink .slick-list.draggable {
  height: 600px;
}

.menuSlider__item img {
  width: 240px;
  height: auto;
  padding: 10px;
}

.menuSlider--drink .menuSlider__item img {
  width: 220px;
  padding: 0px;
}

.menuSlider .slick-slide {
  opacity: 0.3;
  transition: opacity 2s ease, transform 2s ease;
  transform: translateY(10px) rotateY(10deg);
}

.menuSlider .slick-slide.slick-active {
  opacity: 1;
  transform: translateY(10px) rotateY(10deg);
}

.menuSlider .slick-slide.slick-center {
  transform: scale(1.2) translateY(30px) rotateY(0deg);
  transition: transform 2s;
  opacity: 1;
  z-index: 2;
}

.menuSlider .slick-slide.slick-cloned {
  opacity: 1 !important;
}

.menuSlider-thumbnail {
  max-width: 300px;
  overflow: hidden;
  position: absolute;
  top: 82%;
  left: 52%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

  .menuSlider-thumbnail--drink {
  position: absolute;
  top: 84%;
}

.menuSlider-thumbnail__item img {
  width: 108px;
  height: 100%;
  background-size: contain;
  padding: 10px;
}

.menuSlider-thumbnail--drink .menuSlider-thumbnail__item img {
  width: 88px;
}

.menuSlider-thumbnail .slick-slide {
  opacity: 0.5;
}

.menuSlider-thumbnail .slick-slide.slick-active {
  opacity: 1;
}

.menuTab {
    animation: display 2s ease-out;
}

@keyframes display {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.menuTab--cake,
.menuTab--drink {
  display: none;
}

.menuTab::before {
  content: '';
  display: block;
  width: 465px;
  height: 313px;
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: contain;
  background-repeat: no-repeat;
}

.menuTab--croffle::before {
  background-image: url(../images/croffle_asciiArtBg-sp.png);
}

.menuTab--cake::before {
  background-image: url(../images/cake_asciiArtBg-sp.png);
}

.menuTab--drink::before {
  background-image: url(../images/drink_asciiArtBg-sp.png);
}

@media screen and (min-width: 769px) {
  .menu__top {
    padding: 80px 12.109375vw 108px;
  }

  .section--menu::after {
    display: none;
  }

  .menu__top__content {
    margin: 0;
  }

  .menu__title {
    width: 22.2222222222vw;
    margin-left: 8px;
  }

  .menu__sub {
    font-size: min(0.9027777778vw, 2.2rem);
    letter-spacing: 1.1px;
    margin: 1.1111111111vw 0 0 11.3888888889vw;
  }

  .menu__visual img {
    width: 56.2248995984vw;
    position: absolute;
    top: 64px;
    right: 0;
  }

  .menu__list {
    margin-top: 58px;
    gap: 22px 18px;
    position: relative;
    left: 0;
  }

  .menu__item {
    height: 110px;
    position: relative;
    padding: 18px 28px;
  }

  .menu__item__wrap {
    margin-left: 120px;
  }

  .menu__txt {
    margin-top: 2px;
    font-size: 1.1rem
  }

  .effect__item--1 {
    position: absolute;
    top: 0%;
    left: 48%;
  }

  .effect__item--1 img {
    width: 9.02777777778vw;
    height: auto;
  }

  .effect__item--2 {
    position: absolute;
    top: 7%;
    left: 32%;
  }

  .effect__item--2 img {
    width: 9.02777777778vw;
    height: auto;
  }

  .effect__item--3 {
    position: absolute;
    top: 33%;
    left: 0%;
  }

  .effect__item--3 img {
    width: 9.02777777778vw;
    height: auto;
  }

  .effect__item--4 {
    position: absolute;
    top: 30%;
    left: 50%;
  }

  .effect__item--4 img {
    width: 9.02777777778vw;
    height: auto;
  }

  .menu__bottom {
    height: 720px;
  }

  .menuTab::before {
    width: 920px;
    height: 800px;
    position: absolute;
    top: 62%;
    left: 48%;
  }

  .menuTab--croffle::before {
    background-image: url(../images/croffle_asciiArtBg.png);
  }

  .menuTab--cake::before {
    background-image: url(../images/cake_asciiArtBg.png);
  }

  .menuTab--drink::before {
    background-image: url(../images/drink_asciiArtBg.png);
  }

  .menuSlider {
    max-width: 1200px;
    height: 560px;
    position: absolute;
    top: 44%;
    left: 52%;
  }

  .menuSlider--drink {
    position: absolute;
    top: 46%;
  }

  .menuSlider .slick-list.draggable {
    height: 500px;
  }

  .menuSlider__item img {
    width: 384px;
    padding: 40px;
  }

  .menuSlider--drink .menuSlider__item img {
    width: 340px;
    padding: 32px;
  }

  .menuSlider .slick-slide.slick-center {
    transform: scale(1.5) translateY(60px) rotateY(0deg);
  }

  .menuSlider-thumbnail {
    max-width: 720px;
    position: absolute;
    bottom: -7%;
    left: 52%;
  }

  .menuSlider-thumbnail__item img {
    width: 140px;
    height: 100%;
    padding: 18px;
  }

  .menuSlider-thumbnail--drink .menuSlider-thumbnail__item img {
    width: 112px;
  }
}

@media screen and (min-width: 1200px) {
  .menu__top {
    padding: 96px 7.5vw 108px;
  }

  .section--menu::after {
    content: '';
    display: block;
    width: min(25vw, 380px);
    height: min(31.6666666667vw, 480px);
    position: absolute;
    top: 59%;
    left: 70%;
    background-image: url(../images/ribon.png);
  }

  .menu__visual img {
    width: 40vw;
  }

  .menu__list {
    width: 930px;
  }
}

@media screen and (min-width: 1920px) {
  .section--menu::after {
    display: none;
  }
}

/* ======================
information
====================== */
.section--information {
  position: relative;
  padding: 0 0 196px;
  background-color: var(--baseColor);
}

.information__scroll {
  height: 80svh;
  position: relative;
  overflow: hidden;
}

.line__wrapper {
  padding-top: 60px;
  position: sticky;
  top: 0;
  height: 80svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.line {
  font-size: 13.6rem;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 1px var(--mainColor);
  white-space: nowrap;
  line-height: 1;
  overflow: hidden;
}

.information__visual {
  display: inline-block;
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  pointer-events: none;
  width: 350px;
  height: auto;
}

.map {
  border: 8px solid #FFF !important;
  border-radius: 24px;
  width: min(84vw, 1340px);
  height: 192px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.information__heading {
  display: none;
}

.section--information::after {
  content: '';
  display: block;
  width: 230px;
  height: 120px;
  background-image: url(../images/information_visual.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 52px;
  right: 50%;
  transform: translateX(50%);
  animation: shake 2s linear infinite;
}

@keyframes shake {
  0% {
    transform: translateX(50%) rotate(5deg);
  }

  50% {
    transform: translateX(50%) rotate(-5deg);
  }

  100% {
    transform: translateX(50%) rotate(5deg);
  }
}

.information__table {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 700;
  line-height: 1.3;
  z-index: 1;
}

.information__table dt {
  width: max(11.1111111111vw, 140px);
  font-size: min(4.2666666667vw, 1.5rem);
  padding-top: 11px;
}

.information__table dd {
  font-size: min(3.7333333333vw, 1.4rem);
  border-bottom: 1px dashed var(--mainColor);
  padding: 11px 0 11px;
}

.dd--address {
  padding-bottom: 0;
}

.dd--small {
  line-height: 2;
}

.information__table small {
  margin-left: 12px;
  font-size: min(3.2vw, 1.2rem);
  font-weight: var(--weight-semibold);
  color: #777;
}

.link--instagram {
  margin: 0 2px;
  font-size: 1.3rem;
  color: #3C79D4;
  cursor: pointer;
  vertical-align: 1px;
}

.link--instagram:hover {
  opacity: 0.6;
  transition: 0.6s;
}

.icon-externaLlink {
    vertical-align: -3px;
    width: 16px;
    height: 16px;
    margin-right: 2px;
}

.information__content {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.information__line {
  position: absolute;
  top: 0;
  width: 100%;
  height: 848px;
  display: flex;
  justify-content: space-between;
}

.information__line img {
  margin: 16px 8px 0;
}

@media screen and (min-width: 769px) {
  .section--information {
    padding: 0 0 168px;
  }

  .information__scroll {
    height: 90vh;
  }

  .line__wrapper {
    padding-top: 48px;
    height: 90vh;
  }

  .line {
    font-size: min(17.7777777778vw, 264px);
    line-height: 0.8;
  }

  .information__visual {
    top: 54%;
    left: 50%;
    width: 47.7777777778vw;
    height: auto;
  }

  .map {
    border: 16px solid #FFF !important;
    border-radius: 32px;
    width: min(84vw, 1340px);
    height: 358px;
  }

  .information__heading {
    display: block;
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 5;
  }

  .information__title {
    width: min(58.3333333333vw, 840px);
    height: auto;
  }

  .section--information::after {
    display: none;
  }

  .information__table {
    margin-top: 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 700;
    line-height: 1.3;
    z-index: 1;
    position: relative;
  }

  .information__table::before {
    content: '';
    display: block;
    width: min(17.4228675136vw, 288px);
    height: min(24.1984271022vw, 400px);
    background-image: url(../images/information_visual-left.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: -58%;
  }

  .information__table::after {
    content: '';
    display: block;
    width: min(16.9388989716vw, 280px);
    height: min(24.1984271022vw, 400px);
    background-image: url(../images/information_visual-right.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: -58%;
  }

  .information__table dl {
    display: flex;
    flex-direction: row;
    border-bottom: 1px dashed var(--mainColor);
  }

  .information__table dt {
    font-size: 1.8rem;
    padding-top: 12px;
  }

  .information__table dd {
    border-bottom: none;
    font-size: 1.8rem;
    padding: 12px 0 11px;
  }

  .dd--address {
    padding-bottom: 4px !important;
  }

  .information__table small {
    margin-left: 20px;
    font-size: 1.4rem;
    vertical-align: 2px;
  }

  .link--instagram {
    font-size: 1.4rem
  }

  .information__line img {
    margin: 24px 16px 0;
    height: 880px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .section--information {
    padding: 0 0 232px;
  }

  .information__heading {
    position: absolute;
    top: 40%;
  }

  .information__title {
    width: 540px;
    height: auto;
  }

  .information__table {
    margin-top: 64px;
  }

  .information__table::before {
    display: none;
  }

  .information__table::after {
    display: none;
  }

  .information__table dt {
    font-size: 1.6rem;
  }

  .information__table dd {
    font-size: 1.6rem;
  }

  .section--information::after {
    display: block;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1440px) {
  .information__table::before {
    position: absolute;
    top: 0;
    left: -60%;
  }

  .information__table::after {
    position: absolute;
    top: 0;
    right: -60%;
  }

  .information__table dt {
    font-size: 1.6rem;
  }

  .information__table dd {
    font-size: 1.6rem;
  }
}

.fadeIn {
  transform: translateY(50px);
  opacity: 0;
  transition: 0.8s;
}

.fadeIn.animated {
  transform: translateY(0);
  opacity: 1;
}