:root {
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-alfa: "Cantarell", "Noto Sans JP", sans-serif;
  --fw_regular: 400;
  --fw_medium: 500;
  --fw_bold: 700;
  --text-xxs:10px;
  --text-xs: clamp(0.625rem, 0.573rem + 0.22vw, 0.75rem); /*12*/
  --text-s: clamp(0.813rem, 0.787rem + 0.11vw, 0.875rem); /*14*/
  --text-m: clamp(0.875rem, 0.823rem + 0.22vw, 1rem); /*16*/
  --text-l: clamp(1.125rem, 1.073rem + 0.22vw, 1.25rem); /*18*/
  --text-xl: clamp(1.250rem, 1.146rem + 0.44vw, 1.5rem); /*20*/
  --text-xxl: clamp(1.625rem, 1.470rem + 0.66vw, 2rem); /*32*/
  --text-xxxl: clamp(1.625rem, 1.262rem + 1.55vw, 2.5rem); /*40*/
  --palette-white: #ffffff;
  --palette-black: #2a2a2a;
  --palette-primary: #3e5641;
  --palette-green: #8e9a73;
  --palette-green-light: #bcc17d;
  --palette-green-dark: #33432d;
  --palette-blue: #a4c1c7;
  --palette-brown: #b9997c;
  --palette-brown-light: #bc9a7c;
  --palette-brown-dark: #736357;
  --palette-cream: #f5f2eb;
  --palette-orange: #f49f3b;
  --palette-terracotta: #c4613e;
  --palette-gray: #dcdcdc;
  --color-bg: var(--palette-cream);
  --color-surface-1: var(--palette-white);
  --color-text: var(--palette-primary);
  --color-text-muted: var(--palette-gray);
  --color-border: var(--palette-gray);
  --color-focus-ring: var(--palette-primary);
  --color-white: var(--palette-white);
  --color-black: var(--palette-black);
  --color-primary: var(--palette-primary);
  --color-green: var(--palette-green);
  --color-green-light: var(--palette-green-light);
  --color-green-dark: var(--palette-green-dark);
  --color-blue: var(--palette-blue);
  --color-brown: var(--palette-brown);
  --color-brown-light: var(--palette-brown-light);
  --color-brown-dark: var(--palette-brown-dark);
  --color-cream: var(--palette-cream);
  --color-orange: var(--palette-orange);
  --color-terracotta: var(--palette-terracotta);
  --color-gray: var(--palette-gray);
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-container: clamp(1.25rem, 0.29rem + 2.76vw, 2.5rem); /*20-40*/
  --space-section: clamp(3.125rem, 0.924rem + 9.39vw, 8.438rem);
  --header-height: clamp(4.25rem, 3.724rem + 2.24vw, 5.5rem);
  --radius-0: 0;
  --radius-sm: 0.8125rem;
  --radius-md: 1.75rem;
  --radius-lg: 3.625rem;
  --radius-xl: var(--radius-lg);
  --radius-pill: 9999px;
  --z-base: 0;
  --z-sticky: 10;
  --z-dropdown: 100;
  --z-header: 900;
  --z-overlay: 1000;
  --z-modal: 1100;
  --z-toast: 1200;
  --z-tooltip: 1300;
  --line-height-tight: 1.5;
  --line-height-normal: 1.7;
  --line-height-relaxed: 2.25;
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-xxl: 1536px;
  --breakpoint-sw-sm: 600px;
  --breakpoint-sw-md: 960px;
  --max-width-container-sm: 500px;
  --max-width-container-md: 920px;
  --max-width-container-lg: 1280px;
  --max-width-container-xl: 1360px;
}

:root {
  --anim-fast: 0.15s;
  --anim-base: 0.25s;
  --anim-slow: 0.4s;
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-emphasized: cubic-bezier(0.2, 0, 0, 1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* cantarell-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Cantarell";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/cantarell-v18-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cantarell-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Cantarell";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/cantarell-v18-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@layer base {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  html,
  body {
    height: 100%;
  }
  html {
    color-scheme: light;
    scroll-behavior: smooth;
    --scroll-offset-top: 60px;
    scroll-padding-top: var(--scroll-offset-top);
  }
  :where([id]) {
    scroll-margin-top: var(--scroll-offset-top);
  }
  body {
    margin: 0;
    font-family: var(--font-family-base);
    font-weight: 700;
    font-size: var(--text-m);
    line-height: var(--line-height-relaxed);
    color: var(--color-text);
    background-color: var(--color-bg);
    text-rendering: optimizeLegibility;
    box-sizing: border-box;
  }
  img,
  svg,
  video {
    display: block;
    max-width: 100%;
    height: auto;
  }
  p {
    margin: 0;
  }
  button,
  input,
  select,
  textarea {
    font: inherit;
  }
  ::where(a, button, input, select, textarea, [tabindex]):focus-visible {
    outline: 3px solid var(--color-focus-ring);
    outline-offset: 2px;
  }
  .l-main:focus-visible {
    outline: 3px solid var(--color-focus-ring);
    outline-offset: 2px;
  }
  .l-main:focus:not(:focus-visible) {
    outline: none;
  }
  [hidden] {
    display: none !important;
  }
  html.is-menu-open {
    overflow: hidden;
    overscroll-behavior: none;
  }
}
.l-container--sm {
  max-width: var(--max-width-container-sm);
}
.l-container--md {
  max-width: var(--max-width-container-md);
}
.l-container--lg {
  max-width: var(--max-width-container-lg);
}
.l-container--xl {
  max-width: var(--max-width-container-xl);
}

.l-header {
  min-height: var(--header-height);
  background-color: var(--color-bg);
}
@media screen and (min-width: 960px) {
  .l-header {
    position: fixed;
    inset: var(--space-0) var(--space-0) auto;
    z-index: var(--z-header);
  }
}

@media screen and (min-width: 960px) {
  .-series .l-header__logo {
    margin-right: 0;
  }
}

.c-headLogo__img {
  max-width: clamp(12.5rem, 11.982rem + 2.21vw, 13.75rem);
}

@media screen and (min-width: 960px) {
  body {
    padding-block-start: var(--header-height);
  }
}

@media screen and (min-width: 960px) {
  html {
    --scroll-offset-top: var(--header-height);
  }
}

@media screen and (min-width: 960px) {
  .admin-bar .l-header {
    top: var(--wp-admin--admin-bar--height, var(--space-0));
  }
}

.l-header__inner {
  min-height: var(--header-height);
}
@media screen and (min-width: 960px) {
  .l-header__inner {
    max-width: var(--max-width-header);
  }
}

@media screen and (min-width: 960px) {
  .l-header__gnav {
    display: flex;
    align-items: center;
    gap: var(--space-2);
  }
}

.l-header__cta-list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.l-header__cta-list .swell-block-button {
  margin-bottom: 0;
}
.l-header__cta-list .swell-block-button a {
  font-size: var(--text-s);
  padding: var(--space-3) var(--space-3);
  white-space: nowrap;
}

.l-footer__info-img img {
  margin-inline: auto;
  max-width: clamp(13.75rem, 11.678rem + 8.84vw, 18.75rem);
}

.l-footer__info {
  font-size: var(--text-m);
}

.l-footer__hours .wp-block-paragraph {
  font-size: var(--text-m);
}

.c-widget__title.-spmenu {
  background-color: var(--color-green-light) !important;
  font-family: var(--font-family-alfa);
}

/* button */
.swell-block-button a, [class*=is-style-btn_] a {
  font-size: var(--text-m);
  font-weight: 500;
  transition: 0.5s ease-in-out;
  border: 1px solid var(--color_main);
}
@media (hover: hover) and (pointer: fine) {
  .swell-block-button a:hover, .swell-block-button a:focus, .swell-block-button a:focus-visible, [class*=is-style-btn_] a:hover, [class*=is-style-btn_] a:focus, [class*=is-style-btn_] a:focus-visible {
    background-color: var(--color-white);
    color: var(--color_main);
  }
}

.swell-block-button.red_ a {
  border: 1px solid var(--the-btn-bg);
}
@media (hover: hover) and (pointer: fine) {
  .swell-block-button.red_ a:hover, .swell-block-button.red_ a:focus, .swell-block-button.red_ a:focus-visible {
    background-color: var(--color-white);
    color: var(--the-btn-bg);
  }
}

.swell-block-button.green_ a {
  border: 1px solid var(--the-btn-color);
}
@media (hover: hover) and (pointer: fine) {
  .swell-block-button.green_ a:hover, .swell-block-button.green_ a:focus, .swell-block-button.green_ a:focus-visible {
    background-color: var(--color-white);
    color: var(--the-btn-color);
  }
}

.swell-block-button.red_.is-style-btn--line a {
  background-color: var(--color-white);
  color: var(--the-btn-bg);
}
@media (hover: hover) and (pointer: fine) {
  .swell-block-button.red_.is-style-btn--line a:hover, .swell-block-button.red_.is-style-btn--line a:focus, .swell-block-button.red_.is-style-btn--line a:focus-visible {
    background-color: var(--the-btn-bg);
    color: var(--color-white);
  }
}

.swell-block-button {
  margin-bottom: var(--space-3);
}

@media screen and (min-width: 960px) {
  .c-gnav > .menu-item > a .ttl {
    font-size: clamp(0.813rem, 0.625rem + 0.31vw, 0.875rem);
  }
}

table {
  overflow: hidden;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  background-color: var(--color-surface-1);
}
table th,
table td {
  font-size: var(--text-m);
  border: none;
  white-space: nowrap;
}

table thead th {
  background-color: var(--color-green-light) !important;
  color: var(--color-white);
  font-weight: 500 !important;
}
table thead th:not(:last-child) {
  border-right: 1px solid var(--color-white) !important;
}

table td, table th {
  border: none !important;
  border-bottom: 1px solid var(--color-gray) !important;
  padding: var(--space-3) var(--space-2) !important;
}

.p-top-fv {
  position: relative;
  min-height: clamp(34rem, 78svh, 51.75rem);
  overflow: hidden;
  background-color: var(--color-bg);
}

.p-top-fv__inner {
  position: relative;
  height: calc(100vh - var(--header-height));
  height: calc(100svh - var(--header-height));
  width: 100%;
  padding: var(--space-container);
  display: grid;
  gap: clamp(2rem, 1.171rem + 3.54vw, 4rem);
}
@media screen and (min-width: 1280px) {
  .p-top-fv__inner {
    grid-template-columns: 400px auto;
  }
}

.p-top-fv__content {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: var(--space-3);
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-top-fv__content {
    gap: var(--space-5);
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1280px) {
  .p-top-fv__content {
    grid-template-columns: 1fr;
  }
}

.p-top-fv__copy {
  z-index: 100;
}

.p-top-fv__lead {
  font-size: var(--text-s);
  color: var(--color-primary);
}
@media screen and (min-width: 1280px) {
  .p-top-fv__lead {
    margin-bottom: var(--space-10);
  }
}

.p-top-fv__title {
  color: var(--color-green);
  font-size: clamp(1.8rem, 1.303rem + 2.12vw, 3rem);
  font-weight: var(--fw_bold);
  line-height: var(--line-height-tight);
  letter-spacing: 0;
}

.p-top-fv__copy-alfa {
  margin-block-start: var(--space-5);
  color: var(--color-green);
  font-family: var(--font-family-alfa);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: var(--fw_bold);
  line-height: var(--line-height-tight);
  letter-spacing: 0;
}

.p-top-fv__media {
  width: 100%;
  height: 100%;
  aspect-ratio: 5/4;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background-color: var(--color-surface-1);
}

.p-top-fv__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale3d(1, 1, 1);
  transform-origin: center;
  will-change: transform;
}

.p-top-fv__slider,
.p-top-fv__slide,
.p-top-fv__slider .slick-list,
.p-top-fv__slider .slick-track,
.p-top-fv__slider .slick-slide,
.p-top-fv__slider .slick-slide > div {
  height: 100%;
}

.p-top-fv__slider,
.p-top-fv__slider .slick-list {
  overflow: hidden;
}

.p-top-fv__slider .slick-slide {
  position: relative;
  z-index: var(--z-base);
}

.p-top-fv__slider .slick-current {
  z-index: var(--z-sticky);
}

.p-top-fv__slider:not(.slick-initialized) .p-top-fv__slide:not(:first-child) {
  display: none;
}

.p-top-fv__slider .slick-current .p-top-fv__image {
  animation: zoomFadeIn 6.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.p-top-fv__dots {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-end: var(--space-5);
  z-index: var(--z-dropdown);
  display: grid;
  gap: var(--space-2);
  margin: var(--space-0);
  padding: var(--space-0);
  list-style: none;
  transform: translateY(-50%);
}

.p-top-fv__dots button {
  display: block;
  width: var(--space-1);
  aspect-ratio: 1;
  padding: var(--space-0);
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-pill);
  background-color: var(--color-white);
  color: transparent;
  cursor: pointer;
}

.p-top-fv__dots .slick-active button {
  background-color: var(--color-green);
}

@keyframes zoomFadeIn {
  0% {
    transform: scale3d(1.02, 1.02, 1);
  }
  100% {
    transform: scale3d(1.12, 1.12, 1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-top-fv__slider .slick-current .p-top-fv__image {
    animation: none;
  }
}
.p-top-gallery {
  overflow: hidden;
  padding-block: var(--space-section);
  background-color: var(--color-bg);
}

.p-top-gallery__slider {
  padding-block: var(--space-12);
  margin-inline: calc(var(--space-container) * -1);
}

.p-top-gallery__slider:not(.slick-initialized) {
  display: flex;
  gap: var(--space-4);
  overflow: hidden;
}

.p-top-gallery__slider .slick-list {
  overflow: visible;
}

.p-top-gallery__slider .slick-track {
  display: flex;
  align-items: center;
}

.p-top-gallery__item {
  width: clamp(15.625rem, 11.74rem + 16.57vw, 25rem);
  padding-inline: var(--space-2);
  transform: translateY(var(--space-0));
}
@media screen and (min-width: 960px) {
  .p-top-gallery__item {
    padding-inline: var(--space-4);
  }
}

.p-top-gallery__slider .p-top-gallery__item:nth-child(2n) {
  transform: translateY(calc(var(--space-10) * -1));
}

.p-top-gallery__image {
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.u-animate-fade-in {
  animation: fadeIn var(--anim-base) var(--ease-standard);
}

.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
