@charset "utf-8";
/*
SP ～519px
TAB 520px～959px
PC 960px～
*/
/***********************************/
/* フォント                           
/***********************************/
/* Kaisei Decol Bold */
@font-face {
  font-family: 'Kaisei Decol';
  src: local('Kaisei Decol Bold'), local('KaiseiDecol-Bold'),
    local('Kaisei Decol'),
    url('../fonts/Kaisei_Decol/KaiseiDecol-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Zen Kaku 400 */
@font-face {
  font-family: 'Zen Kaku Gothic New';
  src: local('Zen Kaku Gothic New Regular'), local('ZenKakuGothicNew-Regular'),
    local('Zen Kaku Gothic New'),
    url('../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Regular.ttf')
      format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Zen Kaku 500 */
@font-face {
  font-family: 'Zen Kaku Gothic New';
  src: local('Zen Kaku Gothic New Medium'), local('ZenKakuGothicNew-Medium'),
    url('../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Medium.ttf')
      format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* Zen Kaku 700 */
@font-face {
  font-family: 'Zen Kaku Gothic New';
  src: local('Zen Kaku Gothic New Bold'), local('ZenKakuGothicNew-Bold'),
    url('../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Bold.ttf')
      format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/***********************************/
/* ベース                            
/***********************************/
html {
  font-size: 62.5%;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-size: 1.4rem;
  background: #f8d5d4;
  color: #4a2e22;
  font-family: 'Zen Kaku Gothic New', 'Yu Gothic', 'Meiryo',
    'Hiragino Kaku Gothic ProN', sans-serif;
  font-weight: 500;
}

main h1,
main h2,
main h3 {
  font-family: 'Kaisei Decol', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans',
    Meiryo, sans-serif;
  text-align: center;
}

main h1 {
  font-size: 3.6rem;
  margin-bottom: 50px;
}

main h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* --- SP ～519px --- */
@media screen and (max-width: 519px) {
  main h1 {
    font-size: 2.6rem;
    margin-bottom: 28px;
  }
  main h2 {
    font-size: 2.4rem;
  }
}
/* --- TAB 520px～959px --- */
@media screen and (min-width: 520px) and (max-width: 959px) {
  main h1 {
    font-size: 3rem;
  }
  main h2 {
    font-size: 2.6rem;
  }
}

section {
  margin-bottom: 100px;
}

/* --- SP ～519px --- */
@media screen and (max-width: 519px) {
  section {
    margin-bottom: 80px;
  }
}

.center {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

/* --- SP ～519px --- */
@media screen and (max-width: 519px) {
  .center {
    padding-inline: 16px;
  }
}
/* --- TAB 520px～959px --- */
@media screen and (min-width: 520px) and (max-width: 959px) {
  .center {
    padding-inline: 24px;
  }
}
/* ---  PC 960px～ --- */
@media screen and (min-width: 960px) {
  .center {
    padding-inline: 32px;
  }
}

/***********************************/
/* Splash                          
/***********************************/
/* 最初のぽよぽよ */
#splash {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8d5d4;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

#splash img {
  width: 180px;
  animation: poyo 1.2s ease-in-out infinite;
}

@keyframes poyo {
  0%,
  100% {
    transform: scale(1);
  }
  25% {
    transform: scaleX(1.05) scaleY(0.95);
  }
  50% {
    transform: scale(0.97);
  }
  75% {
    transform: scaleX(0.95) scaleY(1.05);
  }
}

#splash.fadeout {
  opacity: 0;
  pointer-events: none;
}

/***********************************/
/* TOP                          
/***********************************/
body.top h2 {
  display: block;
  width: max-content;
  margin-inline: auto;
  padding-bottom: 1.5rem;
  background-image: radial-gradient(circle, #5bb4a8 3px, transparent 4px);
  background-size: 16px 10px;
  background-repeat: repeat-x;
  background-position: 0 calc(100% - 2px);
  animation: titleDots 2.6s linear infinite;
  will-change: background-position;
}

@keyframes titleDots {
  to {
    background-position: 16px calc(100% - 2px);
  }
}
/***********************************/
/* ヘッダー                            
/***********************************/
.site_header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: auto;
  right: 0;
  z-index: 300;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px 5px 20px;
  background: transparent;
  transition: background-color 0.25s ease, box-shadow 0.25s ease,
    backdrop-filter 0.25s ease, padding 0.25s ease, opacity 0.2s ease,
    transform 0.25s ease;
}

/* --- SP ～519px --- */
@media screen and (max-width: 519px) {
  .site_header {
    padding: 2px 8px 0;
  }
}

/* 下層ページヘッダー背景 */
.subpage .site_header.bg {
  background-color: rgba(248, 213, 212, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(74, 46, 34, 0.08);
  padding: 10px 20px 5px 20px;
}

.logo img {
  width: 200px;
  height: auto;
  transition: width 0.28s ease;
  transform-origin: left top;
}

.subpage .logo img {
  width: 150px;
}

/* --- SP ～519px --- */
@media screen and (max-width: 519px) {
  .logo img,
  .site_header.shrink .logo img {
    width: 84px !important;
  }
}
/* --- TAB 520px～959px --- */
@media screen and (min-width: 520px) and (max-width: 959px) {
  .logo img {
    width: 180px;
  }
}

/* 縮小後 */
.site_header.shrink .logo img {
  width: 100px;
}

/* ブルブル */
@keyframes wobble {
  0% {
    transform: rotate(0);
  }
  30% {
    transform: rotate(-2deg);
  }
  60% {
    transform: rotate(1.5deg);
  }
  100% {
    transform: rotate(0);
  }
}

.site_header.shrink .logo.wobble img {
  animation: wobble 0.35s ease-out;
}

.site_header .header_wrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

/* カート */
.cart_btn {
  margin-top: 8px;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  cursor: pointer;
}

.cart_btn img {
  width: 30px;
  height: 30px;
  display: block;
}

.cart_btn:hover {
  transform: translateY(-1px) scale(1.06);
  opacity: 0.92;
}

.cart_btn:focus-visible {
  outline: 3px solid rgba(91, 180, 168, 0.45);
  outline-offset: 2px;
  border-radius: 10px;
}

/* ハンバーガーメニュー */
.hnav {
  position: relative;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 310;
}

/* 閉じている時：3つの「丸」 */
.hnav::before,
.hnav::after,
.hnav .bar {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #4a2e22;

  width: 8px;
  height: 8px;
  border-radius: 50%;
  transition: width 0.28s ease, height 0.28s ease, border-radius 0.28s ease,
    transform 0.28s ease, opacity 0.2s ease, top 0.28s ease;
}

.hnav::before {
  top: calc(50% - 12px);
}

.hnav::after {
  top: calc(50% + 12px);
}

/* 開いたときは × に変形 */
.hum_nav .hnav.overlay {
  position: fixed;
  top: 12px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 220;
}

.hum_nav .hnav.overlay::before,
.hum_nav .hnav.overlay::after {
  top: 50%;
  width: 22px;
  height: 4px;
  border-radius: 2px;
  transform-origin: 50% 50%;
}

.hum_nav .hnav.overlay::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.hum_nav .hnav.overlay::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hum_nav .hnav.overlay .bar {
  opacity: 0;
}

/* フルスクリーンメニュー */
.hum_nav {
  position: fixed;
  font-family: 'Kaisei Decol', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans',
    Meiryo, sans-serif;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: grid;
  align-content: center;
  justify-content: center;
  background: rgba(248, 213, 212, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
  text-align: center;
}

html.menu-open .hum_nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.25s ease;
}

/* メニュー内リンクのフェードイン */
.hum_nav ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: min(88vw, 540px);
}

.hum_nav a {
  display: inline-block;
  font-size: 2rem;
  color: #4a2e22;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding: 8px 4px;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.25s ease,
    border-color 0.2s ease;
}

html.menu-open .hum_nav li:nth-child(1) a {
  opacity: 1;
  transform: none;
  transition-delay: 0.05s;
}
html.menu-open .hum_nav li:nth-child(2) a {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}
html.menu-open .hum_nav li:nth-child(3) a {
  opacity: 1;
  transform: none;
  transition-delay: 0.15s;
}
html.menu-open .hum_nav li:nth-child(4) a {
  opacity: 1;
  transform: none;
  transition-delay: 0.2s;
}
html.menu-open .hum_nav li:nth-child(5) a {
  opacity: 1;
  transform: none;
  transition-delay: 0.25s;
}

.hum_nav a:hover {
  transition-delay: 0s;
  color: #5bb4a8;
}

/* メニュー開いてるときは背景スクロールを止める */
html.menu-open {
  overflow: hidden;
}

/* メインビジュアル */
.mvisual_mask {
  width: clamp(640px, 96vw, 1600px);
  height: clamp(560px, 90vh, 1100px);
  height: clamp(560px, 90dvh, 1100px);
  margin: 0 auto;
  clip-path: url(#handOval);
  -webkit-clip-path: url(#handOval);
  overflow: hidden;
  display: block;
}

.mvisual_mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

.mvisual_fixed {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  display: block;
}

.mvisual_ph {
  height: clamp(520px, 82vh, 1020px);
}

.mvisual {
  width: 100%;
  height: 100%;
}

.clipdefs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* --- SP ～519px --- */
@media screen and (max-width: 519px) {
  .mvisual_ph {
    height: clamp(400px, 68svh, 620px);
  }

  .mvisual_mask {
    width: 100svw;
    aspect-ratio: 3 / 4;
    height: auto !important;
    margin: 0;
  }

  .mvisual_mask img {
    transform: scale(1);
  }
}
/* --- TAB 520px～959px --- */
@media screen and (min-width: 520px) and (max-width: 959px) {
  .mvisual_ph {
    height: clamp(380px, 62vh, 720px);
    height: clamp(380px, 62svh, 720px);
  }

  .mvisual_mask {
    width: clamp(520px, 88vw, 1200px);
    height: clamp(420px, 66vh, 820px);
    height: clamp(420px, 66svh, 820px);
  }
}

/* 画面を染める */
.page_tint {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #f8d5d4;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s linear;
}

/* ふっくちゃん */
.fukkuchan {
  position: absolute;
  z-index: 2;
  left: 90%;
  top: 70%;
  transform: translate(-50%, -50%);
  width: clamp(72px, 8%, 180px);
  aspect-ratio: 1 / 1;
  pointer-events: none;
  transform-origin: 50% 85%;
  animation: slimeJump 2.8s cubic-bezier(0.25, 0.7, 0.2, 1) infinite;
}

.fukkuchan img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ジャンプ */
@keyframes slimeJump {
  0% {
    transform: translate(-50%, -50%) translateY(0) scaleX(1) scaleY(1);
  }
  10% {
    transform: translate(-50%, -50%) translateY(4px) scaleX(1.14) scaleY(0.86);
  }
  25% {
    transform: translate(-50%, -50%) translateY(-58px) scaleX(0.92) scaleY(1.08);
  }
  38% {
    transform: translate(-50%, -50%) translateY(-78px) scaleX(0.98) scaleY(1.02);
  }
  55% {
    transform: translate(-50%, -50%) translateY(-18px) scaleX(0.96) scaleY(1.04);
  }
  70% {
    transform: translate(-50%, -50%) translateY(0) scaleX(1.18) scaleY(0.84);
  }
  85% {
    transform: translate(-50%, -50%) translateY(-14px) scaleX(0.98) scaleY(1.02);
  }
  100% {
    transform: translate(-50%, -50%) translateY(0) scaleX(1) scaleY(1);
  }
}

/* --- SP ～519px --- */
@media screen and (max-width: 519px) {
  .fukkuchan {
    top: 70svh;
  }
}
/* --- TAB 520px～959px --- */
@media screen and (min-width: 520px) and (max-width: 959px) {
  .fukkuchan {
    top: 50%;
    left: 88%;
    width: clamp(96px, 11%, 220px);
  }
}

/* コンセプト */
section.concept {
  position: relative;
  z-index: 10;
  line-height: 2.5;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  font-size: 2rem;
  white-space: pre-line;
}

section.concept .concept_p {
  margin-bottom: -100px;
}

section.concept .concept_p .concept_catch {
  font-size: 2.2rem;
  font-weight: 700;
}

section.concept .concept_s {
  display: none;
}

/* --- SP ～519px --- */
@media screen and (max-width: 519px) {
  section.concept .concept_p {
    display: none;
  }
  section.concept .concept_s {
    display: block;
    margin-top: 0 !important;
    font-size: 1.9rem;
    margin-bottom: -80px;
    white-space: normal;
  }
  section.concept .concept_s .reveal {
    margin-bottom: 20px;
  }
  section.concept .concept_s .concept_catch {
    margin-top: 20px;
    font-size: 2.1rem;
    font-weight: 700;
  }
}

/* 新着商品  */
section.new_products {
  position: relative;
  z-index: 10;
}

.products-slider {
  padding: 4px 8px 34px;
}

.products-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.product-round {
  width: 100%;
  max-width: clamp(200px, 36vw, 380px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 16px rgba(74, 46, 34, 0.08);
  margin-inline: auto;
}

.product-round img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
}

.swiper-pagination-bullet {
  opacity: 0.4;
  background: #efafac;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.15);
}

/* --- SP ～519px --- */
@media screen and (max-width: 519px) {
  .products-slider {
    width: 100svw;
    margin-left: calc(50% - 50svw);
    margin-right: calc(50% - 50svw);
    padding-left: 0;
    padding-right: 0;
  }
  .products-slider .swiper-slide {
    width: 84svw !important;
  }
  .products-slider .swiper-slide:first-child {
    margin-left: 8svw;
  }
  .products-slider .swiper-slide:last-child {
    margin-right: 8svw;
  }
  .product-round {
    max-width: 100%;
  }
}
/* --- TAB 520px～959px --- */
@media screen and (min-width: 520px) and (max-width: 959px) {
  .product-round {
    max-width: clamp(300px, 44vw, 420px);
  }
}
/* --- ～959px --- */
@media screen and (max-width: 959px) {
  .products-slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 0;
    padding-right: 0;
  }
  .product-round {
    margin-inline: 0;
  }
  .products-slider .swiper-slide {
    padding: 0;
  }
}

/* もっと見るボタン */
.products_more {
  text-align: center;
  margin-top: 12px;
}

.products_more a {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 9999px;
  background: #5bb4a8;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(91, 180, 168, 0.25);
}

.products_more a:hover {
  opacity: 0.9;
}

/* お知らせ  */
section.news {
  position: relative;
  z-index: 10;
  max-width: 860px;
}

section.news .news_list {
  list-style: none;
  padding: 0;
}

section.news .news_item article {
  display: grid;
  grid-template-columns: 6em 1fr;
  align-items: baseline;
  column-gap: 12px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
}

section.news .news_item article .news_date {
  width: auto;
}

section.news .news_title {
  text-align: left;
  margin: 0.8rem 0;
}

section.news .news_title a {
  text-decoration: none;
}

section.news .news_title a:hover {
  text-decoration: underline;
}

section.news .news_more {
  margin-top: 1.5rem;
  text-align: right;
  padding-right: 5px;
}

html,
body {
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

/* ちょこっと背景 */
.wvisual {
  position: relative;
  /* z-index: 300; */
  z-index: 200;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: clamp(220px, 48svh, 480px);
  background-image: url('../img/top_img02.jpg');
  background-position: center 45%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* ---  PC 960px～ --- */
@media screen and (min-width: 960px) {
  .wvisual {
    height: clamp(320px, 62svh, 760px);
  }
}

/* スマホ/タブレット（タッチ端末） */
@media screen and (max-width: 959px), (hover: none) and (pointer: coarse) {
  .wvisual {
    background: transparent !important;
    height: clamp(260px, 30svh, 640px);
    clip-path: inset(0);
  }
  .wvisual::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100dvh;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.18s ease;
    background-repeat: no-repeat;
    background-position: center 45%;
    background-size: cover;
    background-color: #f8d5d4;
    transform: translateZ(0);
    background-image: url('../img/top_img02_s.jpg');
  }
  .wvisual.is-active::before {
    opacity: 1;
  }
}

/* アクセス / 店舗情報 */
section.access {
  position: relative;
  z-index: 10;
  margin-top: 50px;
}

/* ドット背景 */
section.access .access_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  max-width: 980px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 20px;
  background: radial-gradient(
        circle,
        rgba(91, 180, 168, 0.12) 2px,
        transparent 3px
      )
      0 0/24px 24px,
    radial-gradient(circle, rgba(255, 232, 236, 0.34) 2px, transparent 3px) 12px
      12px/24px 24px,
    #fff;
  box-shadow: 0 10px 24px rgba(74, 46, 34, 0.08);
}
section.access .access_wrapper .store {
  width: 45%;
  padding-right: 40px;
}
section.access .access_wrapper .store img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(74, 46, 34, 0.12);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

section.access .access_wrapper .address {
  font-size: 1.5rem;
  padding-left: 40px;
  text-align: left;
  border-left: 1px dashed rgba(74, 46, 34, 0.12);
}
section.access .access_wrapper .address address {
  font-style: normal;
  line-height: 1.8;
  margin-bottom: 2rem;
}

section.access .access_wrapper .address .hours {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
section.access .access_wrapper .address .hours dt {
  flex: 0 0 7em;
  font-weight: 700;
  margin: 0;
}
section.access .access_wrapper .address .hours dd {
  flex: 1 1 260px;
  margin: 0;
}

/* --- SP ～519px --- */
@media screen and (max-width: 519px) {
  section.access .access_wrapper {
    flex-direction: column;
    gap: 14px;
    padding: 18px;
  }
  section.access .access_wrapper .store {
    width: 100%;
    padding-right: 0;
  }
  section.access .access_wrapper .address {
    padding-left: 0;
    border-left: 0;
    width: 100%;
  }
}
/* --- TAB 520px～959px --- */
@media screen and (min-width: 520px) and (max-width: 959px) {
  section.access .access_wrapper {
    padding: 24px;
  }
  section.access .access_wrapper .store {
    width: 48%;
    padding-right: 24px;
  }
  section.access .access_wrapper .address {
    padding-left: 24px;
  }
}

/* インスタグラム */
section.insta {
  position: relative;
  z-index: 10;
}

section.insta .insta_wrapper {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

section.insta .insta_wrapper .insta_item {
  width: 20%;
}

section.insta .insta_wrapper .insta_item a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(74, 46, 34, 0.1);
  aspect-ratio: 1 / 1;
}

section.insta .insta_wrapper .insta_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

section.insta .insta_wrapper .insta_item a:hover img {
  transform: scale(1.04);
}

/* --- SP ～519px --- */
@media screen and (max-width: 519px) {
  section.insta .insta_wrapper .insta_item {
    width: 48%;
  }
}
/* --- TAB 520px～959px --- */
@media screen and (min-width: 520px) and (max-width: 959px) {
  section.insta .insta_wrapper .insta_item {
    width: 40%;
  }
}
/* ---  PC 960px～ --- */
@media screen and (min-width: 960px) {
  section.insta .insta_wrapper .insta_item {
    width: 20%;
  }
}

/* もっと見るボタン */
.insta_more {
  text-align: center;
  margin-top: 16px;
}
.insta_more a {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 9999px;
  background: #5bb4a8;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(91, 180, 168, 0.25);
}

.insta_more a:hover {
  opacity: 0.9;
}
/***********************************/
/* フッター                       
/***********************************/
footer.site_footer {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  background-color: #5bb4a8;
  padding: 10px;
  color: #fff;
  font-weight: 400;
  font-size: 1.3rem;
}

footer.site_footer ul.footer_links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

footer.site_footer ul.footer_links li a {
  text-decoration: none;
}

footer.site_footer ul.footer_links li a:hover {
  text-decoration: underline;
}

footer.site_footer address {
  text-align: left;
  font-style: normal;
}

footer.site_footer small {
  display: block;
}

/* SNSリンク */
.site_footer .sns_links {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.site_footer .sns_links a {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.12s ease, opacity 0.12s ease, background 0.12s ease;
}
.site_footer .sns_links a:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}
.site_footer .sns_links a:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.site_footer .sns_links img {
  width: 32px;
  height: 32px;
  display: block;
}

.site_footer .sns_links .line a {
  background: #fff;
}

/* --- SP ～519px --- */
@media screen and (max-width: 519px) {
  footer.site_footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    align-items: center;
  }
  footer.site_footer address {
    text-align: center;
  }
  .site_footer .sns_links a {
    width: 44px;
    height: 44px;
  }
  .site_footer .sns_links img {
    width: 26px;
    height: 26px;
  }
  .site_footer .sns_links {
    margin-left: 0;
  }
}

/***********************************/
/* 下層                      
/***********************************/
/* 下層だけメニューが開いたらヘッダーを消す */
.subpage .site_header.on {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.25s ease;
}

.subpage h2 {
  background: none;
}

/* パンくず */
.pankuzu {
  font-size: 1.5rem;
  color: rgba(74, 46, 34, 0.72);
  margin: 10px auto 20px;
}
.pankuzu ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem;
}
.pankuzu li {
  display: inline-flex;
  align-items: center;
  line-height: 1.8;
}
.pankuzu li + li::before {
  content: '›';
  margin: 0 0.4em;
  opacity: 0.5;
}
.pankuzu a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted transparent;
}
.pankuzu a:hover {
  border-bottom-color: currentColor;
}
.pankuzu_bold {
  font-weight: 700;
}

/* みずひき */
.subpage .mizuhiki {
  position: relative;
  height: 200px;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.subpage .mizuhiki svg {
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

.subpage .mizuhiki .line {
  vector-effect: non-scaling-stroke;
  transform-box: fill-box;
  transform-origin: center;
  animation-fill-mode: both;
  will-change: transform;
}

.subpage .mizuhiki .line1 {
  transform: translateY(-3px);
  animation: line1 8s ease-in-out infinite;
}
.subpage .mizuhiki .line2 {
  transform: translateY(-4px);
  animation: line2 9.5s ease-in-out infinite 0.2s;
}
.subpage .mizuhiki .line3 {
  transform: translateY(-5px);
  animation: line3 11s ease-in-out infinite 0.4s;
}

@keyframes line1 {
  0%,
  100% {
    transform: translateY(-3px);
  }
  50% {
    transform: translateY(3px);
  }
}
@keyframes line2 {
  0%,
  100% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(4px);
  }
}
@keyframes line3 {
  0%,
  100% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(5px);
  }
}

/* --- SP ～519px --- */
@media screen and (max-width: 519px) {
  .subpage .mizuhiki {
    height: 150px;
    margin-bottom: -8px;
  }
  .subpage .mizuhiki svg {
    height: 160%;
    inset: auto 0 -20% 0;
  }
}
/* --- TAB 520px～959px --- */
@media screen and (min-width: 520px) and (max-width: 959px) {
  .subpage .mizuhiki {
    height: 150px;
    margin-bottom: -10px;
  }
  .subpage .mizuhiki svg {
    height: 150%;
    inset: auto 0 -16% 0;
  }
  .pankuzu {
    margin-top: 20px;
  }
}

/***********************************/
/* 商品一覧
/***********************************/
.products_intro {
  max-width: 860px;
  margin: 0 auto 80px;
  font-size: 1.7rem;
}

.subpage section#products {
  text-align: center;
}

.subpage section#products h2 {
  font-family: 'Kaisei Decol', system-ui, sans-serif;
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.subpage section#products h2 {
  padding-bottom: 0.45em;
  border-bottom: 1px solid rgba(74, 46, 34, 0.22);
}
.subpage section#products h2::before,
.subpage section#products h2::after {
  content: '';
  position: absolute;
  bottom: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.25;
}
.subpage section#products h2::before {
  left: 0;
}
.subpage section#products h2::after {
  right: 0;
}

.subpage section#products h2:not(:first-of-type) {
  margin-top: 32px;
}

.product_wrapper {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.product_item {
  width: min(100%, 280px);
}

.product_card {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product_card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(74, 46, 34, 0.12);
}

.product_card:focus-visible {
  outline: 3px solid rgba(91, 180, 168, 0.9);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(91, 180, 168, 0.22);
}

.product_media {
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
}
.product_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.product_card:hover .product_media img {
  transform: scale(1.04);
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 1.2rem;
  padding: 4px 8px;
  border-radius: 9999px;
  background: #f7caca;
  color: #4a2e22;
}

.badge.limited {
  background: #e3818c;
  color: #fff;
}

.product_body {
  padding: 10px 12px 12px;
  text-align: center;
}

.product_title {
  font-family: 'Kaisei Decol', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans',
    Meiryo, sans-serif;
  font-size: 2rem;
  margin: 0 0 4px;
}
.product_meta {
  margin: 0;
  font-size: 1.5rem;
}
.price {
  font-weight: 700;
}

/* --- SP ～519px --- */
@media screen and (max-width: 519px) {
  .product_title {
    font-size: 1.8rem;
  }
  .products_intro {
    margin-bottom: 50px;
  }
}

/* ページ数 */
.pager {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin: 18px 0 40px;
}
.pager a {
  display: inline-block;
  min-width: 36px;
  text-align: center;
  padding: 6px 10px;
  border-radius: 9999px;
  text-decoration: none;
  color: #4a2e22;
  background: #fff;
  border: 1px solid rgba(74, 46, 34, 0.15);
}
.pager a.current {
  background: #5bb4a8;
  color: #fff;
  border-color: transparent;
}
.pager a.disabled {
  opacity: 0.45;
  pointer-events: none;
}

/***********************************/
/* 店舗紹介（store.html）           */
/***********************************/
.store_intro {
  max-width: 860px;
  margin: 0 auto 80px;
  font-size: 1.7rem;
}

.store_row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(16px, 4vw, 36px);
  align-items: center;
  margin: clamp(22px, 5vw, 44px) auto;
}

.store_row.reverse .store_media {
  order: 2;
}
.store_row.reverse .store_text {
  order: 1;
}

.store_row .store_media.reveal {
  transition-delay: 0.02s;
}
.store_row .store_text.reveal {
  transition-delay: 0.12s;
}

.store_media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(74, 46, 34, 0.1);
  background: #fff;
}

.store_text h2 {
  font-size: clamp(2rem, 2.4vw, 2.6rem);
}
.store_text p {
  font-size: 1.6rem;
  line-height: 1.9;
  margin: 0;
}

.about_store_contact .about_store_contact_text {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.about_store_contact .contact_btn {
  margin-top: 20px;
  text-align: center;
}

.about_store_contact .contact_btn a {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 9999px;
  background: #5bb4a8;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(91, 180, 168, 0.25);
}

.about_store_contact .contact_btn a:hover {
  opacity: 0.9;
}

/* スクロール出現アニメ */
.reveal {
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.6s ease, transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
  display: inline-block;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.stg_0 {
  transition-delay: 0.5s;
}
.stg_1 {
  transition-delay: 0.15s;
}
.stg_2 {
  transition-delay: 0.25s;
}
.stg_3 {
  transition-delay: 0.35s;
}
.stg_4 {
  transition-delay: 0.45s;
}
.stg_5 {
  transition-delay: 0.55s;
}

/* --- SP ～519px --- */
@media screen and (max-width: 519px) {
  .store_intro {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 50px;
  }
  .store_row {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 50px;
  }
  .store_row.reverse .store_media {
    order: 1;
  }
  .store_row.reverse .store_text {
    padding-left: 10px;
    padding-right: 10px;
    order: 2;
  }
  .store_text h2 {
    font-size: 1.9rem;
  }
  .store_text p {
    font-size: 1.5rem;
  }
}

/***********************************/
/* Q&A
/***********************************/
.faq {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

section.faq h2 {
  font-family: 'Zen Kaku Gothic New', 'Yu Gothic', 'Meiryo',
    'Hiragino Kaku Gothic ProN', sans-serif;
}

.faq_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq_item {
  background: #fff;
  border: 1px solid rgba(74, 46, 34, 0.12);
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(74, 46, 34, 0.06);
  overflow: hidden;
}
.faq_item + .faq_item {
  margin-top: 10px;
}
.faq_q {
  margin: 0;
}

.faq_toggle {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 100%;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 1.5rem 2rem;
  font-size: 2rem;
  font-weight: 500;
  position: relative;
  transition: background-color 0.15s ease, opacity 0.15s ease;
}
.faq_toggle:hover {
  background: rgba(91, 180, 168, 0.08);
}
.faq_toggle:focus-visible {
  outline: 3px solid rgba(91, 180, 168, 0.45);
  outline-offset: 2px;
}
.faq_toggle[aria-expanded='true'] {
  background: rgba(91, 180, 168, 0.06);
}

/* ＋／－ */
.faq_toggle::after,
.faq_toggle::before {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  width: 12px;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
  border-radius: 2px;
  opacity: 0.8;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.faq_toggle::before {
  transform: translateY(-50%) rotate(90deg);
}

.faq_toggle[aria-expanded='true']::before {
  transform: translateY(-50%) rotate(90deg) scaleX(0);
  opacity: 0;
}

.faq_a {
  font-size: 1.6rem;
  padding: 1.5rem 2rem;
  line-height: 1.9;
  border-top: 1px dashed rgba(74, 46, 34, 0.12);
  color: #4a2e22;
}

.faq_more {
  text-align: center;
  margin-top: 14px;
}

.btn_link {
  color: #4a2e22;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.btn_link:hover {
  opacity: 0.85;
}

/* --- TAB 520px～959px --- */
@media screen and (min-width: 520px) and (max-width: 959px) {
  .faq_more {
    margin-bottom: 200px;
  }
}

/***********************************/
/* お問い合わせ
/***********************************/
section.contact {
  max-width: 860px;
  margin: 0 auto 40px;
}

section.contact_alt {
  max-width: 860px;
  margin: 0 auto 24px;
  text-align: center;
}

form#contact_form {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(74, 46, 34, 0.08);
}

.form_group {
  margin: 14px 0;
}
.form_label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}
.req {
  display: inline-block;
  font-size: 0.85em;
  color: #fff;
  background: #e3818c;
  border-radius: 9999px;
  padding: 0.1em 0.5em;
  margin-left: 0.5em;
}

.form_input,
.form_textarea {
  width: 100%;
  box-sizing: border-box;
  font: inherit;
  color: #4a2e22;
  background: #fff;
  border: 1px solid rgba(74, 46, 34, 0.18);
  border-radius: 12px;
  padding: 0.6em 0.8em;
  outline: 0;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
.form_textarea {
  resize: vertical;
  min-height: 180px;
}

.form_input:focus,
.form_textarea:focus {
  border-color: #5bb4a8;
  box-shadow: 0 0 0 3px rgba(91, 180, 168, 0.18);
}

.form_input:invalid,
.form_textarea:invalid {
  border-color: #e3818c;
  box-shadow: 0 0 0 3px rgba(227, 129, 140, 0.18);
}

.form_help {
  margin: 0.4em 0 0;
  font-size: 0.9em;
  color: rgba(74, 46, 34, 0.75);
}

.form_actions {
  text-align: center;
  margin-top: 18px;
}

.btn_primary {
  appearance: none;
  border: 0;
  border-radius: 9999px;
  padding: 0.65em 1.6em;
  background: #5bb4a8;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.12s ease, opacity 0.12s ease;
}
.btn_primary:hover {
  transform: translateY(-1px);
}

.btn_primary:focus-visible {
  outline: 3px solid rgba(91, 180, 168, 0.45);
  outline-offset: 2px;
}

/***********************************/
/* ショッピングカート                         
/***********************************/
section.cart {
  margin-bottom: clamp(120px, 31vh, 350px);
}

.cart_wrapper {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(18px, 4vw, 28px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(74, 46, 34, 0.08);
  text-align: center;
}

.cart_icon img {
  width: clamp(56px, 9vw, 84px);
  height: auto;
  display: inline-block;
}

.cart_text {
  font-size: 1.8rem;
  margin: 12px 0 10px;
}

.cart_wrapper .products_btn {
  margin-top: 20px;
  text-align: center;
}

.cart_wrapper .products_btn a {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 9999px;
  background: #5bb4a8;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(91, 180, 168, 0.25);
}

.cart_wrapper .products_btn a:hover {
  opacity: 0.9;
}

/* --- TAB 520px～959px --- */
@media screen and (min-width: 520px) and (max-width: 959px) {
  section.cart {
    margin-bottom: 500px;
  }
}

/* 動きを減らす設定の配慮（パララックス負担軽減） */
@media (prefers-reduced-motion: reduce) {
  .fukkuchan {
    animation: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  main h2 {
    animation: none;
  }
}
