body {
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    line-height: 1.8;
    color: #4c3733;
}
        
.section-tag {
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #666;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.sub-heading {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.text-baskerville a {
    font-family: "baskerville-display-pt", serif;
}

.bg-sky{
    background-image: url('../image/opening.webp');
}

.bg-custom-beige {
  background-color: #e1dad1 !important;
}

.text-custom-dark {
  color: #4a4a4a !important;
}

.border-custom-light {
  border-color: #d4c7ba !important;
}

img.filter-shadow {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}


@media (min-width: 768px) {
    .main-heading {
        font-size: 3.5rem;
    }
    .sub-heading {
        font-size: 2.25rem;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

#mobile-menu.hidden {
  display: none !important;
}

#mobile-menu:not(.hidden) {
  display: block !important;
}

/* ハンバーガーボタンのクリック領域確保 */
#mobile-menu-button {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

/* スマホでのタッチ対応 */
@media (max-width: 767px) {
  #mobile-menu-button {
    padding: 8px;
    margin: -8px;
  }
}

/* PDF最適化のためのスタイル */
@media print {
    body {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    .no-print {
        display: none;
    }
}