@charset "UTF-8";

/* ==========================================================================
   Base & Reset
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #24623f;
  background-color: #fff;
  line-height: 1.65;
  position: relative;
  overflow-x: hidden;
  width: 100%;
}

::selection { background-color: #24623f; color: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { background: none; border: none; cursor: pointer; font: inherit; }
ul { list-style: none; }

/* ==========================================================================
   Typography & Fonts
   ========================================================================== */
.font-jp { font-family: "Noto Sans JP", sans-serif; font-weight: 300; }
.font-en { font-family: "Noto Sans JP", sans-serif; font-weight: 400; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }

.text-10px { font-size: 10px; }
.text-xs { font-size: 0.75rem; }
.text-085rem { font-size: 0.85rem !important; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.6rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.uppercase { text-transform: uppercase; }
.whitespace-nowrap { white-space: nowrap; }

.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-custom-2 { letter-spacing: 0.2em; }
.tracking-custom-3 { letter-spacing: 0.3em; }

.leading-none { line-height: 1; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }
.leading-custom-18 { line-height: 1.8; }
.leading-custom-22 { line-height: 2.2; }
.leading-custom-25 { line-height: 2.5; }

/* ==========================================================================
   Colors & Opacity
   ========================================================================== */
.text-primary { color: #24623f; }
.text-white { color: #fff; }
.text-gray-dark { color: #333; }
.text-black{ color: #000; }
.bg-primary { background-color: #24623f; }
.bg-white { background-color: #fff; }
.bg-transparent { background-color: transparent; }

.text-primary-50 { color: rgba(36, 98, 63, 0.5); }
.text-primary-60 { color: rgba(36, 98, 63, 0.6); }
.text-primary-80 { color: rgba(36, 98, 63, 0.8); }

.text-white-30 { color: rgba(255, 255, 255, 0.3); }
.text-white-40 { color: rgba(255, 255, 255, 0.4); }
.text-white-50 { color: rgba(255, 255, 255, 0.5); }
.text-white-60 { color: rgba(255, 255, 255, 0.6); }
.text-white-70 { color: rgba(255, 255, 255, 0.7); }
.text-white-80 { color: rgba(255, 255, 255, 0.8); }

.bg-white-10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white-50 { background-color: rgba(255, 255, 255, 0.5); }
.bg-white-70 { background-color: rgba(255, 255, 255, 0.7); }
.bg-white-90 { background-color: rgba(255, 255, 255, 0.9); }
.bg-white-95 { background-color: rgba(255, 255, 255, 0.95); }

.bg-black-20 { background-color: rgba(0, 0, 0, 0.2); }
.bg-black-60 { background-color: rgba(0, 0, 0, 0.6); }
.bg-footer-95 { background-color: rgba(21, 58, 37, 0.95); }

.bg-gradient-hero { background-image: linear-gradient(to bottom, #24623f 30%, #fff 100%); }
.bg-section-insta { background-color: #e9efeb; }
.bg-section-access { background-color: #91b09f; }
.bg-section-contact { background-color: #5a876e; }
.bg-footer { background-color: #153a25; }

.border { border-width: 1px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-transparent { border-color: transparent; }
.border-white { border-color: #fff; }
.border-white-10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white-20 { border-color: rgba(255, 255, 255, 0.2); }
.border-white-30 { border-color: rgba(255, 255, 255, 0.3); }
.border-white-50 { border-color: rgba(255, 255, 255, 0.5); }
.border-primary-10 { border-color: rgba(36, 98, 63, 0.1); }
.border-primary-30 { border-color: rgba(36, 98, 63, 0.3); }
.placeholder-primary-30::placeholder { color: rgba(36, 98, 63, 0.3); }
input:focus, textarea:focus { border-color: rgba(36, 98, 63, 0.3); }

/* ==========================================================================
   Layout, Sizing & Spacing
   ========================================================================== */
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-screen { height: 100svh; }
.min-h-screen { min-height: 100svh; }
.min-h-700 { min-height: 700px; }
.max-h-80vh { max-height: 80svh; }
.max-w-7xl { max-width: 80rem; width: 100%; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; width: 100%; margin-left: auto; margin-right: auto; }
.max-w-sm { max-width: 24rem; }
.w-4 { width: 1rem; } .h-4 { height: 1rem; }
.w-5 { width: 1.25rem; } .h-5 { height: 1.25rem; }
.w-6 { width: 1.5rem; } .h-6 { height: 1.5rem; }
.w-7 { width: 1.75rem; } .h-7 { height: 1.75rem; }
.w-8 { width: 2rem; } .h-8 { height: 2rem; }
.w-10 { width: 2.5rem; } .h-10 { height: 2.5rem; }
.w-24 { width: 6rem; }

/* 高さは画面の高さに合わせて柔軟に調整 */
.h-120 { height: clamp(20rem, 60vh, 30rem); }
.h-400 { height: clamp(280px, 40vh, 400px); }

/* --- Padding (1.5rem以上を可変に) --- */
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: clamp(1rem, 3vw, 1.5rem); }
.p-8 { padding: clamp(1.25rem, 4vw, 2rem); }
.p-10 { padding: clamp(1.5rem, 5vw, 2.5rem); }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: clamp(1.25rem, 4vw, 2rem); padding-right: clamp(1.25rem, 4vw, 2rem); }
.px-10 { padding-left: clamp(1.5rem, 5vw, 2.5rem); padding-right: clamp(1.5rem, 5vw, 2.5rem); }
.px-16 { padding-left: clamp(1.5rem, 8vw, 4rem); padding-right: clamp(1.5rem, 8vw, 4rem); }

.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: clamp(2rem, 6vw, 3rem); padding-bottom: clamp(2rem, 6vw, 3rem); }
.py-24 { padding-top: clamp(3rem, 10vw, 6rem); padding-bottom: clamp(3rem, 10vw, 6rem); }

.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: clamp(1.25rem, 4vw, 2rem); }
.pt-12 { padding-top: clamp(2rem, 6vw, 3rem); }
.pt-24 { padding-top: clamp(3rem, 10vw, 6rem); }

.pb-4 { padding-bottom: 1rem; }
.pb-8 { padding-bottom: clamp(1.25rem, 4vw, 2rem); }
.pb-12 { padding-bottom: clamp(2rem, 6vw, 3rem); }
.pb-16 { padding-bottom: clamp(2.5rem, 8vw, 4rem); }
.pb-24 { padding-bottom: clamp(3rem, 10vw, 6rem); }

/* --- Margin (大きな隙間のみ調整) --- */
.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.25rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: clamp(1.25rem, 4vw, 2rem); }
.mt-16 { margin-top: clamp(2rem, 8vw, 4rem); }

.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: clamp(1.25rem, 4vw, 2rem); }
.mb-12 { margin-bottom: clamp(2rem, 6vw, 3rem); }
.mb-16 { margin-bottom: clamp(2.5rem, 8vw, 4rem); }
.mb-24 { margin-bottom: clamp(3rem, 10vw, 6rem); }

.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.25rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-16 { margin-top: 4rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-24 {
  /* �?�? 4.2rem(�?67px) �? �?大 6rem(96px) の間で、画面�?(8vw)に応じて可�? */
  margin-bottom: clamp(3rem, 8vw, 6rem);
}
.-mt-px { margin-top: -1px; }
.-mb-px { margin-bottom: -1px; }
.-my-px { margin-top: -1px; margin-bottom: -1px; }
.-my-1 { margin-top: -0.25rem; margin-bottom: -0.25rem; }
.-my-2 { margin-top: -0.5rem; margin-bottom: -0.5rem; }
.-ml-1 { margin-left: -0.25rem; }
.-ml-2 { margin-left: -0.5rem; }
.-ml-3 { margin-left: -0.75rem; }
.-ml-4 { margin-left: -1rem; }
.-translate-x-1-2 { transform: translateX(-50%); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-stretch { align-items: stretch; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-16 > * + * { margin-left: 4rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-32 > * + * {
  /* �?�? 3rem(48px) �? �?大 8rem(128px) で可�? */
  margin-top: clamp(3rem, 10vw, 8rem);
  
  /* 上部に�?��グレーの線を追加 */
  border-top: 1px solid rgba(0, 0, 0, 0.1); /* �?��グレー (Tailwindのgray-200相�?) */
  margin-top: clamp(3rem, 5vw, 4rem); /* 線とコン�?���??間�?余白 */
    padding-top: clamp(3rem, 5vw, 4rem); /* 線とコン�?���??間�?余白 */
}

/* �?��クトップ表示??768px以上）で線を消す場�? */
@media (min-width: 768px) {
  .space-y-32 > * + * {
    border-top: none;
    padding-top: 0;
  }
}

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-4 { grid-column: span 4 / span 4; }
.row-span-2 { grid-row: span 2 / span 2; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.top-6 { top: 1.5rem; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.right-6 { right: 1.5rem; }
.bottom-0 { bottom: 0; }
.top-minus-55 { top: -55px; }
.bottom-5-percent { bottom: 5%; }
.right-5-percent { right: 5%; }

.z-0 { z-index: 0; }
.z-1 { z-index: 1; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-60 { z-index: 60; }
.z-70 { z-index: 70; }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }
.overflow-hidden { overflow: hidden; }

.rounded-sm { border-radius: 0.125rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-2rem { border-radius: 2rem; }
.rounded-full { border-radius: 9999px; }
.rounded-t-full { border-top-left-radius: 9999px; border-top-right-radius: 9999px; }
.rounded-b-2rem { border-bottom-left-radius: 2rem; border-bottom-right-radius: 2rem; }
.rounded-r-3xl { border-top-right-radius: 1.5rem; border-bottom-right-radius: 1.5rem; }
.rounded-l-3xl { border-top-left-radius: 1.5rem; border-bottom-left-radius: 1.5rem; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

.drop-shadow-sm { filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.05)); }
.drop-shadow-md { filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); }

.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }

.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-4-3 { aspect-ratio: 4 / 3; }
.aspect-3-4 { aspect-ratio: 3 / 4; }

.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.duration-1000 { transition-duration: 1000ms; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }

.translate-x-0 { transform: translateX(0); }
.-translate-x-full { transform: translateX(-100%); }
.translate-x-full { transform: translateX(100%); }
.translate-y-10 { transform: translateY(2.5rem); }
.-translate-y-10 { transform: translateY(-2.5rem); }
.translate-x-10 { transform: translateX(2.5rem); }
.-translate-x-10 { transform: translateX(-2.5rem); }
.translate-y-4 { transform: translateY(1rem); }
.scale-95 { transform: scale(0.95); }
.scale-100 { transform: scale(1); }
.transform-none { transform: none; }

.hover\:opacity-50:hover { opacity: 0.5; }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:bg-white:hover { background-color: #fff; }
.hover\:text-primary:hover { color: #24623f; }
.hover\:text-white:hover { color: #fff; }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }

.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:translate-y-0 { transform: translateY(0); }
.cursor-zoom-in { cursor: zoom-in; }
.cursor-pointer { cursor: pointer; }

/* ==========================================================================
   🎯 Design & Alignment Fixes
   ========================================================================== */

#main-header {
  border-bottom: none !important;
  height: 64px !important;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#main-header > div {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  height: 100% !important;
}

svg.logo-header {
  width: 184px !important;
  height: auto !important;
  margin-top: -59px !important;
  margin-bottom: -53px !important;
  margin-left: -8px !important;
  padding: 0 !important;
  display: block;
}

footer h2 {
  margin-left: 0 !important;
  padding-left: 0 !important;
  height: 22px;
  overflow: visible;
  display: flex;
  align-items: center;
}

svg.logo-footer {
  width: 131px !important;
  height: auto !important;
  margin-top: -40px !important;
  margin-bottom: -32px !important;
  margin-left: 0 !important;
  padding: 0 !important;
  display: block;
}

#item-list .grid div,
#item-list .grid img,
#item-list .grid video {
  border-radius: 0 !important;
}

#lightbox-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#lightbox-img,
#lightbox-video {
  max-width: 95svw !important;
  max-height: 95svh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  margin: auto;
  border-radius: 0 !important;
}

#lightbox-counter {
  position: absolute;
  bottom: 1svh !important;
  left: 50%;
  transform: translateX(-50%);
}

.blob-shape {
  border: none !important;
  outline: none !important;
}

/* ==========================================================================
   �? Hamburger Menu Animation �?
   ========================================================================== */
.hamburger-btn {
  width: 28px;
  height: 20px;
  position: relative;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  z-index: 65; /* パネルより前面に出�? */
}

.hamburger-btn span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: currentColor;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.hamburger-btn span:nth-child(1) { top: 0px; }
.hamburger-btn span:nth-child(2) { top: 9px; }
.hamburger-btn span:nth-child(3) { top: 18px; }

/* オープン時（×になるアニメーション?? */
.hamburger-btn.is-active span:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
}
.hamburger-btn.is-active span:nth-child(2) {
  opacity: 0;
  left: -20px;
}
.hamburger-btn.is-active span:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
}

/* ==========================================================================
    Animations & Sizes (SP)
   ========================================================================== */
/* スマ�?時�?ロゴサイズ */
.hero-center-logo {
  width: 60vw !important;
  max-width: 60vw !important;
  height: auto !important;
  max-height: none !important;
  display: block;
}

/* スマ�?時�?メインシャボン�? */
.hero-bubble-size {
  width: 90vw;
  height: 90svh;
  max-width: 500px;
}

/* スマ�?時�?サブシャボン�? */
.hero-sub-bubble-size {
  width: 45vw;
  max-width: 250px;
  aspect-ratio: 1 / 1;
}

.slow-zoom { animation: slowZoom 30s infinite alternate linear; }
@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.marquee-container { display: flex; overflow: hidden; white-space: nowrap; }
.marquee-content { animation: marquee 30s linear infinite; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.float { animation: float 8s ease-in-out infinite; }
.float-delayed { animation: float 8s ease-in-out 4s infinite; }
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

@keyframes rise {
  0% { transform: translateY(120vh); }
  100% { transform: translateY(-20vh); }
}

.blob-shape {
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: morph 12s ease-in-out infinite alternate;
}
@keyframes morph {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.star-avoider { transition: transform 1.5s ease-out; will-change: transform; }

/* JSからクラスが外される場合に対応するハ�?��?�右からスライド用?? */
#mobile-menu-panel {
  transform: translateX(100%);
}
#mobile-menu-panel.translate-x-0 {
  transform: translateX(0) !important;
}
#mobile-menu-panel.\-translate-x-full {
  transform: translateX(100%) !important;
}

/* ==========================================================================
   Media Queries (PC時�?設定復�?)
   ========================================================================== */
@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .md\:w-1-2 { width: 50%; }
  .md\:pl-10 { padding-left: 2.5rem; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
  .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .md\:mb-32 { margin-bottom: 8rem; }
  .md\:space-y-48 > * + * { margin-top: 12rem; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:gap-20 { gap: 5rem; }
  .md\:-ml-2 { margin-left: -0.5rem; }
  .md\:-ml-4 { margin-left: -1rem; }
  .md\:top-10 { top: 2.5rem; }
  .md\:right-10 { right: 2.5rem; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-base { font-size: 1.1rem; }
  
  /* �? PC時�?ロゴサイズを以前�?状�?(45vw)に復�? �? */
  .hero-center-logo {
    width: 35vw !important;
    max-width: 600px !important;
  }
  
  /* �? PC時�?シャボン玉サイズを以前�?大きな正方形に復�? �? */
  .hero-bubble-size {
    width: 85vw;
    height: 105svh;
    max-width: 1600px;
    max-height: 1600px;
  }
  
  .hero-sub-bubble-size {
    width: 20vw;
    max-width: 500px;
  }

  .md\:bottom-10-percent { bottom: 5svh; }
  .md\:right-10-percent { right: 5vw; }
  .md\:h-120 { height: 30rem; }

  footer h2 { margin-left: 0 !important; }
  svg.logo-footer { margin-left: 0 !important; }
}

@media (min-width: 1024px) {
  .lg\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:flex-row-reverse { flex-direction: row-reverse; }
  .lg\:w-45 { width: 45%; }
  .lg\:w-55 { width: 55%; }
  .lg\:w-3-5 { width: 60%; }
  .lg\:w-2-5 { width: 40%; }
  .lg\:gap-10 { gap: 2.5rem; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:text-sm { font-size: 0.875rem; }
  .lg\:h-500 { height: 500px; }
}

/* ==========================================================================
   �? WordPress Index & Blog Styles �?
   ========================================================================== */
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.pagination { display: flex; justify-content: center; align-items: center; width: 100%; }
.pagination .nav-links { display: flex; gap: 0.5rem; align-items: center; }
.pagination .page-numbers { display: flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: 9999px; background-color: rgba(36, 98, 63, 0.05); color: #24623f; font-size: 0.875rem; font-family: "Noto Sans JP", sans-serif; transition: all 0.3s ease; text-decoration: none; }
.pagination .page-numbers:hover { background-color: rgba(36, 98, 63, 0.2); }
.pagination .page-numbers.current { background-color: #24623f; color: #fff; pointer-events: none; }
.pagination .screen-reader-text { display: none; }


/* Contact Form 7 のメ�?��ージエリアのスタイル上書�? */
.wpcf7-response-output {
  margin: 1.5rem 0 0 0 !important;
  border: none !important;
  background-color: rgba(36, 98, 63, 0.05); /* �?��緑�?背景 */
  color: #24623f; /* �??マ�?メインカラー */
  padding: 1rem 1.5rem !important;
  border-radius: 0.75rem; /* rounded-xl相�? */
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
}
/* エラー時�?�?��スト色 */
.wpcf7-not-valid-tip {
  color: #e53e3e;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}
.wpcf7-spinner {display: none;}
form input{ 
  border: none;
    transition: 0.3s ease-in-out;
}
form input:hover{ 
  opacity: 0.8;
     transition: 0.3s ease-in-out;
}