@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  * 1. Add text decoration inheritance in all browsers (opinionated).
  * 2. Add vertical alignment inheritance in all browsers (opinionated).
  */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
  * 1. Use the default cursor in all browsers (opinionated).
  * 2. Change the line height in all browsers (opinionated).
  * 3. Use a 4-space tab width in all browsers (opinionated).
  * 4. Remove the grey highlight on links in iOS (opinionated).
  * 5. Prevent adjustments of font size after orientation changes in
  *    IE on Windows Phone and in iOS.
  * 6. Breaks words to prevent overflow in all browsers (opinionated).
  */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
  * ========================================================================== */
/**
  * Remove the margin in all browsers (opinionated).
  */
body {
  margin: 0;
}

/**
  * Correct the font size and margin on `h1` elements within `section` and
  * `article` contexts in Chrome, Edge, Firefox, and Safari.
  */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
  * ========================================================================== */
/**
  * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
  */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
  * Remove the margin on nested lists in Edge 18- and IE.
  */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
  * 1. Add the correct sizing in Firefox.
  * 2. Show the overflow in Edge 18- and IE.
  */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
  * Add the correct display in IE.
  */
main {
  display: block;
}

/**
  * Remove the list style on navigation lists in all browsers (opinionated).
  */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
  * ========================================================================== */
/**
  * Remove the gray background on active links in IE 10.
  */
a {
  background-color: transparent;
}

/**
  * Add the correct text decoration in Edge 18-, IE, and Safari.
  */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
  * Add the correct font weight in Chrome, Edge, and Safari.
  */
b,
strong {
  font-weight: bolder;
}

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
  * Add the correct font size in all browsers.
  */
small {
  font-size: 80%;
}

/* Embedded content
  * ========================================================================== */
/*
  * Change the alignment on media elements in all browsers (opinionated).
  */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
  * Add the correct display in IE 9-.
  */
audio,
video {
  display: inline-block;
}

/**
  * Add the correct display in iOS 4-7.
  */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
  * Remove the border on iframes in all browsers (opinionated).
  */
iframe {
  border-style: none;
}

/**
  * Remove the border on images within links in IE 10-.
  */
img {
  border-style: none;
}

/**
  * Change the fill color to match the text color in all browsers (opinionated).
  */
svg:not([fill]) {
  fill: currentColor;
}

/**
  * Hide the overflow in IE.
  */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
  * ========================================================================== */
/**
  * Collapse border spacing in all browsers (opinionated).
  */
table {
  border-collapse: collapse;
}

/* Forms
  * ========================================================================== */
/**
  * Remove the margin on controls in Safari.
  */
button,
input,
select {
  margin: 0;
}

/**
  * 1. Show the overflow in IE.
  * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
  */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
  * Correct the inability to style buttons in iOS and Safari.
  */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
  * 1. Change the inconsistent appearance in all browsers (opinionated).
  * 2. Correct the padding in Firefox.
  */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
  * Show the overflow in Edge 18- and IE.
  */
input {
  overflow: visible;
}

/**
  * 1. Correct the text wrapping in Edge 18- and IE.
  * 2. Correct the color inheritance from `fieldset` elements in IE.
  */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
  * 1. Add the correct display in Edge 18- and IE.
  * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
  */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
  * Remove the inheritance of text transform in Firefox.
  */
select {
  text-transform: none;
}

/**
  * 1. Remove the margin in Firefox and Safari.
  * 2. Remove the default vertical scrollbar in IE.
  * 3. Change the resize direction in all browsers (opinionated).
  */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
  * Remove the padding in IE 10-.
  */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
  * 1. Correct the odd appearance in Chrome, Edge, and Safari.
  * 2. Correct the outline style in Safari.
  */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
  * Correct the cursor style of increment and decrement buttons in Safari.
  */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
  * Correct the text style of placeholders in Chrome, Edge, and Safari.
  */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
  * Remove the inner padding in Chrome, Edge, and Safari on macOS.
  */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
  * 1. Correct the inability to style upload buttons in iOS and Safari.
  * 2. Change font properties to `inherit` in Safari.
  */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
  * Remove the inner border and padding of focus outlines in Firefox.
  */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
  * Restore the focus outline styles unset by the previous rule in Firefox.
  */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
  * Remove the additional :invalid styles in Firefox.
  */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
  * ========================================================================== */
/*
  * Add the correct display in Edge 18- and IE.
  */
details {
  display: block;
}

/*
  * Add the correct styles in Edge 18-, IE, and Safari.
  */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
  * Add the correct display in all browsers.
  */
summary {
  display: list-item;
}

/* Scripting
  * ========================================================================== */
/**
  * Add the correct display in IE 9-.
  */
canvas {
  display: inline-block;
}

/**
  * Add the correct display in IE.
  */
template {
  display: none;
}

/* User interaction
  * ========================================================================== */
/*
  * 1. Remove the tapping delay in IE 10.
  * 2. Remove the tapping delay on clickable elements
       in all browsers (opinionated).
  */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] { /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
  * Add the correct display in IE 10-.
  */
[hidden] {
  display: none;
}

/* Accessibility
  * ========================================================================== */
/**
  * Change the cursor on busy elements in all browsers (opinionated).
  */
[aria-busy=true] {
  cursor: progress;
}

/*
  * Change the cursor on control elements in all browsers (opinionated).
  */
[aria-controls] {
  cursor: pointer;
}

/*
  * Change the cursor on disabled, not-editable, or otherwise
  * inoperable elements in all browsers (opinionated).
  */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
  * Change the display on visually hidden accessible elements
  * in all browsers (opinionated).
  */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
  color: #444;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.maru {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
}

.inner {
  max-width: 1200px;
  margin: auto;
}

:root {
  --sky: #8dd8e9;
  --sky-menu: #8ed7e6;
  --paper: #fdfdfb;
  --beige: #f5eedf;
  --mustard: #f0db8c;
  --white: #fff;
  --blue: #1773a3;
  --lblue: #9bd7ea;
  --lblue-d: #64c7e6;
  --orange: #f4b434;
  --pink: #f79292;
  --green: #6fbf63;
  --green-qa: #7cb35a;
  --yellow: #f6d98e;
  --purple: #b89fd8;
  --logo-green: #2f6a35;
  --text: #3f3f3f;
  --text-l: #8a8a8a;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.inner {
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 4rem;
}
@media (max-width: 1024px) {
  .inner {
    padding-inline: 3rem;
  }
}
@media (max-width: 599px) {
  .inner {
    padding-inline: 1.4rem;
  }
}

.inner--m {
  max-width: 1200px;
}

.inner--s {
  max-width: 820px;
}

@media (max-width: 1024px) {
  body:not(.home) .l-header {
    background-color: var(--sky);
  }
}
@media (max-width: 1024px) {
  body:not(.home) .l-header.is-scrolled {
    background-color: var(--white);
    position: fixed;
  }
}

@media (min-width: 1025px) {
  body:not(.home) .l-header {
    position: static;
    background-color: var(--sky);
  }
  body:not(.home) .l-header__nav {
    background-color: #fff;
    border-radius: 48px;
    padding: 14px 36px;
  }
  body:not(.home) .l-header__en,
  body:not(.home) .l-header__tel-label,
  body:not(.home) .p-mv__bird-01 {
    display: none;
  }
  body:not(.home) .p-mv__cloud-01 {
    width: 300px;
  }
  body:not(.home) .l-header__action {
    background-image: none;
    background-color: #fff;
    border-radius: 48px;
    padding: 14px 36px;
    aspect-ratio: auto;
    width: auto;
  }
  body:not(.home) .l-header__brand {
    flex-direction: row;
    z-index: 2;
  }
  body:not(.home) .l-header__brand-text {
    align-items: start;
  }
  body:not(.home) .l-header__tel-number {
    font-size: 1.6rem;
  }
  body:not(.home) .l-header__tel-number img {
    width: 16px;
  }
}
@media (max-width: 1024px) {
  body:not(.home) .l-header__action {
    padding: 0;
  }
}
.l-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
  padding: 0.8rem 1rem 0;
  transition: background-color 0.3s var(--ease);
}
@media (max-width: 1024px) {
  .l-header {
    position: fixed;
    background-color: transparent;
  }
}
@media (max-width: 1024px) {
  .l-header.is-scrolled {
    background-color: var(--white);
  }
  .l-header.is-scrolled .p-mv__cloud-01 {
    display: none;
  }
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1400px;
  margin: auto;
  padding: 8px;
  position: relative;
}
.l-header__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .l-header__brand {
    flex-direction: row;
    align-items: center;
    gap: 1.1rem;
    text-align: left;
  }
}
.l-header__logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  isolation: isolate;
}
@media (max-width: 1024px) {
  .l-header__logo-wrap {
    padding: 0;
  }
}
.l-header__logo-wrap::before {
  inset: 0;
  border-radius: 46% 54% 58% 42%/78% 82% 62% 68%;
}
.l-header__logo-wrap::after {
  width: 3.4rem;
  height: 3.4rem;
  top: -0.8rem;
  right: -0.4rem;
}
.l-header__logo {
  width: 80px;
  height: 80px;
  flex: 0 0 auto;
}
@media (max-width: 1280px) {
  .l-header__logo {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 599px) {
  .l-header__logo {
    width: 48px;
    height: 48px;
  }
}
.l-header__brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.35;
}
@media (max-width: 599px) {
  .l-header__brand-text {
    align-items: flex-start;
  }
}
.l-header__name {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: var(--logo-green);
}
@media (max-width: 1280px) {
  .l-header__name {
    font-size: 20px;
  }
}
@media (max-width: 599px) {
  .l-header__name {
    font-size: 20px;
  }
}
.l-header__address {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
@media (max-width: 1280px) {
  .l-header__address {
    font-size: 1.5rem;
  }
}
@media (max-width: 1024px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__list {
  display: flex;
  align-items: center;
}
.l-header__item {
  position: relative;
}
.l-header__item + .l-header__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 50%;
  background: #fff;
}
.l-header__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-inline: 2.5rem;
}
@media (max-width: 1280px) {
  .l-header__link {
    padding-inline: 1.5rem;
  }
}
.l-header__link:hover {
  opacity: 0.7;
}
.l-header__ja {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--text);
}
@media (max-width: 1280px) {
  .l-header__ja {
    font-size: 1.2rem;
  }
}
.l-header__en {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--text);
}
.l-header__action {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 25rem;
  aspect-ratio: 217/107;
  padding-inline: 2rem;
  background: url("../images/illust-1.svg") no-repeat center center/contain;
}
@media (max-width: 1280px) {
  .l-header__action {
    width: 22rem;
  }
}
@media (max-width: 1024px) {
  .l-header__action {
    width: auto;
    aspect-ratio: auto;
    padding-inline: 0;
  }
}
.l-header__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1024px) {
  .l-header__tel {
    display: none;
  }
}
.l-header__tel-label {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--text);
}
.l-header__tel-number {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  color: var(--blue);
}
@media (max-width: 1280px) {
  .l-header__tel-number {
    font-size: 1.8rem;
  }
}
.l-header__menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
  z-index: 20;
}
@media (max-width: 1024px) {
  .l-header__menu {
    display: flex;
  }
}
.l-header__menu-cloud {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.6rem;
  height: 5.4rem;
  isolation: isolate;
}
@media (max-width: 1024px) {
  .l-header__menu-cloud {
    height: auto;
  }
}
.l-header__menu-cloud::before, .l-header__menu-cloud::after {
  content: "";
  position: absolute;
  background: var(--white);
  border-radius: 50%;
  z-index: -1;
}
@media (max-width: 1024px) {
  .l-header__menu-cloud::before, .l-header__menu-cloud::after {
    content: none;
  }
}
.l-header__menu-cloud::before {
  inset: 0;
  border-radius: 52% 48% 46% 54%/62% 66% 38% 44%;
}
.l-header__bars {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 2.8rem;
}
.l-header__bars span {
  height: 2.5px;
  border-radius: 2px;
  background: var(--text);
}
.l-header__menu-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  color: var(--text);
}

.l-page-header__breadcrumb {
  padding: 8px 24px;
}

.l-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  background: var(--sky-menu);
  overflow-y: auto;
  padding: 1.8rem 2rem 8rem;
}
.l-menu.is-open {
  display: block;
}
.l-menu__close-row {
  display: flex;
  justify-content: flex-end;
}
.l-menu__close {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.l-menu__close-cloud {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.6rem;
  height: 5.4rem;
  isolation: isolate;
}
.l-menu__close-cloud::before, .l-menu__close-cloud::after {
  content: "";
  position: absolute;
  background: var(--white);
  border-radius: 50%;
  z-index: -1;
}
.l-menu__close-cloud::before {
  inset: 0;
  border-radius: 52% 48% 46% 54%/62% 66% 38% 44%;
}
.l-menu__close-cloud::after {
  width: 3.4rem;
  height: 3.4rem;
  top: -1rem;
  left: 1.1rem;
}
@media (max-width: 1024px) {
  .l-menu__close-cloud::after {
    display: none;
  }
}
.l-menu__x {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
}
.l-menu__x::before, .l-menu__x::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 2.4rem;
  height: 2.5px;
  border-radius: 2px;
  background: var(--text);
}
.l-menu__x::before {
  transform: rotate(45deg);
}
.l-menu__x::after {
  transform: rotate(-45deg);
}
.l-menu__close-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  color: var(--text);
}
.l-menu__nav {
  max-width: 50rem;
  margin: 3.5rem auto 0;
}
.l-menu__item {
  border-top: 1.5px solid rgba(255, 255, 255, 0.95);
}
.l-menu__item:last-child {
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.95);
}
.l-menu__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  padding-block: 2.5rem;
  text-align: center;
}
.l-menu__link:hover {
  opacity: 0.7;
}
.l-menu__ja {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 0.16em;
  color: var(--text);
}
@media (max-width: 599px) {
  .l-menu__ja {
    font-size: 1.7rem;
  }
}
.l-menu__en {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--text);
}
@media (max-width: 599px) {
  .l-menu__en {
    font-size: 1.45rem;
  }
}

.l-main {
  display: block;
  overflow-x: hidden;
  overflow-x: clip;
}

.l-main__cover {
  position: relative;
  z-index: 2;
}

.l-cta {
  display: none;
}
@media (max-width: 599px) {
  .l-cta {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 90;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    pointer-events: none;
  }
}
.l-cta__btn {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex: 1;
  max-width: 32rem;
  padding: 1.5rem 1rem;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  color: var(--white);
  border-radius: 1.3rem 1.3rem 0 0;
  box-shadow: 0 -0.3rem 1.4rem rgba(0, 0, 0, 0.12);
  transition: transform 0.3s var(--ease), filter 0.3s ease;
}
.l-cta__btn:hover {
  transform: translateY(-0.3rem);
  filter: brightness(1.06);
}
.l-cta__btn svg {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
}
.l-cta__btn--reserve {
  background: var(--orange);
}
.l-cta__btn--tel {
  background: var(--blue);
  font-family: "Montserrat", "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.03em;
}
@media (max-width: 599px) {
  .l-cta {
    gap: 0.4rem;
  }
  .l-cta__btn {
    max-width: none;
    font-size: 1.6rem;
    border-radius: 1.2rem 1.2rem 0 0;
  }
}

.l-footer {
  position: relative;
  z-index: 2;
  background: var(--beige);
  border-radius: 40px 40px 0 0;
}
.l-footer__inner {
  padding-block: 3rem;
  text-align: center;
}
@media (max-width: 599px) {
  .l-footer__inner {
    padding-bottom: 72px;
  }
}
.l-footer__grid {
  padding: 6rem 3rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 80px;
}
@media (max-width: 1024px) {
  .l-footer__grid {
    grid-template-columns: 1fr;
    padding: 4rem 0;
  }
}
@media (max-width: 599px) {
  .l-footer__logo {
    margin: auto;
  }
}
.l-footer__title {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 599px) {
  .l-footer__title {
    display: grid;
    justify-content: center;
    text-align: center;
    gap: 8px;
  }
}
.l-footer__name {
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.14em;
  color: var(--logo-green);
}
@media (max-width: 599px) {
  .l-footer__name {
    margin: 0;
  }
}
.l-footer__address, .l-footer__tel {
  font-weight: 500;
  margin: 1rem 0;
}
@media (max-width: 599px) {
  .l-footer__address, .l-footer__tel {
    text-align: center;
  }
}
.l-footer__notes {
  font-weight: 700;
}
.l-footer__notes p {
  margin: 0;
}
.l-footer__map {
  aspect-ratio: 4/3;
  border-radius: 1.6rem;
  overflow: hidden;
}
.l-footer__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.l-footer__copy {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--text-l);
}
.l-footer__targetlist .c-heading {
  margin-top: 2rem;
}
.l-footer__targetlist .c-heading .c-heading__ja {
  font-size: 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.l-footer__targetlist .c-heading .c-heading__ja::before, .l-footer__targetlist .c-heading .c-heading__ja::after {
  content: "●";
  color: var(--lblue-d);
  font-size: 1.6rem;
}
.l-footer__targetlist-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.l-footer__targetlist-item {
  text-align: center;
}
.l-footer__targetlist-item .p-target__icon {
  width: auto;
}
.l-footer__targetlist-item .p-target__icon::before {
  content: none;
}
.l-footer__retop {
  bottom: 25%;
  right: 5%;
  display: grid;
  animation: pMvFadeUp 0.8s ease forwards;
  animation-delay: 1.6s;
  position: fixed;
  z-index: 2;
  opacity: 0;
  transform: translateY(2rem);
}
@media (max-width: 599px) {
  .l-footer__retop {
    bottom: 10%;
  }
}

.c-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}
.c-heading__en {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 3.6rem;
  letter-spacing: 0.26em;
  line-height: 1.25;
  color: var(--lblue);
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .c-heading__en {
    font-size: 3.2rem;
    letter-spacing: 0.2em;
  }
}
.c-heading__ja {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.24em;
  color: var(--orange);
  margin-top: 0;
}
@media (max-width: 1024px) {
  .c-heading__ja {
    font-size: 1.8rem;
  }
}
.c-heading--blue .c-heading__en {
  color: var(--blue);
}
.c-heading--blue .c-heading__ja {
  color: var(--text);
  letter-spacing: 0.3em;
}
.c-heading--hero .c-heading__ja {
  font-size: 4rem;
  color: var(--white);
}
@media (max-width: 1024px) {
  .c-heading--hero .c-heading__ja {
    font-size: 2.6rem;
  }
}
.c-heading--hero .c-heading__en {
  font-size: 1.8rem;
  color: var(--white);
}
@media (max-width: 1024px) {
  .c-heading--hero .c-heading__en {
    font-size: 1.5rem;
  }
}
.c-heading--white .c-heading__en {
  color: var(--white);
}
.c-heading--plain .c-heading__ja {
  font-size: 2.3rem;
  letter-spacing: 0.16em;
  color: var(--text);
}
@media (max-width: 1024px) {
  .c-heading--plain .c-heading__ja {
    font-size: 2rem;
  }
}

.c-text {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.02em;
}
.c-text + .c-text {
  margin-top: 2rem;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  /* min-width: 23rem; */
  max-width: 300px;
  width: 100%;
  height: 65px;
  padding: 1.3rem 3.4rem;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: #fff;
  background-image: url(../images/button-blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.c-button__arrow {
  width: 1.1rem;
  height: 1.1rem;
  border-top: 2.5px solid currentColor;
  border-right: 2.5px solid currentColor;
  transform: rotate(45deg);
  flex: 0 0 auto;
  transition: transform 0.3s var(--ease);
}
.c-button:hover .c-button__arrow {
  transform: translateX(0.5rem) rotate(45deg);
}

.c-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  flex: 0 0 auto;
  background: var(--orange);
  border-radius: 50%;
  transition: transform 0.3s var(--ease);
}
.c-arrow::before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  margin-right: 0.2rem;
  border-top: 2.5px solid var(--white);
  border-right: 2.5px solid var(--white);
  transform: rotate(45deg);
}

.c-button-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.7rem 3rem;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: filter 0.3s ease, transform 0.3s var(--ease);
}
.c-button-pill:hover {
  filter: brightness(1.06);
  transform: translateY(-0.2rem);
}
.c-button-pill__icon {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
}
.c-button-pill__arrow {
  width: 1rem;
  height: 1rem;
  border-top: 2.5px solid currentColor;
  border-right: 2.5px solid currentColor;
  transform: rotate(45deg);
  flex: 0 0 auto;
}
.c-button-pill--orange {
  background-image: url(../images/button-orange.svg);
}
.c-button-pill--blue {
  background-image: url(../images/button-darkblue.svg);
  font-family: "Montserrat", "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.03em;
}
@media (max-width: 599px) {
  .c-button-pill {
    width: 100%;
    max-width: 32rem;
  }
}

.c-breadcrumb {
  padding-block: 2rem;
}
.c-breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-l);
}
.c-breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.c-breadcrumb__item a {
  color: var(--lblue-d);
  transition: opacity 0.3s ease;
}
.c-breadcrumb__item a:hover {
  opacity: 0.7;
}
.c-breadcrumb__item:not(:last-child)::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1.5px solid var(--text-l);
  border-right: 1.5px solid var(--text-l);
  transform: rotate(45deg);
}
.c-breadcrumb__item.is-current {
  color: var(--text-l);
}

.c-hours {
  padding: 0.8rem 1.4rem;
  background: var(--white);
  border: 3px solid var(--yellow);
  border-radius: 2rem;
}
@media (max-width: 599px) {
  .c-hours {
    padding: 0.8rem;
  }
}
.c-hours--plain {
  border: none;
  border-radius: 1.8rem;
  padding: 1.2rem 1.4rem;
}
.c-hours__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.c-hours__table th,
.c-hours__table td {
  padding: 1.6rem 0.2rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media (max-width: 599px) {
  .c-hours__table th,
  .c-hours__table td {
    padding: 1.3rem 0.1rem;
    font-size: 1.4rem;
  }
}
.c-hours__table th:first-child,
.c-hours__table td:first-child {
  width: 28%;
  letter-spacing: 0;
  white-space: nowrap;
}
.c-hours__table thead th {
  border-bottom: 2px solid var(--yellow);
}
.c-hours__table tbody tr + tr th,
.c-hours__table tbody tr + tr td {
  border-top: 2px solid var(--yellow);
}
.c-hours__table .is-open::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  background: var(--lblue-d);
  border-radius: 50%;
  vertical-align: middle;
}
@media (max-width: 599px) {
  .c-hours__table .is-open::before {
    width: 1.3rem;
    height: 1.3rem;
  }
}
.c-hours__table .is-close {
  color: var(--pink);
  font-size: 1.45rem;
}
@media (max-width: 599px) {
  .c-hours__table .is-close {
    font-size: 1.4rem;
  }
}
.c-hours--plain .c-hours__table thead th {
  border-bottom-color: #efe6d0;
}
.c-hours--plain .c-hours__table tbody tr + tr th, .c-hours--plain .c-hours__table tbody tr + tr td {
  border-top-color: #efe6d0;
}

.aside-content {
  padding: 3rem 2.4rem;
  background: var(--white);
  border: 1px solid #e6e0d2;
  border-radius: 1rem;
}
.aside-content .aside-ttl {
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--blue);
  border-bottom: 2px solid var(--lblue);
}

.cat-item {
  border-bottom: 1px solid #eee7d8;
}
.cat-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0.4rem;
  font-size: 1.5rem;
}
.cat-item a:hover {
  color: var(--blue);
}

.posts_count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.6rem;
  font-size: 1.2rem;
  color: var(--white);
  background: var(--lblue-d);
  border-radius: 999px;
}

.pageNation {
  margin-top: 5rem;
}
.pageNation .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.pageNation .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.6rem;
  height: 4.6rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  color: var(--lblue-d);
  background: var(--white);
  border: 1.5px solid var(--lblue);
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.pageNation .page-numbers a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.pageNation .page-numbers:hover {
  color: var(--white);
  background: var(--lblue-d);
}
.pageNation .page-numbers.current {
  color: var(--white);
  background: var(--lblue-d);
  border-color: var(--lblue-d);
}
.pageNation .page-numbers.prev::before, .pageNation .page-numbers.next::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border-top: 2px solid var(--lblue-d);
  border-right: 2px solid var(--lblue-d);
}
.pageNation .page-numbers.prev::before {
  transform: rotate(-135deg);
  margin-left: 0.3rem;
}
.pageNation .page-numbers.next::before {
  transform: rotate(45deg);
  margin-right: 0.3rem;
}

.pagerLink {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 5rem;
}
@media (max-width: 599px) {
  .pagerLink {
    flex-direction: column;
  }
}
.pagerLink li {
  flex: 1;
}
.pagerLink a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  font-size: 1.4rem;
  background: var(--white);
  border: 1.5px solid var(--lblue);
  border-radius: 999px;
  transition: color 0.3s ease;
}
.pagerLink a:hover {
  color: var(--lblue-d);
}
.pagerLink a::before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  flex: 0 0 auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.pagerLink .prev a::before {
  transform: rotate(-135deg);
}
.pagerLink .next a {
  flex-direction: row-reverse;
  justify-content: flex-start;
  text-align: right;
}
.pagerLink .next a::before {
  transform: rotate(45deg);
}

.c-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.c-pagination__list {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.c-pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--text-l);
  background: #ececec;
  border-radius: 50%;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.c-pagination__link:hover {
  opacity: 0.8;
}
.c-pagination__link.is-current {
  color: var(--white);
  background: var(--lblue-d);
}
.c-pagination__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 4rem;
  height: 4rem;
  background: #ececec;
  border-radius: 50%;
  transition: opacity 0.3s var(--ease);
}
.c-pagination__arrow:hover {
  opacity: 0.7;
}
.c-pagination__arrow::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid var(--text-l);
  border-right: 2px solid var(--text-l);
}
.c-pagination__arrow--prev::before {
  transform: rotate(-135deg);
  margin-left: 0.3rem;
}
.c-pagination__arrow--next::before {
  transform: rotate(45deg);
  margin-right: 0.3rem;
}

.c-quicklink {
  padding-block: 3rem calc(17.9vw + 2rem);
}
.c-quicklink-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem 2rem;
}
@media (max-width: 1024px) {
  .c-quicklink-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem 0.5rem;
  }
}
.c-quicklink-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 2rem;
  min-height: 6.2rem;
  background-color: #66c97f;
  border-radius: 6px;
  box-shadow: inset 0 0 0 2px #66c97f, inset 0 0 0 3px var(--white);
  color: var(--white);
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  transition: filter 0.3s ease, transform 0.3s var(--ease);
}
@media (max-width: 1024px) {
  .c-quicklink-link {
    padding: 1.4rem 1.6rem;
    min-height: 5.4rem;
    font-size: 1.3rem;
    letter-spacing: 0;
  }
}
@media (max-width: 599px) {
  .c-quicklink-link {
    font-size: 1.4rem;
  }
}
.c-quicklink-link:hover {
  filter: brightness(1.05);
  transform: translateY(-0.2rem);
}
.c-quicklink-link::after {
  content: "";
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  border-bottom: 2.5px solid currentColor;
  border-right: 2.5px solid currentColor;
  transform: rotate(45deg) translate(-0.2rem, -0.2rem);
}

.p-mv {
  position: sticky;
  top: 0;
  min-height: 120vh;
  min-height: 120svh;
  padding-top: clamp(9.5rem, 7.176rem + 6.2vw, 16.1rem);
  padding-bottom: 4rem;
  background: var(--sky);
  overflow: hidden;
}
@media (max-width: 1024px) {
  .p-mv {
    min-height: 100vh;
    min-height: 100svh;
  }
}
@media (max-width: 599px) {
  .p-mv {
    padding-bottom: 2rem;
    min-height: 95vh;
    min-height: 95svh;
    padding-top: 8rem;
  }
}
.p-mv__contents {
  position: relative;
  margin-inline: auto;
  height: clamp(62.1rem, 56.66rem + 14.6vw, 77.7rem);
}
.p-mv__swiper-container {
  width: 100%;
  position: relative;
}
.p-mv__swiper {
  width: 100%;
}
.p-mv__swiper-slide {
  aspect-ratio: 1736/1176;
  transform: scale(0.8);
}
@media (max-width: 1024px) {
  .p-mv__swiper-slide {
    aspect-ratio: auto;
    width: 100%;
    height: 75svh;
    transform: scale(1);
  }
}
.p-mv__swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: clamp(4rem, 1.1824rem + 7.51vw, 12rem);
  transform: scale(0.75);
  transition: transform 0.7s;
}
.p-mv .swiper-slide-active {
  background: url("../images/bg_fv-swiper-pc.webp") no-repeat center center/contain;
  overflow: hidden;
  z-index: 1;
}
.p-mv .swiper-slide-active img {
  border-radius: clamp(4rem, 1.1824rem + 7.51vw, 12rem);
  transform: scale(0.95, 0.92);
}
@media (max-width: 1024px) {
  .p-mv .swiper-slide-active img {
    transform: scale(0.92, 0.98);
  }
}
@media (max-width: 1024px) {
  .p-mv .swiper-slide-active {
    background: url("../images/bg_fv-swiper-sp.webp") no-repeat center center/contain;
  }
}
.p-mv__catch-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.4rem, 1rem + 0.75vw, 2.2rem);
  width: clamp(30.7rem, 21.86rem + 23.57vw, 55.8rem);
  aspect-ratio: 558/289;
  background: url("../images/illust-4.svg") no-repeat center center/contain;
  position: absolute;
  top: 10%;
  left: 2%;
  z-index: 9;
}
@media (max-width: 599px) {
  .p-mv__catch-wrap {
    left: 50%;
    transform: translateX(-50%);
    bottom: 30%;
    top: auto;
    width: 95%;
  }
}
.p-mv__catch {
  color: #053042;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 1.8848rem + 2.44vw, 5.4rem);
  line-height: 6.4rem;
  letter-spacing: 0.648rem;
  padding-top: 3.8rem;
  margin: 0;
}
@media (max-width: 599px) {
  .p-mv__catch {
    line-height: normal;
    padding-top: 0;
  }
}
.p-mv__catch .is-pink {
  color: var(--pink);
}
.p-mv__catch .is-green {
  color: var(--green);
}
.p-mv__catch .is-orange {
  color: var(--orange);
}
.p-mv__catch-en {
  display: block;
  color: #fadd2e;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.2rem, 0.9888rem + 0.56vw, 1.8rem);
  font-weight: 600;
  line-height: 0.6;
}
.p-mv__cloud-01, .p-mv__cloud-02, .p-mv__cloud-03, .p-mv__cloud-04, .p-mv__bird-01, .p-mv__bird-02, .p-mv__dot-01, .p-mv__dot-02, .p-mv__tree-01, .p-mv__tree-02, .p-mv__flower-01, .p-mv__flower-02, .p-mv__animal-01, .p-mv__animal-02, .p-mv__reservation {
  position: absolute;
  z-index: 9;
  opacity: 0;
  transform: translateY(2rem);
  animation: pMvFadeUp 0.8s ease forwards;
}
.p-mv__cloud-01 {
  width: clamp(16rem, 14.2048rem + 4.79vw, 21.1rem);
  top: 5px;
  left: 0;
  animation-delay: 0.1s;
  z-index: -1;
}
@media (max-width: 1024px) {
  .p-mv__cloud-01 {
    top: -15%;
    left: -5%;
  }
}
.p-mv__cloud-02 {
  width: 21.1rem;
  top: 0;
  right: 30%;
  animation-delay: 0.2s;
}
.p-mv__cloud-03 {
  width: 19.9rem;
  top: 12%;
  right: 16%;
  animation-delay: 0.3s;
}
@media (max-width: 1024px) {
  .p-mv__cloud-03 {
    display: none;
  }
}
.p-mv__cloud-04 {
  width: 14.5rem;
  top: 5%;
  right: 11%;
  animation-delay: 0.4s;
}
@media (max-width: 1024px) {
  .p-mv__cloud-04 {
    top: -2%;
  }
}
.p-mv__bird-01 {
  width: 2.5rem;
  top: 20px;
  left: 12%;
  animation-delay: 0.5s;
  z-index: 1;
}
@media (max-width: 1024px) {
  .p-mv__bird-01 {
    display: none;
  }
}
.p-mv__bird-02 {
  width: 6.3rem;
  top: -2%;
  right: 23%;
  animation-delay: 0.6s;
}
@media (max-width: 1024px) {
  .p-mv__bird-02 {
    top: -4%;
    right: 28%;
  }
}
.p-mv__dot-01 {
  width: 16.1rem;
  bottom: 0;
  left: 6%;
  animation-delay: 0.7s;
}
@media (max-width: 1024px) {
  .p-mv__dot-01 {
    display: none;
  }
}
.p-mv__dot-02 {
  width: 16.1rem;
  bottom: 0;
  right: 5%;
  animation-delay: 0.8s;
}
@media (max-width: 1024px) {
  .p-mv__dot-02 {
    display: none;
  }
}
.p-mv__tree-01 {
  width: 5.2rem;
  bottom: 0;
  left: 11%;
  animation-delay: 0.9s;
}
@media (max-width: 1024px) {
  .p-mv__tree-01 {
    bottom: 16px;
    left: -8px;
  }
}
.p-mv__tree-02 {
  width: 5.4rem;
  bottom: 0;
  right: 11%;
  animation-delay: 1s;
}
@media (max-width: 1024px) {
  .p-mv__tree-02 {
    bottom: 48px;
    right: 0;
  }
}
.p-mv__flower-01 {
  width: 4.9rem;
  bottom: 0;
  left: 15%;
  animation-delay: 1.1s;
}
@media (max-width: 1024px) {
  .p-mv__flower-01 {
    display: none;
  }
}
.p-mv__flower-02 {
  width: 4.9rem;
  bottom: 0;
  right: 14%;
  animation-delay: 1.2s;
}
@media (max-width: 1024px) {
  .p-mv__flower-02 {
    bottom: 0;
    right: 72px;
  }
}
.p-mv__animal-01 {
  width: 8.7rem;
  bottom: 0;
  left: 20%;
  opacity: 1;
}
@media (max-width: 1024px) {
  .p-mv__animal-01 {
    bottom: 0;
    left: 0;
    width: 80px;
  }
}
.p-mv__animal-02 {
  width: 8.5rem;
  bottom: 0;
  right: 17%;
  opacity: 1;
}
@media (max-width: 1024px) {
  .p-mv__animal-02 {
    bottom: 0;
    right: 0;
  }
}
.p-mv__reservation {
  width: 15.4rem;
  height: 15.4rem;
  bottom: 4%;
  right: 2%;
  display: grid;
  background: url("../images/icon_fv-reservation.webp") no-repeat center/contain;
  animation-delay: 1.6s;
  position: fixed;
}
@media (max-width: 599px) {
  .p-mv__reservation {
    display: none;
  }
}
.p-mv__reservation a {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
}
.p-mv__reservation-phone {
  width: 3.1rem;
}
.p-mv__reservation-text {
  color: var(--white);
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.045rem;
  text-align: center;
}
.p-mv__reservation-sp {
  display: none;
}
@media (max-width: 599px) {
  .p-mv__reservation-sp {
    padding-inline: 0.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
  }
}
.p-mv__reservation-web, .p-mv__reservation-tel {
  display: none;
}
@media (max-width: 599px) {
  .p-mv__reservation-web, .p-mv__reservation-tel {
    display: block;
    border-radius: 1.2rem;
    box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.25);
  }
  .p-mv__reservation-web span, .p-mv__reservation-tel span {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--white);
    padding-block: 1rem;
  }
}
.p-mv__reservation-web {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.192rem;
  background-color: var(--orange);
}
.p-mv__reservation-web img {
  width: 1.9rem;
}
.p-mv__reservation-tel {
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.096rem;
  background-color: var(--blue);
}
.p-mv__reservation-tel svg {
  width: 2.2rem;
}

@keyframes pMvFadeUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-page-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(28rem, 20.8rem + 15vw, 40rem);
  padding-block: 4rem;
  background: url(../images/child-header.png) no-repeat center bottom/cover;
  margin-top: -50px;
  width: 102%;
  margin-left: -1%;
}
@media (max-width: 1280px) {
  .p-page-hero {
    margin-top: -200px;
    background: url(../images/child-header.png) no-repeat center bottom/contain;
  }
}
@media (max-width: 1024px) {
  .p-page-hero {
    position: relative;
    margin-top: 14px;
    min-height: 24rem;
    background: url(../images/child-header.png) no-repeat center bottom/cover;
    background-size: 300%;
  }
}
@media (max-width: 960px) {
  .p-page-hero {
    margin-top: -6px;
  }
}
@media (max-width: 840px) {
  .p-page-hero {
    margin-top: 55px;
    background: url(../images/child-header.png) no-repeat center bottom/cover;
  }
}
@media (max-width: 599px) {
  .p-page-hero {
    z-index: 8;
    min-height: 24rem;
    padding-block: 2rem;
    width: 100%;
    margin: 0;
    background: url(../images/child-header.png) no-repeat center bottom/cover;
  }
}
.p-page-hero .c-heading--hero {
  margin-top: -6rem;
}
@media (max-width: 1280px) {
  .p-page-hero .c-heading--hero {
    margin-top: 8rem;
  }
}
@media (max-width: 1024px) {
  .p-page-hero .c-heading--hero {
    margin-top: -2rem;
  }
}
@media (max-width: 599px) {
  .p-page-hero .c-heading--hero {
    margin-top: 2rem;
  }
}

.p-news__body {
  background: var(--white);
  padding: 0 0 5rem;
}
.p-news__body:before {
  content: "";
  position: absolute;
  top: -20.37037vh;
  left: -6.9vw;
  width: 113.854167vw;
  height: 76.481481vh;
  border-radius: 50%;
  background-color: #fff;
  z-index: -1;
}
@media (max-width: 1024px) {
  .p-news__body:before {
    top: -9.37037vh;
    left: -15.9vw;
    width: 133.854167vw;
    height: 36.481481vh;
  }
}
.p-news__head {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 599px) {
  .p-news__head {
    gap: 2rem;
    margin-bottom: 3rem;
  }
}
.p-news__tree {
  width: 4.4rem;
  flex: 0 0 auto;
}
@media (max-width: 599px) {
  .p-news__tree {
    width: 3.6rem;
  }
}
.p-news__list {
  max-width: 760px;
  margin-inline: auto;
}
.p-news__item {
  border-bottom: 2px dashed var(--lblue);
}
.p-news__link {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.2rem 0.4rem;
}
.p-news__link:hover .c-arrow {
  transform: translateX(0.5rem);
}
@media (max-width: 599px) {
  .p-news__link {
    gap: 0.2rem;
    display: grid;
    grid-template-columns: 1fr auto;
  }
}
.p-news__meta {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex: 0 0 auto;
}
.p-news__date {
  font-family: "Montserrat", "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
}
@media (max-width: 599px) {
  .p-news__date {
    font-size: 1.4rem;
  }
}
.p-news__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9.6rem;
  padding: 0.3rem 1.8rem;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--white);
  border-radius: 999px;
}
@media (max-width: 599px) {
  .p-news__badge {
    font-size: 1.2rem;
    min-width: 6.6rem;
  }
}
.p-news__badge--green {
  background: var(--green);
}
.p-news__badge--pink {
  background: var(--pink);
}
.p-news__badge--blue {
  background: var(--lblue-d);
}
.p-news__title {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
}
@media (max-width: 599px) {
  .p-news__title {
    font-size: 1.6rem;
  }
}
.p-news__arrow {
  flex: 0 0 auto;
}
@media (max-width: 599px) {
  .p-news__arrow {
    grid-column: 2;
    grid-row: 1/span 2;
  }
}
.p-news__more {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.p-news-list {
  padding: 6rem 0 8rem;
}
@media (max-width: 599px) {
  .p-news-list {
    padding: 4rem 0 5rem;
  }
}
.p-news-list__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 4rem;
}
@media (max-width: 599px) {
  .p-news-list__tabs {
    justify-content: flex-start;
    gap: 0.8rem;
    margin-bottom: 3rem;
  }
}
.p-news-list__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11rem;
  padding: 1rem 2rem;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--text-l);
  background: #ececec;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.p-news-list__tab:hover {
  opacity: 0.85;
}
.p-news-list__tab.is-active {
  color: var(--white);
  background: var(--orange);
}
@media (max-width: 599px) {
  .p-news-list__tab {
    min-width: 8.4rem;
    padding: 0.8rem 1.4rem;
    font-size: 1.3rem;
  }
}
.p-news-list__items {
  max-width: 900px;
  margin-inline: auto;
}
.p-news-list__item {
  border-bottom: 2px dashed var(--lblue);
}
.p-news-list__link {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: 2.4rem 0.4rem;
}
.p-news-list__link:hover .c-arrow {
  transform: translateX(0.5rem);
}
@media (max-width: 599px) {
  .p-news-list__link {
    gap: 1.4rem;
    padding: 1.8rem 0.2rem;
  }
}
.p-news-list__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 17rem;
  height: 12rem;
  border: 2px solid var(--green);
  border-radius: 1.6rem;
  overflow: hidden;
  background: var(--white);
}
.p-news-list__thumb img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 599px) {
  .p-news-list__thumb {
    width: 8rem;
    height: 6rem;
    border-radius: 1.2rem;
  }
}
.p-news-list__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
@media (max-width: 599px) {
  .p-news-list__body {
    gap: 0.6rem;
  }
}
.p-news-list__pager {
  margin-top: 5rem;
}
@media (max-width: 599px) {
  .p-news-list__pager {
    margin-top: 3.5rem;
  }
}

.p-news-article {
  padding: 6rem 0 8rem;
}
@media (max-width: 599px) {
  .p-news-article {
    padding: 4rem 0 5rem;
  }
}
.p-news-article__head, .p-news-article__body {
  max-width: 104rem;
  margin-inline: auto;
}
.p-news-article__title {
  margin: 1.6rem 0 0;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--text);
}
@media (max-width: 599px) {
  .p-news-article__title {
    font-size: 2rem;
  }
}
.p-news-article__divider {
  max-width: 104rem;
  margin: 3.6rem auto;
  border-top: 2px dashed var(--lblue);
}
@media (max-width: 599px) {
  .p-news-article__divider {
    margin: 2.4rem auto;
  }
}
.p-news-article__heading {
  margin: 4rem 0 2rem;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  color: var(--lblue-d);
}
.p-news-article__heading:first-child {
  margin-top: 0;
}
@media (max-width: 599px) {
  .p-news-article__heading {
    font-size: 1.9rem;
  }
}
.p-news-article__list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.9;
  letter-spacing: 0.02em;
}
.p-news-article__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--text-l);
}
.p-news-article__list li + li {
  margin-top: 0.8rem;
}

.p-hours {
  background: var(--white);
  padding: 7rem 0 40rem;
}
.p-hours .c-heading__ja {
  margin: 0;
}
@media (max-width: 1024px) {
  .p-hours {
    padding: 0 0 28rem;
  }
}
@media (max-width: 599px) {
  .p-hours {
    padding: 0 0 12rem;
  }
}
.p-hours__row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6rem;
}
@media (max-width: 1024px) {
  .p-hours__row {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
}
@media (max-width: 599px) {
  .p-hours__row {
    gap: 4rem;
  }
}
.p-hours__col--time {
  flex: 0 1 760px;
  min-width: 0;
}
@media (max-width: 1024px) {
  .p-hours__col--time {
    flex: auto;
  }
}
.p-hours__col--target {
  flex: 0 0 auto;
  text-align: center;
}
.p-hours__card {
  max-width: 760px;
  margin-inline: auto;
  position: relative;
}
.p-hours__card-rabbit {
  position: absolute;
  bottom: -32px;
  left: -54px;
}
@media (max-width: 1024px) {
  .p-hours__card-rabbit {
    display: none;
  }
}
.p-hours__notes {
  max-width: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2;
}
@media (max-width: 1024px) {
  .p-hours__notes {
    font-size: 1.6rem;
    grid-template-columns: 1fr;
  }
  .p-hours__notes p {
    margin: 0;
  }
}

.p-target__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 3.6rem;
}
@media (max-width: 1024px) {
  .p-target__list {
    gap: 2rem;
    margin-top: 2.8rem;
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-target__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.p-target__icon {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 5rem;
  height: 7rem;
}
@media (max-width: 599px) {
  .p-target__icon {
    width: 7rem;
    height: 7rem;
  }
}
.p-target__icon::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-42%);
  width: 58px;
  height: 58px;
  background: #dcecf1;
  border-radius: 50%;
  z-index: -1;
}
.p-target__icon svg {
  position: relative;
  width: 84%;
  height: auto;
  fill: #6b5b4e;
}
.p-target__name {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
@media (max-width: 599px) {
  .p-target__name {
    font-size: 1.4rem;
  }
}

.p-message {
  color: var(--white);
  background: var(--blue);
}
.p-message__body {
  position: relative;
  min-height: 40rem;
}
@media (min-width: 1540px) {
  .p-message__body {
    min-height: 54rem;
  }
}
@media (max-width: 1280px) {
  .p-message__body {
    min-height: 0;
  }
}
.p-message__body {
  padding: 3rem 0 7rem;
}
@media (max-width: 599px) {
  .p-message__body {
    padding-bottom: 0;
  }
}
.p-message__body::before {
  content: "";
  position: absolute;
  left: -1%;
  right: 0;
  bottom: 100%;
  transform: translateY(15%);
  width: 102%;
  aspect-ratio: 1499/310;
  background: url("../images/backimg-1.svg") no-repeat top center/100% 100%;
  pointer-events: none;
  z-index: 0;
}
.p-message__body::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 7rem;
  background: var(--blue);
  pointer-events: none;
  z-index: 1;
}
.p-message__body > .inner {
  margin-left: auto;
  margin-right: 4%;
}
@media (max-width: 1280px) {
  .p-message__body > .inner {
    max-width: 100%;
  }
}
@media (max-width: 599px) {
  .p-message__body > .inner {
    margin-inline: auto;
  }
}
.p-message__photo {
  position: absolute;
  left: -6%;
  top: -120px;
  z-index: 2;
  max-width: 840px;
  width: 45%;
  aspect-ratio: 1;
  margin: -8.5rem auto 4rem;
}
@media (max-width: 1280px) {
  .p-message__photo {
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    left: 0;
    width: 80%;
    z-index: 2;
    top: -48px;
    aspect-ratio: 0;
  }
}
@media (max-width: 599px) {
  .p-message__photo {
    width: 100%;
  }
}
.p-message__photo-img {
  position: relative;
}
.p-message__photo-flower {
  position: absolute;
  bottom: 0;
  left: 70px;
}
@media (max-width: 599px) {
  .p-message__photo-flower {
    width: 100px;
  }
}
.p-message__flower {
  position: absolute;
  left: -1rem;
  bottom: 0.6rem;
  width: 8.6rem;
}
@media (max-width: 599px) {
  .p-message__flower {
    display: none;
  }
}
.p-message__catch {
  text-align: center;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media (max-width: 599px) {
  .p-message__catch {
    font-size: 3rem;
    line-height: 1.6;
    margin-top: 0;
    letter-spacing: 0;
  }
}
.p-message__texts {
  max-width: 620px;
  margin: 4rem auto 0;
}
.p-message__texts .c-text {
  color: var(--white);
  font-weight: 700;
}

.p-philosophy {
  position: relative;
  z-index: 3;
  padding-bottom: 12rem;
  margin-top: 2rem;
  padding-top: 16rem;
}
@media (max-width: 599px) {
  .p-philosophy {
    margin-top: 0;
    padding-top: 20rem;
    padding-bottom: 25rem;
  }
}
.p-philosophy::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/backimg-2.svg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1280px) {
  .p-philosophy::after {
    background-position: top center;
  }
}
@media (max-width: 420px) {
  .p-philosophy::after {
    background-image: url("../images/backimg-2sp.svg");
    background-position: top center;
  }
}
.p-philosophy .c-heading {
  text-align: start;
  display: block;
}
@media (max-width: 599px) {
  .p-philosophy .c-heading {
    text-align: center;
  }
}
.p-philosophy .inner {
  position: relative;
  z-index: 2;
  margin: 0;
  margin-left: auto;
  padding: 10rem 2rem 10rem 10rem;
}
@media (max-width: 1024px) {
  .p-philosophy .inner {
    padding: 24rem 4rem;
  }
}
@media (max-width: 420px) {
  .p-philosophy .inner {
    padding: 2rem;
  }
}
.p-philosophy__lead {
  margin: 4rem auto 0;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 2.1;
  color: #333;
}
@media (max-width: 599px) {
  .p-philosophy__lead {
    font-size: 1.6rem;
  }
}
.p-philosophy__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 7.5rem;
  margin: 7rem auto 0;
}
@media (max-width: 599px) {
  .p-philosophy__list {
    gap: 6rem;
    margin-top: 5.5rem;
    grid-template-columns: 1fr;
  }
}

.p-ideal {
  position: relative;
  padding-top: 4.2rem;
}
@media (max-width: 599px) {
  .p-ideal {
    padding-top: 3.4rem;
  }
}
.p-ideal__num {
  position: absolute;
  top: 0;
  left: -3rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--white);
  background-image: url(../../asset/images/icon-fhilosophy.svg);
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 599px) {
  .p-ideal__num {
    font-size: 2.4rem;
    left: -0.4rem;
  }
}
.p-ideal__img {
  overflow: hidden;
}
.p-ideal__img img {
  width: 297px;
  height: 100%;
  aspect-ratio: 297/210;
  border-radius: 2.6rem;
  -o-object-fit: cover;
     object-fit: cover;
  background: #d9d9d9;
}
@media (max-width: 599px) {
  .p-ideal__img img {
    width: 90%;
    margin: auto;
  }
}
.p-ideal__title {
  margin-top: 3rem;
  text-align: start;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--blue);
}
@media (max-width: 599px) {
  .p-ideal__title {
    margin-top: 2.4rem;
    font-size: 1.8rem;
    text-align: center;
  }
}
.p-ideal__text {
  margin-top: 2rem;
  color: #333;
}

.p-features {
  position: relative;
  background: var(--beige);
  padding-bottom: 48rem;
}
@media (max-width: 1024px) {
  .p-features {
    padding-bottom: 24rem;
  }
}
@media (max-width: 599px) {
  .p-features {
    padding-bottom: 18rem;
  }
}
.p-features::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  transform: translateY(15%);
  aspect-ratio: 1440/268;
  background: url("../images/backimg-3.svg") no-repeat top center/100% 100%;
  pointer-events: none;
  z-index: 2;
}
.p-features__deco {
  position: relative;
  z-index: 2;
  height: 9rem;
}
@media (max-width: 599px) {
  .p-features__deco {
    height: 7rem;
  }
}
.p-features__flower {
  position: absolute;
  z-index: 2;
}
.p-features__flower--orange {
  top: -80px;
  right: 15%;
}
@media (max-width: 1024px) {
  .p-features__flower--orange {
    right: 0;
    width: 160px;
  }
}
.p-features__dots {
  position: absolute;
  top: 44%;
  right: 1.5%;
  width: 13rem;
  height: 9rem;
  z-index: 1;
  background-image: radial-gradient(#e3c98f 2.2px, transparent 2.4px);
  background-size: 1.6rem 1.6rem;
  transform: rotate(-12deg);
  border-radius: 40%;
}
@media (max-width: 599px) {
  .p-features__dots {
    display: none;
  }
}
.p-features__head {
  margin-bottom: 6.5rem;
}
@media (max-width: 599px) {
  .p-features__head {
    margin-bottom: 5rem;
  }
}
.p-features__list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media (max-width: 599px) {
  .p-features__list {
    max-width: 640px;
    margin-inline: auto;
  }
}

.p-fcard__num {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 5rem;
  line-height: 1;
  color: var(--pink);
}
@media (max-width: 1024px) {
  .p-fcard__num {
    font-size: 5.6rem;
    position: absolute;
    left: 8px;
    top: -32px;
  }
}
.p-fcard__body {
  padding: 3rem 2.6rem 4rem;
  background: var(--white);
  border-radius: 3rem;
  box-shadow: 1.1rem 1.1rem 0 0 var(--pink);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
}
@media (max-width: 599px) {
  .p-fcard__body {
    padding: 2.2rem 1.8rem 3.2rem;
    box-shadow: 0.9rem 0.9rem 0 0 var(--pink);
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.p-fcard__img {
  aspect-ratio: 4/3;
  border-radius: 1.8rem;
  overflow: hidden;
  background: #e8e8e8;
}
.p-fcard__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-fcard__title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--pink);
  display: flex;
  gap: 24px;
  align-items: center;
}
@media (max-width: 599px) {
  .p-fcard__title {
    font-size: 2.4rem;
    margin-top: 0;
    letter-spacing: 0;
    justify-content: center;
    text-align: center;
  }
}
.p-fcard__text {
  margin-top: 2rem;
}
.p-fcard__list {
  margin-top: 0.4rem;
  font-size: 1.6rem;
  line-height: 2.1;
}
.p-fcard__list li::before {
  content: "・";
}
.p-fcard__list--cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
}
@media (max-width: 599px) {
  .p-fcard__list--cols {
    grid-template-columns: 1fr;
  }
}
.p-fcard__list-title {
  margin-top: 2.4rem;
  font-weight: 700;
  font-size: 1.6rem;
}

.p-subject {
  position: relative;
  background: var(--mustard);
  padding-bottom: 9rem;
}
.p-subject::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  transform: translateY(30%);
  aspect-ratio: 1440/366;
  background: url("../images/backimg-4.svg") no-repeat top center/100% 100%;
  pointer-events: none;
}
@media (max-width: 599px) {
  .p-subject::before {
    transform: translateY(5%);
  }
}
.p-subject__head {
  margin-bottom: 5rem;
}
.p-subject__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3rem 2.6rem;
  margin-inline: auto;
}
@media (max-width: 1024px) {
  .p-subject__grid {
    gap: 2.4rem 1.6rem;
    max-width: 680px;
    grid-template-columns: 1fr 1fr;
  }
}
.p-subject__croud1 {
  position: absolute;
}
@media (max-width: 599px) {
  .p-subject__croud1 {
    display: none;
  }
}
.p-subject__croud2 {
  position: absolute;
  right: 0;
  top: -40px;
  width: 200px;
}
@media (max-width: 1024px) {
  .p-subject__croud2 {
    top: -80px;
  }
}
.p-subject__bird {
  position: absolute;
  right: 120px;
  top: 0;
}
@media (max-width: 1024px) {
  .p-subject__bird {
    top: -60px;
  }
}

.p-dept {
  position: relative;
  padding: 2.6rem 1.4rem 5.4rem;
  background: var(--white);
  border-radius: 2.4rem;
}
.p-dept__title {
  text-align: center;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.12em;
  color: var(--lblue-d);
  padding-bottom: 1.2rem;
  border-bottom: 2.5px dotted var(--lblue);
}
@media (max-width: 599px) {
  .p-dept__title {
    min-height: 80px;
    margin-top: 0;
  }
}
.p-dept__list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 2rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (max-width: 599px) {
  .p-dept__list {
    gap: 1.2rem;
    font-size: 1.6rem;
  }
}
.p-dept__open {
  position: absolute;
  right: 1.7rem;
  bottom: 1.3rem;
  width: 3.6rem;
  height: 3.6rem;
  background: none;
  border: none;
  cursor: pointer;
}
.p-dept__open::before, .p-dept__open::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: #eac256;
  border-radius: 3px;
  transition: transform 0.3s var(--ease);
}
.p-dept__open::before {
  width: 2.6rem;
  height: 0.4rem;
}
.p-dept__open::after {
  width: 0.4rem;
  height: 2.6rem;
}
.p-dept__open:hover::before, .p-dept__open:hover::after {
  transform: rotate(90deg);
}
.p-dept__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 2rem auto 0;
  padding: 0.9rem 2.2rem;
  background-image: url(../images/button-blue-min.svg);
}
@media (max-width: 599px) {
  .p-dept__link {
    font-size: 1.3rem;
    letter-spacing: 0;
    padding: 0;
  }
}

.p-dept-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.p-dept-modal.is-open {
  display: flex;
}
.p-dept-modal__bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}
.p-dept-modal__panel {
  position: relative;
  width: min(100%, 52rem);
  max-height: 80vh;
  overflow-y: auto;
  padding: 2.4rem 2.6rem 2.8rem;
  background: var(--white);
  border: 3.5px solid var(--lblue-d);
  border-radius: 2.8rem;
}
.p-dept-modal__head {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 2.5px dotted var(--lblue);
}
.p-dept-modal__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.6rem;
  height: 4.6rem;
  flex: 0 0 auto;
  background: var(--lblue-d);
  border-radius: 50%;
}
.p-dept-modal__icon img {
  width: 2.6rem;
  height: 2.6rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-dept-modal__title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  letter-spacing: 0.1em;
  color: var(--lblue-d);
}
.p-dept-modal__close {
  position: relative;
  margin-left: auto;
  width: 3.4rem;
  height: 3.4rem;
  background: none;
  border: none;
  cursor: pointer;
}
.p-dept-modal__close::before, .p-dept-modal__close::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 2.6rem;
  height: 3.5px;
  border-radius: 3px;
  background: #cfc5ae;
}
.p-dept-modal__close::before {
  transform: rotate(45deg);
}
.p-dept-modal__close::after {
  transform: rotate(-45deg);
}
.p-dept-modal__text {
  margin-top: 1.8rem;
  font-size: 1.6rem;
  line-height: 2;
}

.p-qa {
  background: var(--white);
  padding-block: 8rem 7rem;
}
@media (max-width: 599px) {
  .p-qa {
    padding-block: 6rem 5.5rem;
  }
}
.p-qa__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4.5rem;
}
@media (max-width: 599px) {
  .p-qa__head {
    gap: 1.8rem;
    margin-bottom: 3.5rem;
  }
}
.p-qa__deco {
  width: 8.6rem;
  flex: 0 0 auto;
}
@media (max-width: 599px) {
  .p-qa__deco {
    width: 4.2rem;
  }
}
.p-qa__list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-inline: auto;
  max-width: 980px;
}
@media (max-width: 599px) {
  .p-qa__list {
    gap: 1.8rem;
  }
}

.p-qa-item__q {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  width: 100%;
  padding: 32px;
  text-align: left;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--white);
  background: var(--green-qa);
  border: none;
  border-radius: 1.8rem;
  cursor: pointer;
  transition: filter 0.3s ease;
}
.p-qa-item__q:hover {
  filter: brightness(1.06);
}
@media (max-width: 599px) {
  .p-qa-item__q {
    padding: 1.8rem 2rem;
    font-size: 2rem;
  }
}
.p-qa-item__mark {
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  flex: 0 0 auto;
}
.p-qa-item__label {
  flex: 1;
}
.p-qa-item__toggle {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 auto;
}
.p-qa-item__toggle::before, .p-qa-item__toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.p-qa-item__toggle::before {
  width: 2rem;
  height: 0.3rem;
}
.p-qa-item__toggle::after {
  width: 0.3rem;
  height: 2rem;
}
.p-qa-item__a {
  display: none;
  padding: 32px;
  background: #eef5e7;
  border-radius: 0 0 1.8rem 1.8rem;
  font-size: 1.6rem;
  line-height: 2;
}
.p-qa-item__a ul {
  padding-left: 16px;
  display: flex;
  gap: 24px;
}
.p-qa-item__a ul li {
  list-style: disc;
}
.p-qa-item__a a {
  color: #57c0df;
  border-bottom: 1px solid;
}
.p-qa-item__a dl {
  padding-left: 16px;
}
.p-qa-item__a dl .p-qa-item__list {
  display: flex;
}
.p-qa-item__a dl dt {
  min-width: 100px;
}
.p-qa-item__a dl dt::before {
  content: "・";
}
@media (max-width: 599px) {
  .p-qa-item__a {
    font-size: 1.5rem;
  }
}
.p-qa-item.is-open .p-qa-item__q {
  border-radius: 1.8rem 1.8rem 0 0;
}
.p-qa-item.is-open .p-qa-item__a {
  display: block;
}
.p-qa-item.is-open .p-qa-item__toggle::after {
  transform: rotate(90deg);
}

.p-access {
  background: var(--white);
  padding-bottom: 4rem;
}
.p-access__card {
  max-width: 860px;
  margin-inline: auto;
  padding: 6rem 3rem 4rem;
  background: var(--beige);
  border-radius: 4rem;
  text-align: center;
}
@media (max-width: 599px) {
  .p-access__card {
    padding: 4.5rem 2rem 3rem;
    border-radius: 3rem;
  }
}
.p-access__logo {
  width: 12rem;
  height: 12rem;
  margin-inline: auto;
}
@media (max-width: 599px) {
  .p-access__logo {
    width: 10rem;
    height: 10rem;
  }
}
.p-access__name {
  margin-top: 1.8rem;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.14em;
  color: var(--logo-green);
}
@media (max-width: 599px) {
  .p-access__name {
    font-size: 2.1rem;
  }
}
.p-access__address, .p-access__tel {
  margin-top: 1.4rem;
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.06em;
}
@media (max-width: 599px) {
  .p-access__address, .p-access__tel {
    font-size: 1.5rem;
  }
}
.p-access__hours {
  margin-top: 3rem;
  text-align: left;
}
.p-access__notes {
  margin-top: 1.8rem;
  text-align: left;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2;
}
@media (max-width: 599px) {
  .p-access__notes {
    font-size: 1.4rem;
  }
}
.p-access__map {
  margin-top: 2.4rem;
  aspect-ratio: 4/3;
  border-radius: 1.6rem;
  overflow: hidden;
  background: #e8e0cf;
}
.p-access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.p-first__welcome {
  padding-bottom: calc(15.8vw + 2rem);
}
.p-first__quicklink {
  padding-block: 3rem calc(17.9vw + 2rem);
}
.p-first__quicklink-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem 2rem;
}
@media (max-width: 1024px) {
  .p-first__quicklink-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem 0.5rem;
  }
}
.p-first__quicklink-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 2rem;
  min-height: 6.2rem;
  background-color: #66c97f;
  border-radius: 6px;
  box-shadow: inset 0 0 0 2px #66c97f, inset 0 0 0 3px var(--white);
  color: var(--white);
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  transition: filter 0.3s ease, transform 0.3s var(--ease);
}
@media (max-width: 1024px) {
  .p-first__quicklink-link {
    padding: 1.4rem 1.6rem;
    min-height: 5.4rem;
    font-size: 1.3rem;
    letter-spacing: 0;
  }
}
@media (max-width: 599px) {
  .p-first__quicklink-link {
    font-size: 1.4rem;
  }
}
.p-first__quicklink-link:hover {
  filter: brightness(1.05);
  transform: translateY(-0.2rem);
}
.p-first__quicklink-link::after {
  content: "";
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  border-bottom: 2.5px solid currentColor;
  border-right: 2.5px solid currentColor;
  transform: rotate(45deg) translate(-0.2rem, -0.2rem);
}
.p-first__flow {
  padding-block: 8rem;
  background: var(--white);
}
@media (max-width: 599px) {
  .p-first__flow {
    padding-block: 6rem;
  }
}
.p-first__flow-list {
  margin: 5rem auto;
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media (max-width: 599px) {
  .p-first__flow-list {
    gap: 5rem;
  }
}
.p-first__flow-item {
  position: relative;
  display: grid;
  grid-template-columns: 30rem 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .p-first__flow-item {
    grid-template-columns: 1fr;
  }
}
.p-first__flow-num {
  position: absolute;
  top: -1.6rem;
  left: -1.6rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 4.6rem;
  isolation: isolate;
}
.p-first__flow-num span {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--white);
}
.p-first__flow-num::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--lblue-d);
  border-radius: 52% 48% 46% 54%/62% 66% 38% 44%;
}
.p-first__flow-photo {
  aspect-ratio: 4/3;
  background: #e2e2e2;
  border-radius: 1.6rem;
  overflow: hidden;
}
.p-first__flow-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .p-first__flow-photo {
    max-width: 30rem;
  }
}
@media (max-width: 599px) {
  .p-first__flow-photo {
    max-width: none;
  }
}
.p-first__flow-body ul {
  list-style: disc;
  padding-left: 2rem;
}
.p-first__flow-title {
  color: var(--pink);
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.06em;
  margin-bottom: 1.6rem;
}
.p-first__flow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2.4rem;
}
.p-first__bring {
  display: flex;
  gap: 80px;
  margin-top: 5rem;
  padding: 3.6rem;
  background: var(--beige);
  border-radius: 2rem;
}
@media (max-width: 1024px) {
  .p-first__bring {
    padding: 2.8rem;
  }
}
@media (max-width: 599px) {
  .p-first__bring {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.p-first__bring--onblue {
  background: rgba(255, 255, 255, 0.1);
}
.p-first__bring--onblue .p-first__bring-list {
  background: var(--white);
}
.p-first__bring-label {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  flex: 0 0 auto;
}
@media (max-width: 599px) {
  .p-first__bring-label {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
}
.p-first__bring-en {
  writing-mode: vertical-rl;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  letter-spacing: 0.04em;
  color: #8dd8e9;
}
@media (max-width: 599px) {
  .p-first__bring-en {
    writing-mode: horizontal-tb;
  }
}
.p-first__bring-ja {
  writing-mode: vertical-rl;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--orange);
}
@media (max-width: 599px) {
  .p-first__bring-ja {
    writing-mode: horizontal-tb;
  }
}
.p-first__bring-body {
  flex: 1;
  min-width: 0;
  color: var(--text);
}
.p-first__bring-list {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 3rem;
  background: var(--white);
  border-radius: 1.6rem;
  padding: 2.4rem 3rem;
  max-width: 840px;
}
@media (max-width: 599px) {
  .p-first__bring-list {
    padding: 2rem;
  }
}
.p-first__bring-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  font-size: 1.5rem;
}
.p-first__bring-list li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--pink);
  flex: 0 0 auto;
}
.p-first__notice {
  padding-block: 2rem calc(17.9vw + 2rem);
}
.p-first__notice-card {
  background: var(--pink);
  border-radius: 2rem;
  padding: 4rem;
}
@media (max-width: 599px) {
  .p-first__notice-card {
    padding: 2.4rem;
  }
}
.p-first__notice-title {
  text-align: center;
  color: var(--white);
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
  margin-top: 0;
}
.p-first__notice-body {
  background: var(--white);
  border-radius: 18px;
  padding: 3.2rem 3.6rem;
  display: flex;
  flex-direction: column;
  max-width: 980px;
  margin: auto;
}
@media (max-width: 599px) {
  .p-first__notice-body {
    padding: 2.4rem 2rem;
  }
}
.p-first__notice-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--pink);
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.p-first__notice-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  flex: 0 0 auto;
}
.p-first__second-opinion {
  position: relative;
  background: var(--blue);
  color: var(--white);
  padding-block: 8rem 24rem;
}
.p-first__second-opinion::before {
  content: "";
  position: absolute;
  left: -1%;
  right: 0;
  bottom: 100%;
  transform: translateY(15%);
  width: 102%;
  aspect-ratio: 1499/310;
  background: url("../images/backimg-1.svg") no-repeat top center/100% 100%;
  pointer-events: none;
  z-index: 0;
}
.p-first__second-opinion::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 7rem;
  background: var(--blue);
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 1540px) {
  .p-first__second-opinion {
    padding-block: 8rem 19rem;
  }
}
@media (max-width: 599px) {
  .p-first__second-opinion {
    padding-block: 8rem 8rem;
  }
}
.p-first__second-opinion-intro {
  display: grid;
  grid-template-columns: 42rem 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 5rem;
}
@media (max-width: 1024px) {
  .p-first__second-opinion-intro {
    grid-template-columns: 1fr;
  }
}
.p-first__second-opinion-photo {
  position: relative;
  aspect-ratio: 1;
}
@media (max-width: 1024px) {
  .p-first__second-opinion-photo {
    max-width: 32rem;
    margin-inline: auto;
  }
}
.p-first__second-opinion-photo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.p-first__second-opinion-photo-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-first__second-opinion-subtitle {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
}
.p-first__second-opinion-text .c-text {
  color: var(--white);
}
.p-first__second-opinion-expertise {
  margin-top: 6rem;
  background-color: var(--white);
  background-image: linear-gradient(rgba(23, 115, 163, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 115, 163, 0.12) 1px, transparent 1px);
  background-size: 2.4rem 2.4rem;
  border-radius: 2rem;
  padding: 4rem;
}
.p-first__second-opinion-expertise .c-heading__en {
  font-size: 3.2rem;
}
@media (max-width: 599px) {
  .p-first__second-opinion-expertise {
    padding: 2.4rem;
  }
}
.p-first__expertise-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .p-first__expertise-grid {
    grid-template-columns: 1fr;
  }
}
.p-first__expertise-card {
  background: var(--white);
  color: var(--text);
  border: 6px solid var(--lblue-d);
  border-radius: 10px;
  padding: 3rem;
}
.p-first__expertise-title {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--lblue-d);
  padding-bottom: 1.6rem;
  margin-top: 0;
  margin-bottom: 1.6rem;
  border-bottom: 2px dashed var(--lblue-d);
}
.p-first__expertise-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--lblue-d);
  flex: 0 0 auto;
}
.p-first__expertise-icon img {
  width: 26px;
  height: 26px;
}
.p-first__expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  margin-bottom: 2rem;
}
.p-first__expertise-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.6rem;
}
.p-first__expertise-list li::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--lblue-d);
  flex: 0 0 auto;
}
.p-first__expertise-link {
  height: 46px;
  margin: auto;
  display: flex;
}
.p-first__reservation {
  position: relative;
  padding-block: 5rem 6rem;
  text-align: center;
}
.p-first__reservation::before {
  content: "";
  position: absolute;
  left: -1%;
  right: 0;
  bottom: 100%;
  transform: translateY(15%);
  width: 102%;
  aspect-ratio: 1440/256;
  background: url("../images/backimg-5.svg") no-repeat top center/100% auto;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 1540px) {
  .p-first__reservation::before {
    max-height: 20rem;
  }
}
@media (max-width: 599px) {
  .p-first__reservation {
    padding-block: 6rem 4rem;
  }
}
.p-first__reservation-head {
  position: relative;
  display: inline-block;
}
.p-first__reservation-bird {
  position: absolute;
  top: -1rem;
  right: -4rem;
  width: 4.6rem;
}
@media (max-width: 599px) {
  .p-first__reservation-bird {
    width: 3.6rem;
    right: -2.4rem;
  }
}
.p-first__reservation-text {
  margin-top: 2rem;
}
.p-first__reservation-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3.6rem;
  flex-wrap: wrap;
}
@media (max-width: 599px) {
  .p-first__reservation-actions {
    flex-direction: column;
    align-items: center;
  }
}

.p-staff__footer-fill {
  height: 40px;
  background: var(--blue);
  margin-top: -80px;
}

.p-staff__jump {
  padding-block: 3rem 2rem;
}
.p-staff__jump-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.p-staff__jump-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-width: 22rem;
  padding: 1.7rem 3rem;
  background-color: #66c97f;
  border-radius: 6px;
  box-shadow: inset 0 0 0 2px #66c97f, inset 0 0 0 3px var(--white);
  color: var(--white);
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  transition: filter 0.3s ease, transform 0.3s var(--ease);
}
.p-staff__jump-link:hover {
  filter: brightness(1.05);
  transform: translateY(-0.2rem);
}
.p-staff__jump-link::after {
  content: "";
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  border-bottom: 2.5px solid currentColor;
  border-right: 2.5px solid currentColor;
  transform: rotate(45deg) translate(-0.2rem, -0.2rem);
}
@media (max-width: 599px) {
  .p-staff__jump-link {
    width: 100%;
    max-width: 32rem;
  }
}
.p-staff__facilities {
  padding-block: 6rem 36rem;
}
@media (max-width: 599px) {
  .p-staff__facilities {
    padding-block: 4rem 6rem;
  }
}
.p-staff__facilities-intro {
  max-width: 900px;
  margin: 4rem auto 0;
  text-align: center;
}
@media (max-width: 599px) {
  .p-staff__facilities-intro {
    text-align: start;
  }
}
.p-staff__facilities-intro-block + .p-staff__facilities-intro-block {
  margin-top: 3rem;
}
.p-staff__facilities-highlight {
  color: var(--pink);
  font-weight: 700;
}
.p-staff__facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem 3rem;
  margin-top: 6rem;
}
@media (max-width: 1024px) {
  .p-staff__facilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
  }
}
@media (max-width: 599px) {
  .p-staff__facilities-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.p-staff__facilities-photo img {
  width: 100%;
  aspect-ratio: 746/528;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.6rem;
}
.p-staff__facilities-caption {
  margin-top: 1.6rem;
  text-align: center;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  color: var(--lblue-d);
}
@media (max-width: 599px) {
  .p-staff__facilities-caption {
    font-size: 2rem;
  }
}
.p-staff__staff {
  position: relative;
  background: var(--blue);
  padding-block: 0 16rem;
}
.p-staff__staff::before {
  content: "";
  position: absolute;
  left: -1%;
  right: 0;
  bottom: 100%;
  transform: translateY(15%);
  width: 102%;
  aspect-ratio: 1499/310;
  background: url("../images/backimg-1.svg") no-repeat top center/100% 100%;
  pointer-events: none;
  z-index: 0;
}
.p-staff__staff::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 7rem;
  background: var(--blue);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 599px) {
  .p-staff__staff {
    padding-block: 5rem;
  }
}
.p-staff__staff > .inner > .c-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 6rem;
}
.p-staff__director {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 6rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 8rem;
}
@media (max-width: 1024px) {
  .p-staff__director {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
  }
}
.p-staff__director-photo {
  position: relative;
  flex: 0 0 360px;
}
@media (max-width: 1024px) {
  .p-staff__director-photo {
    flex: 0 0 auto;
    width: 80%;
    max-width: 360px;
  }
}
.p-staff__director-deco-blob {
  position: absolute;
  top: -7.4rem;
  left: -6.2rem;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 599px) {
  .p-staff__director-deco-blob {
    max-width: 60%;
    top: -5.4rem;
    left: -5.2rem;
  }
}
.p-staff__director-deco-dots {
  position: absolute;
  top: -3.2rem;
  left: -1.8rem;
  pointer-events: none;
}
.p-staff__director-photo-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 40px;
}
.p-staff__director-photo-img img {
  width: 100%;
  aspect-ratio: 838/940;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-staff__director-name {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  text-align: center;
  color: var(--white);
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
.p-staff__director-name span {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  margin-left: 0.4rem;
}
.p-staff__director-body {
  flex: 1;
  min-width: 0;
  color: var(--white);
}
@media (max-width: 599px) {
  .p-staff__director-body {
    text-align: start;
  }
}
.p-staff__director-catch {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
  margin-top: 0;
}
@media (max-width: 599px) {
  .p-staff__director-catch {
    font-size: 2rem;
  }
}
.p-staff__director-text .c-text {
  color: var(--white);
}
.p-staff__director-text + .p-staff__director-text {
  margin-top: 2.4rem;
}
.p-staff__director-info {
  margin-top: 3.6rem;
  background: var(--white);
  border-radius: 1.6rem;
  padding: 3rem 3.6rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 599px) {
  .p-staff__director-info {
    padding: 2.4rem;
  }
}
.p-staff__director-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 599px) {
  .p-staff__director-info-row {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}
.p-staff__director-info-cell {
  display: grid;
  gap: 4rem;
  text-align: left;
  grid-template-columns: 1.2fr 3fr;
  align-items: baseline;
}
.p-staff__director-info-label {
  flex: 0 0 auto;
  color: var(--orange);
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
}
.p-staff__director-info-text {
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1.8;
  list-style-type: disc;
}
.p-staff__list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.p-staff__card {
  display: flex;
  align-items: center;
  gap: 5rem;
  background: var(--white);
  border-radius: 2rem;
  padding: 4.5rem;
}
@media (max-width: 1024px) {
  .p-staff__card {
    flex-direction: column;
    padding: 3rem 2.4rem;
    gap: 2.4rem;
  }
}
.p-staff__card--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 1024px) {
  .p-staff__card--reverse {
    flex-direction: column;
  }
}
.p-staff__card-photo {
  flex: 0 0 360px;
}
.p-staff__card-photo img {
  width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  .p-staff__card-photo {
    flex: 0 0 auto;
    width: 60%;
    max-width: 360px;
  }
}
.p-staff__card-body {
  flex: 1;
  min-width: 0;
}
.p-staff__card-heading {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 1024px) {
  .p-staff__card-heading {
    justify-content: center;
  }
}
.p-staff__card-role {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--blue);
}
.p-staff__card-name {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--lblue-d);
}
.p-staff__card-text + .p-staff__card-text {
  margin-top: 2rem;
}

.u-fade {
  opacity: 0;
  transform: translateY(3.6rem);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.u-fade.is-in {
  opacity: 1;
  transform: translateY(0);
}

.u-fade--d1 {
  transition-delay: 0.12s;
}

.u-fade--d2 {
  transition-delay: 0.24s;
}

.u-fade--d3 {
  transition-delay: 0.36s;
}

.u-fade--d4 {
  transition-delay: 0.48s;
}

@keyframes uFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1.2rem);
  }
}
.u-float {
  animation: uFloat 4.5s ease-in-out infinite;
}
.u-float--slow {
  animation-duration: 6.5s;
}

@keyframes uSway {
  0%, 100% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
}
.u-sway {
  transform-origin: 50% 92%;
  animation: uSway 3.8s ease-in-out infinite;
}
.u-sway--d1 {
  animation-delay: -1.2s;
}
.u-sway--d2 {
  animation-delay: -2.4s;
}

@keyframes uPop {
  0% {
    opacity: 0;
    transform: translateY(2.4rem) scale(0.94);
  }
  60% {
    opacity: 1;
    transform: translateY(-0.5rem) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.u-pop {
  opacity: 0;
}
.u-pop.is-act {
  animation: uPop 0.8s var(--ease) forwards;
}

@media (max-width: 599px) {
  .u-br-pc {
    display: none;
  }
}

.u-br-sp {
  display: none;
}
@media (max-width: 599px) {
  .u-br-sp {
    display: inline;
  }
}

.u-vh {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}/*# sourceMappingURL=app.css.map */