@charset "UTF-8";
/* ====================
common
======================= */
:root {
  --primary-white: #fefefe;
  --primary-black: #4A4A4C;
  --primary-purple: #ebe8e8;
  --primary-beige: #958D8C;
  --primary-gray: #888;
  --primary-back: #f5f5f5;
  --contentWidth: 89.7%;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family:
        'Noto Sans JP', Raleway , sans-serif;
    font-style: normal;
    color: var(--primary-black);
    background-color: var(--primary-back);
    line-height: 30px;
}

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

.title {
  color: var(--primary-black);
  text-align: center;
  font-family: Raleway;
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.2;
  letter-spacing: 1rem;
  align-items: center; 
  display: flex; 
  justify-content: center; 
  margin-top: 35px;
  margin-bottom: 35px;
}

.title::before,
.title::after {
  background-color: var(--primary-black);
  content: "";
  height: 1.8px;
  width: 20px;
  margin-right: 11px; 
  margin-left: 11px;
  transform: rotate(-60deg); 
}

.btn {
  display: block;
  border-radius: 10px;
  background: var(--primary-beige);
  color: var(--primary-white);
  text-align: center;
  font-family: Raleway;
  font-size: 2rem;
  line-height: 2.2;
  padding: 0 80px 0 50px;
  position: relative;
  transition: 0.4s;
  width: 251px;
  height: 42px;
}

.btn::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 11px;
  background-image: url(../image/arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-30%);
  }

.btn:hover {
    opacity: 0.5;
}

.btn__group {
  display: grid;
  place-content: center;
  place-items: center;
}

/* loading view */
.hidden {
  display: none; /* 初期状態で非表示 */
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  background: var(--primary-beige);
  transition: all 1s;
}
#loading_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.loading-one {
  display: inline-block;
  border-top: 1px solid var(--primary-white);
  border-bottom: 1px solid var(--primary-white);
}
.loading-one p.loading-txt {
  color: var(--primary-white);
  font-family: Raleway;
  font-size: 20px;
  letter-spacing: 0.25em;
  line-height: 2.0;
  padding: 2em 0;
}

#loading.is-active {
  opacity: 0;
  visibility: hidden;
}

/*==================
.animation_loading
==================*/

.animation_loading {
  animation: equalizer_loading 7000ms infinite;
  animation-iteration-count: 10;
}
@keyframes equalizer_loading {
  0% {
    width: 70%;
  }
  10% {
    width: 50%;
  }
  20% {
    width: 100%;
  }
  30% {
    width: 10%;
  }
  40% {
    width: 50%;
  }
  50% {
    width: 70%;
  }
  60% {
    width: 50%;
  }
  70% {
    width: 10%;
  }
  80% {
    width: 100%;
  }
  90% {
    width: 10%;
  }
  100% {
    width: 70%;
  }
}

/*==========================
fedeIn
==========================*/
.fadeIn {
  transform: translate(0, 50px);
  opacity: 0;
  transition: 2.3s;
}

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

/* common pc */
@media screen and (min-width: 769px) {
  .title {
    font-size: 2.5rem;
    margin-top: 60px;
    margin-bottom: 50px;
  }

  .title::before,
  .title::after {
    height: 1.8px;
    width: 25px;
    margin-right: 50px; 
    margin-left: 50px;
    transform: rotate(-60deg); 
  }

  .btn__group {
    justify-content: end;
    margin-top: -154px;
    padding-right: 11.5%;
  }
}/* pc 769px */

/*==========================
header
==========================*/
.header {
  position: fixed;
  width: 100%; 
  height: 92px; 
  background-color: (var(--primary-white)); 
  padding: 15px 7.2%;
  box-sizing: border-box;
  top: 0; 
  left: 0; 
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  transition: 0.5s;
  z-index: 500;
}

.header.scroll {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
}

.shoplogo {
  width: 113px;
  height: 47px;
  object-fit: cover;
}

.header__btn {
  width: 30px;
  height: 22px;
  object-fit: cover;
}

/* .nav初期表示 */
.pc_nav {
  display: none;
}

/* 右から現れるハンバーガーメニュー */
.nav {
  z-index: 100;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  display: block;
  background: var(--primary-white);
  opacity: 0;
  transform: translateX(100%); /* Y軸ではなくX軸を使う */
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out; /* スライド速度を0.6秒に設定 */
}
  
#hamburger {
  position: relative;
  display: block;
  width: 30px;
  height: 25px;
  margin: 0 0 0 auto;
  cursor: pointer;
  z-index: 200;
}

#hamburger span,
#hamburger::before,
#hamburger::after {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-black);
  transition: all 0.3s ease-in-out; /* 線のアニメーション */
}

#hamburger span {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-black);
  transform: translateY(-50%);
}

#hamburger::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-black);
}

#hamburger::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-black);
}

/* メニューが開いたときのクロススタイル */
.hamburger-active #hamburger span {
  opacity: 0;
}

.hamburger-active #hamburger::before {
  top: 45%;
  transform: rotate(45deg); /* 上の線を45度回転させてクロス */
}

.hamburger-active #hamburger::after {
  bottom: 45%;
  transform: rotate(-45deg); /* 下の線を-45度回転させてクロス */
}

.nav.open {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out; /* 開閉両方に適用 */
}

.nav ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.nav__list {
  margin-top: 120px;
}

.nav__item {
  color: var(--primary-black);
  font-family: Raleway;
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.2;
  letter-spacing: 1px;
  margin-top: 35px;
}

.nav__item:first-of-type {
  margin-top: 0;
} 
.nav__item:hover {
  color: var(--primary-beige);
}

/* .header pc */
@media screen and (min-width:769px) {
  .header {
    height: 100px;
    margin: 0 auto;
    padding: 10px 5.5%;
  }

  .shoplogo {
    width: 160px;
    height: 60px;
  }

  .nav {
    display: none;
  }

  .pc_nav {
    display: block;
    width: auto;
    height: auto;
    padding: 0;
    position: static;
    transform: translate(0);
    opacity: 1;
    background-color: transparent;
  }
  
  .pc_nav__list {
    margin-top: 0;
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .pc_nav__item {
    margin: 0 0 0 40px;
    color: var(--primary-black);
    font-family: Raleway;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.8rem;
    line-height: 2.2;
    transition: background-color .3s;
    position: relative;
  }

  .pc_nav__item_icon {
    display: block;
    background-image: url(../image/Instagram.svg);
    width: 35px;
    height: 35px;
    background-repeat: no-repeat;
    margin: 0 0 0 40px;
  }

  #hamburger {
    display: none;
  }

  /* サブメニュー */
  .pc_nav__item:hover .drop-menu-list {
    transform: scaleY(1);
  }

  .drop-menu-item:hover {
    opacity: .8; /* ドロップダウンメニューアイテムのホバー時の不透明度 */
    transition: opacity .3s; /* 不透明度の変化をアニメーション化 */
  }
  
  .pc_nav__item a {
    align-items: center;
    color: var(--primary-black); /* メニューアイテム内のリンクテキストの色 */
    display: flex;
    height: 80px;
    justify-content: center;
  }
  
  .pc_nav__item a:hover {
    color: var(--primary-beige);
  }
  
  /* ドロップダウンメニュー */
  .drop-menu {
    position: relative;
  }
  .drop-menu-list {
    left: 0;
    position: absolute;
    top: 100%;
    transform: scaleY(0);
    transform-origin: center top; /* 変形を適応する基準を設定 */
    transition: transform .3s; /* 表示の変化をアニメーション化 */
    width: max-content;
    z-index: 1;
  }
  .drop-menu-item {
    background-color: var(--primary-white);
    border: solid 1px var(--primary-gray);
    transition: opacity .3s; /* 不透明度の変化をアニメーション化 */
    text-align: center;
    display: flex;
    transform: translateX(-50%); 
    margin-bottom: 1px;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
  }
}/* pc 769px */

/* reseve */
.section--reseve {
  padding: 50px 0 20px;
}

@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50%));
  }
}

.scroll_track {
  width: max-content;
  animation: infiniteScroll 30s linear infinite;

  /* &:hover {
    animation-play-state: paused;
  } */
}

.scroll_wrap {
  width: 100%;
  overflow: hidden;
}

.scroll_inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}

.scroll_cont {
  display: grid;
  place-content: center;
  object-fit: cover;
  flex-shrink: 0;
  width: 280px;
  height: 170px;
  background-size: 100%;


  &:nth-of-type(4n + 1) {
    background-image: url(../image/shop02.gif);
  }
  &:nth-of-type(4n + 2) {
    background-image: url(../image/design01.gif);
  }
  &:nth-of-type(4n + 3) {
    background-image: url(../image/shop09.jpg);
  }
  &:nth-of-type(4n + 4) {
    background-image: url(../image/img01.gif);
  }
}

.reseve_group {
  padding-top: 20px;
}

.icon__group {
  padding-top: 20px;
}

.line {
  width: 30px;
  height: 30px;
  object-fit: cover;
  margin-left: 30px;
}

/* .reseve pc */
@media screen and (min-width:769px) {
  .section--reseve {
    padding: 150px 0 100px;
  }

  .scroll_cont {
    width: 480px;
    height: 300px;
    background-position-y: 80%;
  }

  .reseve_group {
    display: none;
  }
}/* pc 769px */

/*==========================
footer
==========================*/
.footer {
  padding: 30px 0 20px;
  border-top: solid 1px var(--primary-black);
  text-align: center;
}

.footerTitle {
  color: var(--primary-black);
  font-family: Raleway;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.1rem;
}

.footerAddress {
  color: var(--primary-black);
  font-size: 1.1rem;
  line-height: 2.2;
  letter-spacing: 0.1rem;
}

.footer__group img {
  margin-top: 10px;
  width: 150px;
  height: 60px;
}

.copy {
  color: var(--primary-black);
  font-size: 1.1rem;
  line-height: 2.2;
  letter-spacing: 0.1rem;
  margin-top: 10px;
}

/* .reseve pc */
.footer {
  padding: 50px 0;
}

.footer__group img {
  margin-top: 10px;
  width: 156px;
  height: 65px;
}

@media screen and (min-width:769px) {
  .copy{
    margin-top: 20px;
    font-size: 1.6rem;
  }
}