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

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 {
  text-align: center;
  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;
  letter-spacing: 4.2px;
}

/* 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;
  }
}


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

.headerber__container {
  background-image: url("../images/sp/sp-header.png");
  height: clamp(1px, 16.87vw, 63px);
}

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

.menucat__container{
  position: relative;
}

.menucat__container::after{
  position: absolute;
  content: "";
  display: block;
  width: clamp(1px, 41.07vw, 238px);
  height: clamp(1px, 58.13vw, 383px);
  background-image: url(../images/pc/frame-flower3.png);
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(20deg);
  top: -2vh;
  right: -4vw;
}

/* 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(-50%);
  width: 45vw;
  max-width: 250px;
  aspect-ratio: 1 / 1;
  animation: slideIn 1.8s ease-out forwards;
  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 fly-in animation */
@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;
  }
}

.scroll-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5px;
  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: "Segoe Script";
  font-size: clamp(1px, 2.67vw, 10px);
  line-height: normal;
  position: absolute;
  bottom: 30%;
  letter-spacing: 2px;
}


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

@media screen and (min-width: 769px){
  
  /* 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: 3.5vw;
    top: 3.68vw;
    right: 4.4%;
  }

  .menucat__container::after{
    position: fixed;
    top:-8vh;
    right: -1vw;
    width: clamp(180px, 17.43vw, 251px);
    height: clamp(200px, 24.58vw, 354px);
  }
 

  .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: 1.6rem;
  font-weight: 600;
  margin-top: 35px;

}

.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);
}

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

.nav__abouttxt{
  line-height: 1;
}

.nav__btn{
  width: 12px;
}



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

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

 /* pc-nav */
  .nav {
    position: fixed;
    width: 350px;
  }
}


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

.section--accsess {
  margin-top: 49vw;
  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.6;
  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: 400;
  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 {
  display: flex;
  align-items: center;
  font-size: clamp(0.1rem, 4.27vw, 1.6rem);
}


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

.icon-img {
  width: clamp(1px, 6.4vw, 28px);
  height: clamp(1px, 6.4vw, 28px);
  vertical-align: middle;
  margin-left: 12px;
}

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


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

@media screen and (min-width:769px) {
  .section--accsess {
    margin-top: 0vw;
    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;
    font-size: 1.8rem;
  }

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

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

  }

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

  .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;
  }

}

/* ==============================================
　↓　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: 58%;
}


/* common.css end */

