@import "_common.css";
:root {
  --font-base-sans: Noto Sans JP, sans-serif;
  --font-base-serif: Times New Roman, serif;
  --color-text-base: #5c5c5c;
  --color-text-muted: #787878;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-brand-main: #093a26;
  --color-brand-accent: #ad9961;
  --color-brand-sub: #b0914e;
  --color-brand-green-alt: #0f7c4f;
  --color-bg-light: #f5f5f5;
  --color-bg-beige: #fff7ed;
  --color-bg-beige-light: #f8eadb;
  --color-border-base: #dcdcdc;
  --color-border-soft: #a0a0a0;
  --color-action-hot: #ff385c;
  --color-accent-strong: #e17837;
  --color-panel-dark: #090603;
  --color-gold: #b6a06a;
  --color-gold-dark: #8e7a4a;
  --color-text-warm: #6b6257;
  --color-company-table-border: #c9aa73;
  --color-company-table-text: #4a4037;
  --color-company-table-th-bg: #f5f1e8;
}

html {
  font-family: var(--font-base-sans);
  color: var(--color-text-base);
}

body {
  font-family: var(--font-base-serif);
  color: var(--color-text-base);
}

.bg_white {
  background-color: var(--color-white) !important;
}

.bg_beige {
  background-color: var(--color-bg-beige) !important;
}

.bg_beige_light {
  background-color: var(--color-bg-beige-light) !important;
}

.bg_gray,
.bg_gray_light {
  background-color: var(--color-bg-light) !important;
}

.bg_green {
  background-color: var(--color-brand-green-alt) !important;
}

.section_title {
  color: var(--color-brand-sub);
  font-family: var(--font-base-serif);
}

.section_title.f_white,
.section_title.f_white .f_en {
  color: var(--color-white);
}

.page_mv_title {
  color: var(--color-brand-accent);
  font-family: var(--font-base-serif);
}

.header {
  background: var(--color-brand-main);
}

.gnav_list > li > a {
  color: var(--color-brand-accent);
}

.gnav_list > li > .child {
  background-color: rgba(0, 0, 0, 0.4);
}

.gnav_list > li > .child > li > a {
  color: var(--color-white);
}

.btn_calendar {
  background-color: var(--color-action-hot);
  color: var(--color-white);
}

.footer {
  background: var(--color-brand-main);
  color: var(--color-white);
}

.f_navi {
  border-top: 1px solid var(--color-border-soft);
}

.f_navi li a {
  color: var(--color-white);
}

.table_basic,
.news_list,
.gmap,
.borderbox {
  border-color: var(--color-border-base);
}

.table_basic th {
  color: var(--color-white);
}

.table_basic td,
.news_list .box_inner,
.news_list {
  border-color: var(--color-border-base);
}

.f_address,
.sns_label,
.copyright_text {
  color: var(--color-white);
}

.footer_nav_list a {
  color: var(--color-white);
  border-left-color: var(--color-text-muted);
  border-right-color: var(--color-text-muted);
}

.pageNavi > a,
.pageNavi > span {
  border-color: var(--color-accent-strong);
  color: var(--color-accent-strong);
  background-color: var(--color-white);
}

.pageNavi a:hover,
.pageNavi .current {
  color: var(--color-white);
  background-color: var(--color-accent-strong);
}

.page_gallery {
  font-family: "Times New Roman", "Noto Serif JP", serif;
  font-weight: normal;
  color: #5c5c5c;
}

.gallery_page_mv {
  margin-bottom: 0;
}
.gallery_page_mv__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/520;
  min-height: clamp(220px, 27vw, 520px);
  overflow: hidden;
  background: #d9d9d9;
}
.gallery_page_mv__visual img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.gallery_page_mv__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.18);
}

.gallery_mv_title.page_mv_title {
  margin: 0;
  text-align: center;
  font-family: "Times New Roman", "Noto Serif JP", serif;
  font-weight: normal;
  color: var(--color-white);
}
.gallery_mv_title.page_mv_title .title_en {
  display: block;
  font-size: clamp(3.6rem, 3.2vw, 6rem);
  letter-spacing: 0.08em;
  line-height: 1.15;
  font-weight: normal;
}
.gallery_mv_title.page_mv_title .title_ja {
  display: block;
  margin-top: 12px;
  font-size: clamp(1.8rem, 1.35vw, 2.6rem);
  letter-spacing: 0.2em;
  line-height: 1.4;
  font-weight: normal;
}

.gallery_breadcrumb_wrap {
  background: var(--color-white);
  padding: 18px 0 0;
}

.gallery_breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(1.2rem, 0.73vw, 1.4rem);
  letter-spacing: 0.06em;
  color: #5c5c5c;
}
.gallery_breadcrumb__list li + li::before {
  content: ">";
  margin-right: 8px;
  color: #ad9961;
}
.gallery_breadcrumb__list a {
  color: #5c5c5c;
  text-decoration: none;
}
.gallery_breadcrumb__list a:hover {
  opacity: 0.7;
}
.gallery_breadcrumb__list li[aria-current=page] {
  color: #ad9961;
}

.gallery_section {
  padding: clamp(48px, 5vw, 72px) 0 clamp(64px, 7vw, 96px);
  background: var(--color-white);
}
.gallery_section > .container {
  max-width: 1176px;
  padding-left: clamp(20px, 4vw, 80px);
  padding-right: clamp(20px, 4vw, 80px);
}

.gallery_heading {
  margin: 0 0 clamp(32px, 4vw, 48px);
  text-align: center;
  line-height: 1.35;
}
.gallery_heading__en {
  display: block;
  font-size: clamp(2.8rem, 2.4vw, 4.6rem);
  letter-spacing: 0.08em;
  color: #ad9961;
  font-weight: normal;
}
.gallery_heading__ja {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.6rem, 1.04vw, 2rem);
  letter-spacing: 0.16em;
  color: #ad9961;
  font-weight: normal;
}

.gallery_filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 40px);
  margin: 0 0 clamp(36px, 4vw, 56px);
  padding: 0;
  list-style: none;
}
.gallery_filter__btn {
  border: none;
  background: none;
  padding: 0 0 6px;
  font-family: "Times New Roman", "Noto Serif JP", serif;
  font-size: clamp(1.3rem, 0.83vw, 1.6rem);
  font-weight: normal;
  letter-spacing: 0.12em;
  color: #5c5c5c;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.gallery_filter__btn:hover, .gallery_filter__btn.is-active {
  color: #ad9961;
  border-bottom-color: #ad9961;
}

.gallery_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.gallery_item {
  margin: 0;
  overflow: hidden;
  background: #d9d9d9;
}
.gallery_item.is-hidden {
  display: none;
}
.gallery_item a {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gallery_item img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.4s ease;
}
.gallery_item a:hover img {
  transform: scale(1.04);
}

.gallery_more_wrap {
  margin-top: clamp(40px, 5vw, 56px);
  text-align: center;
}

.gallery_view_more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(280px, 100%);
  min-height: 56px;
  padding: 12px 40px;
  border: 1px solid #093a26;
  background: transparent;
  color: #093a26;
  font-family: "Times New Roman", "Noto Serif JP", serif;
  font-size: clamp(1.4rem, 0.94vw, 1.8rem);
  font-weight: normal;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.gallery_view_more:hover {
  background: #093a26;
  color: var(--color-white);
}
.gallery_view_more.is-hidden {
  display: none;
}

.gallery_cta {
  padding: clamp(56px, 6vw, 88px) 0;
  background: #093a26;
  color: var(--color-white);
  text-align: center;
}
.gallery_cta > .container {
  max-width: 960px;
  padding-left: 20px;
  padding-right: 20px;
}
.gallery_cta__title {
  margin: 0 0 clamp(28px, 3.5vw, 40px);
  line-height: 1.35;
}
.gallery_cta__title_en {
  display: block;
  font-size: clamp(2.6rem, 2.2vw, 4rem);
  letter-spacing: 0.1em;
  font-weight: normal;
}
.gallery_cta__title_ja {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.5rem, 1vw, 1.9rem);
  letter-spacing: 0.12em;
  font-weight: normal;
}
.gallery_cta__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  max-width: 720px;
  margin: 0 auto clamp(28px, 3vw, 36px);
}
.gallery_cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: var(--color-white);
  text-decoration: none;
  font-size: clamp(1.3rem, 0.83vw, 1.6rem);
  letter-spacing: 0.08em;
  transition: background 0.3s ease;
}
.gallery_cta__btn:hover {
  background: rgba(255, 255, 255, 0.12);
}
.gallery_cta__btn_icon {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  position: relative;
}
.gallery_cta__btn_icon::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 6px;
  height: 1px;
  background: var(--color-white);
  box-shadow: 0 5px 0 var(--color-white), 0 10px 0 var(--color-white);
}
.gallery_cta__btn_icon--mail::before {
  top: 8px;
  height: 8px;
  box-shadow: none;
  border: 1px solid var(--color-white);
  background: transparent;
}
.gallery_cta__tel_label {
  margin: 0 0 8px;
  font-size: clamp(1.3rem, 0.83vw, 1.5rem);
  letter-spacing: 0.08em;
}
.gallery_cta__tel {
  margin: 0;
  font-size: clamp(2.4rem, 2vw, 3.6rem);
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.gallery_cta__tel a {
  color: var(--color-white);
  text-decoration: none;
}

@media (max-width: 900px) {
  .gallery_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .gallery_page_mv__visual {
    aspect-ratio: 375/220;
    min-height: 220px;
  }
  .gallery_breadcrumb_wrap {
    padding-top: 14px;
  }
  .gallery_filter {
    gap: 12px 20px;
  }
  .gallery_grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .gallery_cta__actions {
    grid-template-columns: 1fr;
  }
}
html:has(.page_gallery) {
  --font-base-sans: Times New Roman, Noto Serif JP, serif;
  font-family: "Times New Roman", "Noto Serif JP", serif;
}

html:has(.page_gallery) body {
  font-family: "Times New Roman", "Noto Serif JP", serif;
}

html:has(.page_gallery) h1,
html:has(.page_gallery) h2,
html:has(.page_gallery) h3,
html:has(.page_gallery) h4,
html:has(.page_gallery) h5,
html:has(.page_gallery) h6,
html:has(.page_gallery) .f_mincho {
  font-family: "Times New Roman", "Noto Serif JP", serif;
  font-weight: normal;
}

@media (min-width: 1001px) {
  html:has(.page_gallery) .gnav_list > li > a,
  html:has(.page_gallery) .btn_tel,
  html:has(.page_gallery) .btn_calendar {
    font-family: "Times New Roman", "Noto Serif JP", serif;
  }
}
html:has(.page_gallery) .btn_f_calendar {
  font-family: "Times New Roman", "Noto Serif JP", serif;
}/*# sourceMappingURL=gallery.css.map */