@charset "UTF-8";
/* CSS Document */
html {
  font-size: calc(100vw / 37.5);
}
body {
  font-size: 62.5%;
  color: var(--text-color);
  font-family: "Noto Sans JP", serif;
  letter-spacing: 0.05em;/*都度調整してください*/
  line-height: 1.5;/*都度調整してください*/
  background: #ffffff;
}
.wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  background-color: #FFF;/*都度調整してください*/
  box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 26px 0px;/*都度調整してください*/
}
img {
  width: 100%;
  height: auto;
  display: block;
}
a {
  cursor: pointer;
  display: block;
}
/*footerエリア*/
footer {
  background: var(--bg-color);
  padding: 2em 0;
}
footer nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
}
footer nav ul li  {
  font-size: 0.9rem;
  letter-spacing: -0.05em;
  color: #FFF;
}
footer nav ul li:last-child:after {
  content: none;
}
footer nav ul li.line {
  border-right: 1px solid;
  margin: 0.3em 0.5em;
}
footer p {
  text-align: center;
  font-size: 0.9rem;
  padding-top: 1em;
  color: #FFF;
  letter-spacing: 0.2em;
}


/* アコーディオン全体 */
.accordion {
  width: 100%;
  margin: 0px auto;
}

/* ボタン部分（画像 + 矢印） */
.ac_header {
  position: relative;
  cursor: pointer;
  display: block;
}

/* ボタン画像を100%で表示 */
.ac_header img {
  display: block;
  width: 100%;
  height: auto;
}

/* 中身（初期状態は閉じる） */
.ac_inner {
  display: none;
  overflow: hidden;
}

.ac_inner img {
  display: block;
  width: 100%;
  height: auto;
}

.shop_top_logo {
  background: #fff;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shop_top_logo img {
  width: 60%;
}
.shop_text {
    margin: 10% auto;
}
.whatsapp_btn img {
  display: block;
  width: 73%; 
  margin: 5% auto;
}
.whatsapp_btn_area {
    margin: 9% auto 0%;
}
.w-full {
    width: 85%;
    text-align: center;
    display: block;
    margin: 0 auto;
}
.shop {
    margin-bottom: 20%;
}
.cta_area {
  width: 100%;
  padding: 0 0 10%;
  background-color: #fff;
}
.cta_title {
    width: 85%;
    margin: 0 auto 2%;
}
.cta_btn {
    width: 85%;
    margin: 0 auto 2%;
}
.cta_area_mv {
  width: 100%;
  padding: 2% 0 8%;
  background-image: url("../img/mv_02_2601.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.cta_area_accordion {
  width: 100%;
  padding: 10% 0 8%;
  background-color: #f7b200;
}
.tel {
    width: 55%;
    margin: 0 auto;
}
.tel_img {
    width: 100%;
    height: auto;
    display: block;
}
/* フローティングエリア */
.floatBtn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 420px;
  height: 90px; /* 画像の高さに合わせる */
  background: url("img/cta_floating_btn.webp") no-repeat center/contain;
  display: flex;
  justify-content: space-between;
  z-index: 9999;
  pointer-events: auto;
}

/* 左右のクリック領域 */
.floatBtn a {
  flex: 1;
  display: block;
  height: 100%;
  background: rgba(0,0,0,0); /* 透明クリック領域 */
}