@charset "UTF-8";
/* ==============================================
common
===============================================*/

/* color ============== */
:root {
  --primary-white: #FCF9F3;
  --primary-black: #303030;
  --primary-brown: #C19F5A;
}

/* font ============== */
html {
  font-size: 62.5%;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size:clamp(0.1rem, 4.27vw, 1.6rem);
  color: var(--primary-black);
  background-color: #DBCEC1;
  line-height: 1.5;
}

html, body {
  overflow-x: hidden;
}

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

.section__title {
  font-size: clamp(0.1rem, 6.4vw, 2.4rem);
  font-family: 'Courier New', Courier, monospace;
  font-weight: 600;
  letter-spacing: 8px;
  line-height: 2.33;
  text-align: center;
}

/* Fade-in on scroll */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.spOnly {
  display: block;
}
.pcOnly {
  display: none;
}


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

@media screen and (min-width: 769px) {
  .spOnly {
  display: none;
  }
  .pcOnly {
  display: block;
  }
  .spBr {
  display: none;
  }
}


/* loading animation ============== */

#page-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #1a1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

#page-loading.hide {
  opacity: 0;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loading-logo {
  width: 80px;
  display: block;
  margin: 0 auto;
}

.loading-text {
  font-size: 1.6rem;
  color: var(--primary-white);
  font-weight: 600;
  font-family: "Josefin Sans";
  letter-spacing: 3px;
}

.loading-text span {
  display: inline-block;
  animation: waveBounce 2.4s ease-in-out infinite;
}

.loading-text span:nth-child(1) { animation-delay: 0s; }
.loading-text span:nth-child(2) { animation-delay: 0.2s; }
.loading-text span:nth-child(3) { animation-delay: 0.4s; }
.loading-text span:nth-child(4) { animation-delay: 0.6s; }
.loading-text span:nth-child(5) { animation-delay: 0.8s; }
.loading-text span:nth-child(6) { animation-delay: 1.0s; }
.loading-text span:nth-child(7) { animation-delay: 1.2s; }
.loading-text span:nth-child(8) { animation-delay: 1.4s; }
.loading-text span:nth-child(9) { animation-delay: 1.6s; }

@keyframes waveBounce {
  0%, 100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-30px);
  }
  40% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}



/* ============================================
↓　SP/header-logo,menu
===============================================*/

.headerber__container {
  position: relative;
  background-image: url("../images/sp/sp-header.png");
  background-position: center;            
  background-size: cover;
  background-repeat: repeat;
  height: clamp(1px, 16.87vw, 63px);
  z-index: 2;
}

.menu {
  width: clamp(1px, 55vw, 206px);
  top: -7vw;
  right: -11.5vw;
  position: fixed;
  cursor: pointer;
  transform-origin: top center;
  animation: swing-pendulum-smooth 6.5s infinite linear;
  z-index: 2;
}

.menucat__container{
  position: relative;
}

/* menu animetion */

@keyframes swing-pendulum-smooth {
  0%   { transform: rotate(-10deg); }
  50%  { transform: rotate(0deg); }
  100% { transform: rotate(-10deg); }
}

/* logo */

.floating-sun {
  position: absolute; 
  top: 56px;
  left: 0%;
  transform: translateX(-100%);
  width: 45vw;
  max-width: 250px;
  aspect-ratio: 1 / 1;
  animation: slideIn 1.8s ease-out forwards;
  animation-delay: 2.0s;
  transition: all 0.8s ease;
  z-index: 2;
}


.sun-rays {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
  z-index: 1;
}

.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  z-index: 2;
}

/* Logo-rotating sunrays */
@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Logo-flyin */
@keyframes slideIn {
  0% {
    transform: translate(-150px, -150px) rotate(-15deg);
    opacity: 0;
  }
  50% {
    transform: translate(30px, 50px) rotate(10deg);
    opacity: 1;
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
    opacity: 1;
  }
}

/* ============================================
↓　PC/header-logo,menu
===============================================*/

@media screen and (min-width: 769px){

  .headerber__container {
    background-image: none;
    height: 0px;
  }
  
  /* PC-logo */
  .floating-sun {
    position: fixed;
    width: 21vw;
    left: 11%;
    top: 2%;
    max-width: 100%;
  }

  .floating-sun.scrolled {
  top: 10px;
  left: 10px;
  transform: none;
  width: 15vw;
  }
  
  .center-logo {
    width: 60%;
  }
  
  .menu {
    width: 20.5vw;
    top: -2vw;
    right: 2%;
    animation: swing-pendulum-smooth 7s infinite linear;
    transform: rotate(20deg);
  }

  .menucat__container::after{
    display: none;
  }
 

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 6.25vw;
    height: 100vh;
    background-size: contain;
    background-repeat: repeat-y;
    background-position: top left;
    overflow: hidden;
    z-index: 1;
  }

  .sidebar-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 6.25vw;
    height: 100vh;
    background-size: contain;
    background-repeat: repeat-y;
    background-position: top left;
    opacity: 0;
    transition: opacity 2s ease;
  }

  .sidebar-img--current {
    opacity: 1;
    z-index: 1;
  }

  .sidebar-img--next {
    z-index: 2;
  }
}


/* ============================================
↓　SP/header-navi
===============================================*/

/* navi --Initial state : hidden */

.nav-topic{
  width: 117px;
  opacity: 0.9;
}

.nav {
  background-image: url(../images/sp/navlist-back.png);
  background-repeat: repeat;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.90);
  width: 100%;
  height: 100vh;
  padding: 24px 6.4%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.4s;
}

.nav__header {
  display: flex;
  justify-content: right;
}

.nav__list {
  margin-top: 24px;
}

.nav__list :first-of-type{
  margin-top: 0;
}

.nav__item {
  font-family: 'Courier New', Courier, monospace;
  letter-spacing: 6.2px;
  font-size: clamp(0.1rem, 4.27vw, 1.6rem);
  font-weight: 600;
  margin-top: 35px;
  letter-spacing: 4px;
}

.nav__item img {
  width: 26px;
  display: inline-block;
  vertical-align: -8px;
  margin-right: 15px;
  opacity: 0.7;
}

.nav-snsIcons-wrap{
  display: flex;
  justify-content: right;
  margin-top: 40px;
}

.nav-sns-icon {
  width: 45px;
  height: auto;
}

.nav.active {
  transform: translateX(0);
}

.nav__btn{
  width: 12px;
}

.st{
  display: flex;
  align-items: flex-end;
}

.nav__abouttxt{
  line-height: 1;
}


/* ============================================
↓　PC/header-navi
===============================================*/

@media screen and (min-width: 769px){

  /* pc-nav */
  .nav {
    position: fixed;
    width: 350px;
    padding: 24px 2.4% 24px 4.4%;
  }
}


/* ==============================================
↓　SP/article header
===============================================*/

.article__header{
  padding: 25px 4% 0;
}

.frame__wrap {
  position: relative;
  width: clamp(1px, 90vw, 480px);
  margin: 0 auto;
  aspect-ratio: 1277 / 1765;
  background-image: url('../images/sp/SP-mainflame.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.mainVisual-slider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: visible;
}

.mv-img {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 99%;
  height: 98%;
  object-fit: cover; 
  opacity: 0;
  transition: opacity 3.2s ease;
}

.mv-img.active {
  opacity: 1;
}

.mainVisual{
  max-width: 100%;
  margin: 0 auto;
  margin-top: 25px;
  position: relative;
}

.mainVisual-slider::before{
  position: absolute;
  content: "";
  display: block;
  width: clamp(1px, 35.47vw, 133px);
  height: clamp(1px, 44.53vw, 167px); 
  background-image: url("../images/pc/frame-flower2.png");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(-17deg);
  bottom: -7.5%;
  left: -3%;
  z-index: 2;
}

/* shopinfo */

.m-shopInfo__wrap  {
  border-left: 1px solid #C19F5A;
  border-bottom: 1px solid #C19F5A;
  width: clamp(1px, 92vw, 480px);
  font-size: clamp(0.1rem, 4vw, 1.6rem);
  line-height: 160.045%;
  margin: 4.5vw auto;
  margin-bottom: 2vw;
  padding: 4.36vw;
  letter-spacing: 0.5px;
}

.map-icon {
  display: inline;
  width: clamp(1px, 6.5vw, 25px);

  animation: double-bounce 2s ease-in-out infinite;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  animation-play-state: running;
  animation-name: double-bounce;
  animation-duration: 10s;

}

.map-icon.cig{
  animation: none;
}

.m-shopInfo-txt{
    letter-spacing: 2px;
}

.contact-wrap{
  display: flex;
  align-items: center;
  gap: 69px;
}

.sns-icons{
  display: flex;
  justify-content: end;
}

.sns-icon {
  width: clamp(1px, 8vw, 36px);
  height: auto;
  opacity: 0.9;
}

@keyframes double-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(-8px);
  }
  10% {
    transform: translateY(0);
  }
  15% {
    transform: translateY(-6px);
  }
  20% {
    transform: translateY(0);
  }
}

.bounce-icon {
  animation: double-bounce 2s ease-in-out infinite;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  animation-play-state: running;
  animation-name: double-bounce;
  animation-duration: 10s;
}

.night-info{
  align-items: center;
  line-height: 1.3;
  width: clamp(1px, 92vw, 480px);
  margin: 0 auto;
}

.night-txt{
  font-size: clamp(0.1rem, 3.5vw, 1.3rem);
}


/* scroll */

.scroll-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 25px;
  position: relative;
}

.spoon-icon {
  width: clamp(1px, 6.67vw, 25px);
  transform: rotate(9deg);
  height: auto;
  opacity: 0.9;
  position: relative;
}

.scroll-text {
  color: #303030;
  font-family: "sofia-pro", sans-serif;
  font-style: italic;
  font-size: clamp(1px, 2.67vw, 10px);
  line-height: normal;
  position: absolute;
  bottom: 30%;
  letter-spacing: 2px;
}


/* ==============================================
↓　PC/article header
===============================================*/


@media screen and (min-width: 769px) {

  .article__header {
    padding-top: 90px;
  }

  .mainvisual__wrap{
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: center;
  }

  .frame__wrap {
    width:  60.29vw;
    aspect-ratio: 859 / 492;
    background-image: url('../images/pc/pc-main-frame.png');
  }

  .mv-img {
  position: absolute;
  top: 5px;
  left: 9px;
  width: 98%;
  height: 98%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 3.2s ease;
  }

  .mainVisual{
    align-self: stretch;
    width: 54vw;
    margin: 0;
  }

  .mainVisual::before{
    position: absolute;
    content: "";
    display: block;
    width: 5vw;
    height: 2.29vw;
    background-image: url("../images/pc/flying-cat.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: -24px;
    left: 34%;
    transform: rotate(-25deg);
    z-index: 2;
    opacity: 0.87;
  }


  .mainVisual::after{
    position: absolute;
    content: "";
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 13.89vw;
    height: 17.75vw;
    top: -13%;
    right: -5%;
    transform: rotate(124deg);
    z-index: 2;
  }

  .mainVisual-slider::after{
    position: fixed;
    width: clamp(1px, 41.07vw, 238px);
    height: clamp(1px, 58.13vw, 383px);
    background-repeat: no-repeat;
    transform: rotate(20deg);
    top: -3.5vh;
    right: 0vw;
    z-index: 2;
  }

  .mainVisual-slider {
    position: absolute;
    top: 2px;
    left: 3px;
    width: 99%;
    height: 98%;
    z-index: 2;
  }

  .mainVisual-slider::before {
    background-image: url(../images/pc/frame-flower1.png);
    width: 13.89vw;
    height: 17.75vw;
    transform: rotate(-50deg);
    bottom: -8.5%;
    left: 3%;
  }
}

/* ==============================================
↓　PC/article header/shopinfo
===============================================*/

@media screen and (min-width: 769px){

  .m-shopInfo__wrap  {
    width: 27.8vw;
    padding: 2.3vw 0 1.5vw 2.3vw;
    font-size: clamp(1.2rem, 1.11vw, 1.8rem);
    letter-spacing: 1.5px;
    margin: 0;
  } 

  .m-shopInfo-txt{
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    font-size: clamp(1rem, 1.11vw, 1.6rem);
    letter-spacing: 1.8px;
  }

  .shopinfo__container{
    display: flex;
    align-items: end;
    gap: 26%;
  }

  .night-info{
    margin: 1.04vw 0 0 6.53vw;
  }

  .night-txt{
    font-size: clamp(1.2rem, 0.97vw, 1.4rem);
  }

  .sns-icons {
    position: fixed;
    left: 1.9vw;
    top: 36vw;
    z-index: 3;
  }

  .sns-icon {
    width: clamp(25px, 2.5vw, 35px);
  }

  /* scroll icon */
  .scroll-text {
    font-size: clamp(1rem, 0.833vw, 1.2rem);
  }

  .spoon-icon {
    width:1.74vw;
  }
}

/* ==============================================
　↓ SP/CONCEPT
===============================================*/


.concept__container{
  background-image: url("../images/sp/c-flame.png");
  background-repeat: no-repeat;
  background-position: top ;
  background-size: contain;
  padding: 29.33vw 4.5%  5.33vw;
  margin-top: 8vw;
  position: relative;
}

.concept__container::before{
  content: "";
  position: absolute;
  left: -13vw;
  top: 0vw;
  width: clamp(1px, 40.7vw, 160px);
  height: clamp(1px, 40.7vw, 160px);
  background-image: url("../images/sp/mandara1.png"); 
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.8;
}

.concept-topic{
  font-size: clamp(0.1rem, 5.33vw, 2.0rem);
  text-align: center;
  line-height: 1.6;
  margin-top: 32px;
}

.concept-txt {
  width: 100%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  margin-top: 32px;
  position: relative;
  line-height: 1.8;
  letter-spacing: 1.5px;
}

.concept-txt-dedail {
  width: 100%;
  max-width: 320px;
  text-align: left; 
  padding: 0 5%;
}

.readMore-container{
  width: 62%;
  display: flex;
  justify-content: flex-end;
  transition: all 0.3s ease;
  margin-top: 3px;
  margin-left: 18vw;
}

.readMore-container:hover {
  transform: translateY(-3px);
}

.readMore-button {
  font-family: 'Courier New', Courier, monospace;
  font-size: clamp(0.1rem, 3.47vw, 1.3rem);
  font-weight: 600;
  line-height: 2.3;
  position: relative;
}

.readMore-button::before {
  content: "";
  position: absolute;
  top: 3px;
  left: -17px;
  width: 180%;
  height: 93%;
  border-left: 0.5px solid #303030;
  border-bottom: 0.5px solid #303030;
  pointer-events: none;
}

.readMore-button::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 48px;
  width: clamp(120px, 43.5vw, 120px);
  height: clamp(30px, 10.7vw, 38px);
  background-image: url("../images/sp/reraxCat.png"); 
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  opacity: 0.87;
}

.concept__txt::after{
  content: "";
  position: absolute;
  bottom: 143px;
  left: -80px;
  width: 258px;
  height: 258px;
  background-image: url("../images/sp/m-mandara.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: -1;
}


/* ==============================================
　↓　SP/GARALLY
===============================================*/

.garally {
  padding: 2rem 1rem;
}

.garally-wrap {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}

.garally-wrap.center {
  justify-content: center;
}

.garally-wrap .img1 {
  width: 50%;
  margin-top: 0;
  align-self: flex-start;
}

.garally-wrap .img2 {
  width: 49%;
  margin-top: 4.5rem;
  align-self: center;
}

.garally-wrap.center img {
  width: 60%;
}

img {
  display: block;
  height: auto;
}

.garally{
  position: relative;
  max-width: 500px;
  margin: 6px auto;
}

.garally::after{
  content: "";
  position: absolute;
  left: -8.5vw;
  bottom: -9.6vw;
  width: clamp(1px, 38.7vw, 160px);
  height: clamp(1px, 38.7vw, 160px);
  background-image: url("../images/sp/mandara2.png"); 
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.35;
  z-index: -1;
}

.garally-link__wrap {
  position: relative;
}

.garally-link {
  font-family: 'Courier New', Courier, monospace;
  font-size: clamp(0.1rem, 5vw, 1.8rem);
  font-weight: 600;
  line-height: 233%;
  text-decoration: none;
  padding-left: 15px;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* garally-link-leftline*/
.garally-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.5px;
  background-color: #333;
}

/* garally-link-bottomline*/
.garally-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0.5px;
  width: 111%;
  background-color: #333;
}

.garally-link:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

/* modal-window*/

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; 
  top: -17vw;
  width: 100%;
  height: auto;
  background-color: rgba(0,0,0,0.8);
  overflow: auto;
}

.modal-content {
  display: block;
  margin: 50px auto;
  max-width: 90%;
  max-height: 80vh;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0.6; }
  to { transform: scale(1); opacity: 1; }
}

.close {
  position: absolute;
  bottom: 0;
  left: 48%;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.zoom {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zoom:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* ==============================================
　↓　PC/CONCEPT-GARALLY
===============================================*/

@media screen and (min-width: 769px){

  .concept__container {
    background-image: none;
    padding-top: 0;
    margin-top: 2vw;
  }

  .concept__container::before{
    left: 20vw;
    top: 6vw;
    width: 15.92vw;
    height: 15.92vw;
    opacity: 0.6;
  }

  .concept-garally__wrap{
    background-image: url(../images/pc/pc-c-flame.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    margin: 0 auto;
    padding: 15vw 0vw 8vw;
  }

  .section__title {
    font-size: clamp(22px, 2.22vw, 32px);
    position: relative;
  }
  
  .section__title--concept:before{
    position: absolute;
    content: "";
    background-image: url(../images/sp/ethnicChillx3.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 7vw;
    height: 7vw;
    top: -2vw;
    right: 28vw;
    opacity: 0.8;
  }

  .concept-topic{
    font-style: normal;
    font-weight: 400;
    font-size: clamp(18px, 1.67vw, 24px);
    line-height: 160.141%;
    letter-spacing: 1.2px;
    margin-top: clamp(40px, 4.17vw, 60px);
  }

  .concept-txt-dedail {
    font-size: clamp(12px, 1.18vw, 17px);
    text-align: center;
    max-width: 100%;
    padding: 0;
    line-height: 230%;
    letter-spacing: 1.7px;
    position: relative;
  }

  .concept-txt-dedail:last-of-type::after{
    position: absolute;
    content: "";
    background-image: url(../images/sp/ethnicChillx3.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 7.39vw;
    height: 7.39vw;
    left: 23vw;
    bottom: -4vw;
    transform: scaleX(-1);
    opacity: 0.8;
  }

  .readMore-container {
    margin-top: 2.08vw;
    margin-left: 3vw;
  }

  /* garally */
  .garally-photos{
    display: flex;
  }

  .garally {
    max-width: 73%;
    padding: 0;
  }

  .garally-link{
    font-size: clamp(1rem, 3.47vw, 1.8rem);
    margin-top: 10px;
  }
 

  .garally-wrap .img1 {
      width: 57%;
  }

  .garally-wrap .img2 {
      width: 73%;
  }

  .garally-wrap.center img {
    align-self: flex-start;
    width: 75%;
  }

  .garally::after {
    left: -13.5vw;
    bottom: -12.6vw;
    width: clamp(200px, 18.83vw, 250px);
    height: clamp(200px, 18.83vw, 230px);
  }

  .garally-link__wrap {
    margin-top: 2.08vw;
  }
}

/* ==============================================
　↓　SP/MENU
===============================================*/

.section--menu{
  margin-top: 10vw;
}

.menu-container{
  background-image: url(../images/sp/menu-back.png);
  background-size: contain;
  margin-top: 7vw;
  padding: 13vw 4.2% 15vw;

}

.menuframe-menuicons__wrapper{
  background-color: #EEE6E0;
  border-radius: 90px 90px 0px 0;
  padding: 0 5px;
}

.menuframe__container{
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding-top: 1vw;
}

.menuframe-bg {
  position: relative;
  margin-top: 26px;
  background-image: url("../images/sp/menuflame.png");
  background-position: center;
  background-size: contain;
  aspect-ratio: 923 / 525;
}

.menu-display {
  position: absolute;
  top: 4px;
}

.menu-display img {
  max-width: 500px;
  width: 96%;
  margin: 0 auto;
  transition: opacity 2.0s ease-in-out, transform 1.6s ease-out;
  transform: scale(0.98);
}

.menu-display img.fade-in {
  opacity: 1;
  transform: scale(1);
}

.fade-in {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.6s ease, transform 1.6s ease;
}

.fade-out {
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.3s ease;
}


#menu-description {
  font-size: clamp(0.1rem, 4.27vw, 1.6rem);
  padding: 0 7.4%;
  max-width: 100%;
  line-height: 1.6;
  letter-spacing: 1.5px;
  margin-top: 20px;
}

.menu-icons__container{
  font-family:"sofia-pro";
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 140px;
}

.icon-btn {
  cursor: pointer;
  display: flex;
  justify-content: left;
  align-items: center;
  width: 100%;
  text-align: left;
  transition: background 0.3s;
  border-bottom: 1px solid #C19F5A;
}

.icon-btn.pcOnly{
  display: none;
}

.icon-btn:hover {
  background: rgba(0,0,0,0.05);
}

.icon-btn img {
  width: clamp(1px, 8.53vw, 32px);
  height: clamp(1px, 12vw, 45px);
}

.icon-btn.active {
  color: var(--primary-brown);
  animation: pulse 0.6s;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.02); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

.label-main{
  display: flex;
  align-items: center;
}

.label-title {
  letter-spacing: 2px;
  margin: 0 7vw 0;
}

.label-title.lunchcafe{
  margin: 0 5vw 0;
}

.time {
  letter-spacing: 1px;
  font-size: clamp(0.1rem, 3.9vw, 1.4rem);
}

.time.lc{
  font-size: clamp(0.1rem, 3.5vw, 1.3rem);
  letter-spacing: 1px;
}

.time-pdf{
  display: flex;
  align-items: center;
  gap: 3vw;
}



.pdf-icon {
  max-width: 18px;
  display: inline-block;
}

.pdf-link {
  margin-left: auto;
  display: flex;
  align-items: center;
}

/* Remove background after button click */
.icon-btn:focus {
  outline: none;
  background: none;
}

/* Remove tap highlight color on mobile*/
.icon-btn:active {
  background: none;
}

.icon-btn.active {
  background-color: rgba(0, 0, 0, 0.05);
}

@media screen and (min-width: 426px){
  .icon-btn{
    justify-content: center;
  }
}

.time.lo{
  text-align: right;
  padding: 3vw 3vw 4vw;
  font-size: clamp(0.1rem, 3vw, 1.2rem);
}


/* ==============================================
　↓　PC/MENU
===============================================*/

@media screen and (min-width: 769px){

  .section--menu{
    margin-top: 0;
    position: relative;
    z-index: 1;
  }

  .menu-container{
    margin-top: 4vw;
    background-image: url(../images/pc/pc-menu-back.png);
    background-size: contain;
    padding: 8vw 4.2% 8vw;
  }

  .menuframe-menuicons__wrapper{
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: flex-start;
    gap: 2vw;
    border-radius: 0;
    padding: 2vw 1vw 6vw 3vw;
  }

  .menuframe__container{
    margin: 0;
    max-width: 100%;
    padding: 1vw 1vw 0 0;
  }

  .menu-display{
    top: 6px;
    left: 10px;
  }

  .menu-display img {
    max-width: 100%;
    width: 98%;
    margin: 0;
  }

  .menuframe-bg{
    margin: 0;
    padding: 0;
  }

  #menu-description {
    margin-top: 25px;
    letter-spacing: 1.7px;
  }

  .menu-icons__container {
    width: 60%;
    margin-top: 3vw;
    gap: 1.74vw;
    padding:0;
  }

  .icon-btn {
    justify-content: left;
    padding-left: 1vw;
  }

  .icon-btn img{
    width: clamp(30px, 3.19vw, 46px);
    height: clamp(36px, 4.10vw, 59px);
  }

  .time{
    font-size: clamp(1rem, 1.15vw, 1.6rem);
    margin: 0 2vw 0;
    text-align: left;
  }

  .time.lc{
    font-size: clamp(1rem, 1.15vw, 1.6rem);
  }
  

  .time-pdf {
    gap: 0;
  }

  .label-main{
    justify-content: right;
    gap: 0;
  }

  .label-title.lunchcafe{
    margin: 0 3vw 0;
  }

  .label-title {
    width: 100%;
    margin: 0 3vw 0;
    font-size: clamp(1rem, 1.25vw, 1.8rem);

  }

  .icon-btn.pcOnly{
    font-family: "Zen Kaku Gothic New", sans-serif;
    display: block;
    width: 77%;
    padding: 0;
    margin: 0 0 0 7.5vw;
  }

  .time.lo{
    padding: 0;
    margin: 0;
    font-size: clamp(1rem, 1vw, 1.4rem);

  }

}

/* ==============================================
　↓　SP/NEWS
===============================================*/

.section--news{
  margin-top: 18vw;
}

.section__title{
  letter-spacing: 10px;
}



.news__container {
  background-image: url(../images/sp/news-back.png);
  background-repeat: repeat;
  background-size: auto;
  padding: 56px 4.2%;
  margin-top: 5vw;
  position: relative;
}

.section__title--news{
  position: relative;
}

.news__list {
  background-color: #FCF9F3;
  padding: 24px 4.2% 0px;
  max-width: 500px;
  margin: 0 auto;
}

.news__item {
  margin-top: 12px;
  border-bottom: 1px dashed #107a92;
  padding: 0 0 5vw 2vw;
  
}


.news__item:first-of-type{
  margin-top: 0px;
}

.news__date {
  background-color:#F1EDE6;
  padding: 4px 16px;
  text-align: center;
  font-size: clamp(0.1rem, 3.73vw, 1.4rem);
  font-weight: 600;
  line-height: 1;
}

.news__topic {
  display: flex;
  align-items: flex-start;
}

.news__title {
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  margin-left: 10px;
  letter-spacing: 1.3px;
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover .news__title {
  text-decoration: underline;
}

.news__detail{
  margin-top: 6px;
  display: flex;
  gap: 3vw;
}

.news__txt {
  width: 50%;
  font-size: clamp(0.1rem, 3.73vw, 1.3rem);
  display: -webkit-box;
  -webkit-line-clamp: 11;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.read-more {
  display: block;
  text-align: right;
  font-size: 1rem;
  text-decoration: underline;
  color: var(--primary-brown);
  margin-top: 2px;
}


.news__img{
  margin-top: 6px;
  width: 50%;
}

.loading{
  text-align: center;
}

.new-icon {
  width: 32px;
  height: auto;
  vertical-align: middle;
  margin-top: 3px;
  margin-left: 8px;
}

.loading-cat{
  width: 50px;
  margin: 0 auto;

}

.loading-txt{
  font-family: 'Courier New', Courier, monospace;
  padding-bottom: 2vw;
  font-weight: 600;
}

.readMore-news__container{
  background-color: #FCF9F3;
  text-align: right;
  max-width: 500px;
  padding: 10px 10px 20px;
  margin: 0 auto;
}


.readMore-news{
  padding: 7px;
  border-bottom: 1px dashed #107a92;
  border-left: 1px dashed #107a92;
  font-family: 'Courier New', Courier, monospace;
  font-size: clamp(0.1rem, 3.73vw, 1.4rem);
}


.responsive-iframe{
  height: 18.6vw;
  pointer-events: none;
}

/* === News-imge modal === */

#news-modal {
  display: none;
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
  animation: fadeIn 0.3s ease-in-out;
}

#news-modal-img {
  display: block;
  margin: 50% auto;
  max-width: 100%;
  max-height: 100%;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  border-radius: 0px;
  transition: transform 0.3s;
}

#news-modal-img:hover {
  transform: scale(1.02);
}

.modal-close {
  position: absolute;
  bottom: 10px;
  left: 49%;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.modal-close:hover {
  color: #ffb3b3;
  transform: scale(1.1);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}


/* ==============================================
　↓　PC/NEWS
===============================================*/

@media screen and (min-width: 769px) {

  .news__list {
    background-color: #FCF9F3;
    max-width: 85%;
    justify-content: center;
    margin-top: 2vw;
    padding: 2vw 0 0;
  }

  .news__item{
    padding: 2vw 8vw 3vw 8vw;
    border-left: 1px dashed #107a92;
  }

  .news__item.has-border {
  padding-right:0;
  }

  .news__img{
    width: 50%;
  }

  .news__date{
    padding: 10px 26px;
    font-size: 1.6rem;
  }

  .news__title {
    font-size: 1.8rem;
    margin-left: 24px;
  }

  .section--news{
    margin-top: 10vw;
  }

  .readMore-news__container {
    max-width: 85%;
    margin: 0 auto;
  }

  .responsive-iframe {
    height: 19.4vw;;
  }

  .read-more {
    display: none;
  }

  .news__topic {
    align-items: center;
  }

  .news__txt{
    display: block;
    font-size: 1.4rem;
  }

  .news__detail{
    margin-top: 1.5vw;
  }

  .new-icon{
    width: 46px;
  }
}

/* ==============================================
　↓　INSTAGRAM
===============================================*/


.section--instagram{
  margin-top: 18vw;
}
  
.instagram__container{
margin-top:7vw;
padding:5vw;
background-image:url(../images/sp/instagram-back.png);
background-repeat: repeat;
background-size: contain;
}

.instagram-widget{
  margin: 8vw 0;
  background-color: var(--primary-white);
}

@media screen and (min-width: 769px){
  .section--instagram {
    margin-top: 7vw;
    padding: 0;
  }

  .instagram__container{
    background-image: url(../images/pc/pc-instagram-back.png);
    padding: 3vw 10vw;
  }
}

/* ==============================================
　↓　SP/ACCESS
===============================================*/

.section--access {
  margin-top: 18vw;
  padding-bottom: 9vw;
}

.address {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 24px;
}

.address img {
  margin-right: 8px;
  vertical-align: bottom;
  width: 20px;
}

.map {
  width: 100%;
  height: 400px;
  margin-top: 32px;
}

.directions {
  padding: 24px 6.4% 0 ;
  letter-spacing: 1.4px;
}

.directions-txt2 {
  font-size: clamp(0.1rem, 3.73vw, 1.4rem);
  margin-top: 5px ;
}

.a-shopInfo-images {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.img-entrance {
  width: 57%; 
  max-width: 500px;
  height: auto;
  border-right: 1px solid #C19F5A;
  padding-right: 10px;
  margin-right: 10px;
}

.img-logo {
  width: 39%; 
  max-width: 300px;
  height: auto;
  opacity: 0.8;
}

.a-shopInfo-detail {
  padding: 1.6rem;
  border-left: 1px solid #C19F5A;
  border-bottom: 1px solid #C19F5A;
  line-height: 1.8;
  width: 90%;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

.sub-title {
  font-size: clamp(0.1rem, 3.73vw, 1.4rem);
}

.main-title {
  font-weight: 600;
  font-style: normal;
  font-size: clamp(0.1rem, 6.4vw, 2.4rem);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 13px;
  letter-spacing: 1.7px;
}

.info-line {
  /* font-family:'MOBO'; */
  display: flex;
  align-items: center;
  font-size: clamp(0.1rem, 3.8vw, 1.4rem);
}

.note {
  font-size: clamp(0.1rem, 3.0vw, 1.4rem);
  color: grey;
  margin-left: 6px;
}

.note.cig{
  color: var(--primary-black);
}

.note.night{
  margin-left: 24px;
}

.icon-img {
  width: clamp(1px, 4.67vw, 23px);
  height: clamp(1px, 4.67vw, 23px);
  vertical-align: middle;
  margin-left: 5px;
  margin-right: 8px;
}

.a-shopInfo-detail::after {
  position: absolute;
  content: "";
  background: url('../images/sp/cat-sleep.png');
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -17px;
  right: -11px;
  transform: rotate(-32deg);
  width: clamp(1px, 16vw, 60px);
  height: clamp(1px, 16vh, 60px);
  opacity: 0.9;
}


/* ==============================================
　↓　PC/ACCESS
===============================================*/

@media screen and (min-width:769px) {
  .section--access {
    margin-top: 8vw;
    padding: 4.44vw 4.17vw 6.67vw 7.17vw;
    max-width: 1280px;
    margin: 7vw auto;
  }

  .directions{
    padding: 24px 0;
  }

  .a-shopInfo__container{
    display: flex;
  }

  .a-shopInfo-images{
    padding: 0;
    justify-content: flex-start;
  }

  .a-shopInfo-detail{
    padding: 20px;
    padding-left: 30px;
    font-size: 1.8rem;
    line-height: 1.8;
    letter-spacing: 1px;
  }

  .a-shopInfo-detail::after {
    height: 6.53vw;
    bottom: -37px;
    right: 26px;
  }

  .directions-txt1{
    font-size: 1.8rem;
    letter-spacing: 2.0px;
  }

  .directions-txt2 {
    font-size: 1.6rem;
    letter-spacing: 1.5px;
  }

  .main-title {
    margin-left: 15px;
    font-size: 2.6rem;
  }

  .sub-title{
    margin-left: 30px;
  }

  .info-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: clamp(1rem, 1.11vw, 1.6rem);
  }

  .note {
    font-size: clamp(1rem, 1vw, 1.4rem);
    color: gray;
    margin: 0;
    letter-spacing: 1px;
  }

  .icon-img {
  width: 1.5vw;
  height: 1.5vw;
  vertical-align: middle;
  margin-left: 5px;
  margin-right: 8px;
  }
}


/* ==============================================
　↓　footer
===============================================*/


.footer {
  position: relative;
  background-image: url("../images/sp/sp-fotter.png"); 
  background-repeat: repeat-x;                
  background-position: top center;            
  background-size: cover;                      
  height: 65px;
  padding: 24px 0;
  text-align: center;
}

.copyright {
  font-family: "sofia-pro";
  color: white;
  font-size: 70%;
  line-height: 1.2;
}

.copyright.shio{
  font-size: 55%;
}

@media screen and (min-width:769px) {
  .footer {
    height: 120px;
    padding: 55px 0;
  }
}

/* style.css end */