@charset "UTF-8";

/* ==========================================================
   CSS Variables
   ========================================================== */
:root {
  /* Logo and Main Text Colors */
  --color-blue-main: #002ff0;
  /* The striking blue from the Ao logo */
  --color-blue-text: #0533af;
  --color-text: #2f3e46;
  --color-white: #ffffff;

  /* Watercolor Background Colors */
  --color-bg-base: #e1f7f5;
  --color-aqua: #5be9d3;
  --color-blue-light: #6eb7ff;
  --color-green-light: #8feccc;
  --color-teal: #1eb3ce;
  --color-gold: #e2b761;

  /* Fonts */
  --font-en: 'Caveat', cursive;
  /* "Relaxation space" and cursive accents */
  --font-jp: 'Zen Maru Gothic', sans-serif;
  --font-handwriting: 'Klee One', cursive;
}

/* ==========================================================
   Global Styles
   ========================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-jp);
  color: var(--color-text);
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ==========================================================
   Background Image
   ========================================================== */
.background-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  background: url('images/IMG_6731.PNG') no-repeat center center;
  background-size: cover;
  opacity: 1;
  pointer-events: none;
}


/* ==========================================================
   Navigation
   ========================================================== */
.glass-nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 5%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-blue-main);
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-social-item a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 1rem !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
  background: rgba(255, 255, 255, 0.4);
}

.nav-social-item .btn-instagram {
  color: #c13584 !important;
}

.nav-social-item .btn-line {
  color: #06C755 !important;
}

.nav-social-item a:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-links li a:hover {
  color: var(--color-teal);
}

.reserve-btn {
  background: rgba(255, 255, 255, 0.7);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  font-weight: 700;
  color: var(--color-blue-text) !important;
  transition: all 0.3s ease !important;
}

.reserve-btn:hover {
  background: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* ==========================================================
   Hero Section
   ========================================================== */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  text-align: center;
  padding: 2rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  margin-bottom: 5vh;
  /* Scrollインジケーターとのバランス調整 */
}

.hero-en-subtitle {
  font-family: var(--font-en);
  font-size: 3rem;
  color: var(--color-blue-main);
  margin-bottom: -1rem;
  transform: rotate(-5deg);
}

.hero-logo-main {
  position: relative;
  display: inline-block;
  margin: 0;
}

.main-logo-img {
  max-width: 100vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.hero-jp-subtitle {
  font-family: var(--font-en);
  /* Using caveat, but will look more like handwriting */
  font-size: 2.2rem;
  color: var(--color-blue-main);
  letter-spacing: 2px;
  margin-top: 1rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-blue-text);
  font-size: 0.9rem;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}

.arrow-down {
  width: 1px;
  height: 40px;
  background-color: var(--color-blue-text);
  margin-top: 0.5rem;
  position: relative;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(-50%, 0);
  }

  40% {
    transform: translate(-50%, -10px);
  }

  60% {
    transform: translate(-50%, -5px);
  }
}

/* ==========================================================
   Sections General
   ========================================================== */
.section {
  padding: 6rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-content {
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-en);
  font-size: 3.5rem;
  color: var(--color-blue-main);
  text-align: center;
  margin-bottom: 2rem;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ==========================================================
   Concept Section
   ========================================================== */
#concept {
  text-align: center;
}

#concept .glass-panel {
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.concept-poem {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* Reduced from 2.2rem */
  margin: 2rem 0;
  text-align: center;
}

.poem-text {
  font-family: var(--font-handwriting);
  font-size: 1.15rem;
  line-height: 2.0;
  color: var(--color-blue-text);
  font-weight: 600;
  letter-spacing: 0.05rem;
  overflow-wrap: break-word;
  word-break: normal;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9); /* 写真が濃い場合でも文字が読めるよう白フチを強調 */
}

.poem-text-emphasis {
  font-weight: 800;
  font-size: 1.3rem; /* Slightly reduced from 1.35rem for better balance */
  text-shadow: 
    0.5px 0 0 var(--color-blue-text), 
    -0.5px 0 0 var(--color-blue-text), 
    0 0.5px 0 var(--color-blue-text), 
    0 -0.5px 0 var(--color-blue-text), 
    0 1px 3px rgba(255, 255, 255, 0.9);
}

.poem-section-break {
  margin-bottom: 2.5rem;
}

.inline-block {
  display: inline-block;
}

.pc-only {
  display: inline;
}

@media (max-width: 1024px) {
  .glass-panel {
    padding: 2.5rem 1.5rem;
  }
  .poem-text {
    font-size: 0.85rem; /* Reduced from 0.9rem */
    line-height: 1.8;
    letter-spacing: 0.02rem;
    padding: 0 1rem;
  }
  .poem-text-emphasis {
    font-size: 0.95rem; /* Reduced from 1.1rem */
  }
  .poem-section-break {
    margin-bottom: 1.8rem;
  }
  .concept-poem {
    gap: 1.1rem; /* Reduced from 1.8rem */
  }
  .pc-only {
    display: none;
  }
}

@media (max-width: 768px) {
  .poem-text {
    font-size: 0.8rem; /* Reduced from 0.85rem */
  }
  .poem-text-emphasis {
    font-size: 0.9rem; /* Reduced from 1.0rem */
  }
  .poem-section-break {
    margin-bottom: 1.4rem;
  }
  .concept-poem {
    gap: 0.9rem; /* Reduced from 1.1rem */
  }
}

/* ==========================================================
   News Section
   ========================================================== */
.news-scroll-container {
  max-height: 24rem;
  /* About 3 items height */
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 1.5rem;
  -webkit-overflow-scrolling: touch;
}

/* カスタムスクロールバー */
.news-scroll-container::-webkit-scrollbar {
  width: 6px;
}

.news-scroll-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.news-scroll-container::-webkit-scrollbar-thumb {
  background: var(--color-teal);
  border-radius: 10px;
}

.news-scroll-container::-webkit-scrollbar-thumb:hover {
  background: var(--color-blue-main);
}

.image-modal-trigger {
  display: inline-block;
  color: var(--color-blue-main);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
  .image-modal-trigger:hover {
    color: var(--color-teal);
    text-decoration: underline;
  }
}

.click-hint {
  display: inline-block;
  font-size: 0.8rem;
  background: rgba(30, 179, 206, 0.15);
  color: var(--color-teal);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  margin-left: 0.5rem;
  font-weight: normal;
  vertical-align: middle;
  animation: pulse-hint 2s infinite;
  pointer-events: none; /* iOS Safari用：アニメーション要素がタッチ判定を吸い込まないようにする */
}

@keyframes pulse-hint {
  0% { transform: scale(1); background: rgba(30, 179, 206, 0.15); }
  50% { transform: scale(1.05); background: rgba(30, 179, 206, 0.3); }
  100% { transform: scale(1); background: rgba(30, 179, 206, 0.15); }
}

/* Modal Styling */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
}

.modal-image-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-height: 80vh;
  overflow-y: auto;
  padding: 10px;
}

.modal-image-container img {
  max-width: 100%;
  max-height: 75vh;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

/* 複数画像がある場合は、PC表示で横並びにする */
@media (min-width: 769px) {
  .modal-image-container img:not(:only-child) {
    max-width: calc(50% - 1rem);
  }
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2001;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--color-teal);
}

.news-list {
  display: flex;
  flex-direction: column;
}

.news-list li {
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
  gap: 1.5rem;
}

.news-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news-list li:first-child {
  padding-top: 0;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
}

.news-date {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-blue-text);
  letter-spacing: 1px;
}

.news-tag {
  font-size: 0.8rem;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  color: white;
  font-weight: bold;
}

.tag-info {
  background: var(--color-blue-light);
}

.tag-campaign {
  background: var(--color-gold);
}

.news-text {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--color-text);
  margin: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .news-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .news-meta {
    margin-bottom: 0.3rem;
  }
}

/* ==========================================================
   Price List Section
   ========================================================== */
.menu-card {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.menu-icon {
  font-size: 3rem;
  color: var(--color-teal);
  margin-bottom: 1rem;
  text-align: center;
}

.menu-subtitle {
  font-family: var(--font-en);
  font-size: 1.5rem;
  color: var(--color-blue-text);
  margin-top: -1.5rem;
  margin-bottom: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.price-list-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 3rem;
}

.price-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  height: 100%;
  justify-content: space-between;
}

.price-category h3 {
  font-size: 1.35rem;
  color: var(--color-blue-text);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-weight: 700;
  text-align: center;
}

.price-category h3 .small-text {
  display: block;
  width: 100%;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  margin-top: 0.25rem;
}

.price-items {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 1rem;
}

.price-items li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
  padding-bottom: 0.5rem;
}

.price-items li span:last-child {
  font-weight: 700;
  color: var(--color-blue-main);
  font-size: 1.15rem;
  text-align: right;
}

.price-extension {
  text-align: right;
  font-size: 0.9rem;
  margin-top: 1rem;
  color: var(--color-text);
}

.highlight-badge {
  background: var(--color-teal);
  color: var(--color-white);
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: bold;
  margin-left: 0.5rem;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 4px 10px rgba(30, 179, 206, 0.3);
}

/* Set Course Specific */
.set-course-list li {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 1rem;
}

.set-course-list .spacer-li {
  height: 0.8rem;
}

.set-name {
  flex: 1;
  text-align: left;
  line-height: 1.3;
}

.set-time {
  min-width: 45px;
  text-align: right;
}

.set-price {
  min-width: 65px;
  text-align: right;
  font-weight: 700;
  color: var(--color-blue-main);
  font-size: 1.15rem;
}

.set-note {
  text-align: right;
  font-size: 0.85rem;
  margin-top: 2rem;
  color: var(--color-text);
}

@media (max-width: 900px) {
  .price-list-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0;
    /* Remove padding when stacked so cards fill better */
  }

  .info-flex {
    flex-direction: column;
    gap: 2rem;
  }
}

.text-center {
  text-align: center;
}

/* ==========================================================
   Access Section
   ========================================================== */
.info-flex {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.info-details {
  flex: 1;
  min-width: 300px;
}

.shop-name {
  font-size: 1.6rem;
  color: var(--color-blue-main);
  margin-bottom: 1.5rem;
}

.info-list li {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  display: flex;
  align-items: flex-start;
}

.info-list i {
  color: var(--color-teal);
  width: 25px;
  margin-top: 5px;
}

.info-label {
  display: inline-block;
  width: 4em;
  text-align-last: justify;
}

.info-colon {
  margin: 0 0.5rem;
}

.info-text-val {
  flex: 1; /* allow it to take up remaining space but act as a flex item box so `<br>` aligns perfectly to its start edge */
  line-height: 1.5; /* matches list line-height nicely */
}

.info-map {
  flex: 1;
  min-width: 300px;
}

.dummy-map {
  width: 100%;
  height: 300px;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #888;
}

/* ==========================================================
   Footer
   ========================================================== */
footer {
  text-align: center;
  padding: 1rem 0;
  /* 余白をほぼゼロに指定 */
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.footer-logo {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}

.footer-logo-img {
  max-width: 380px; /* Reduced from 450px to make it slightly smaller */
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* 透過PNGの「Aoロゴ.png」のみ、文字色をテーマの青色（var(--color-blue-main)）に変更するフィルタを適用 */
.footer-logo-img[src*="Aoロゴ.png"],
.footer-logo-img[src*="Aoロゴ.png"] {
  filter: brightness(0) saturate(100%) invert(18%) sepia(94%) saturate(4328%) hue-rotate(227deg) brightness(98%) contrast(105%);
}

/* ==========================================================
   Click-Worthy Social Buttons & Floating Elements
   ========================================================== */
.social-links-footer {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  /* 横幅の余白も少し詰める */
  margin: 0;
  /* 上下の余白を完全にゼロにする */
  flex-wrap: wrap;
}

.glass-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Centers the icon and text block horizontally inside the fixed width */
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 360px;
  max-width: 100%;
  box-sizing: border-box;
}

.glass-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-instagram-large::before {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.btn-line-large::before {
  background: #06C755;
}

.glass-btn .icon-wrap {
  font-size: 2.8rem;
  transition: all 0.3s ease;
}

.btn-instagram-large .icon-wrap i {
  background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-line-large .icon-wrap i {
  color: #06C755;
}

.glass-btn:hover {
  transform: translateY(-5px) scale(1.03);
  color: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: transparent;
}

.glass-btn:hover::before {
  opacity: 1;
}

.glass-btn:hover .icon-wrap i {
  background: transparent;
  color: white;
  -webkit-text-fill-color: white;
}

.glass-btn .btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: color 0.3s ease;
  color: var(--color-text);
}

.glass-btn:hover .btn-text {
  color: white;
}

.btn-title {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
}

.btn-sub {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 2px;
}

footer p {
  font-size: 0.9rem;
  color: #666;
  margin-top: 2rem;
  margin-bottom: 0;
}

/* ==========================================================
   Animations & Responsive
   ========================================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .main-logo-img {
    max-width: 95vw;
    max-height: 75vh;
  }

  /* スマホでも大きく表示するよう拡張 */
  .hero-en-subtitle {
    font-size: 2.2rem;
  }

  /* On mobile, only show the social buttons in the nav */
  .nav-links {
    display: flex;
    gap: 0.8rem;
  }

  .nav-links li:not(.nav-social-item) {
    display: none;
  }

  .nav-social-item a {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem !important;
  }

  .glass-panel {
    padding: 2rem 1.5rem;
  }

  .section-title {
    font-size: 2.8rem;
  }

  .glass-btn {
    padding: 1rem 1.5rem;
    gap: 0.8rem;
  }

  .glass-btn .icon-wrap {
    font-size: 2.2rem;
  }

  .btn-title {
    font-size: 1.1rem;
  }

  .btn-sub {
    font-size: 0.75rem;
  }

}