@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;
}

/* ==================================================
   Base
   ================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  font-size: 62.5%;
}

img {
  width: 100%;
  height: auto;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Serif", serif;
  color: #383838;
  font-size: clamp(13px, 13px + (16 - 13) * (100vw - 992px) / 928, 16px);
  background: #f2f0f1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

a:hover {
  opacity: 0.6;
}

input,
textarea,
select,
button {
  font-family: "Noto Serif", serif;
}

.sp {
  display: none;
}
@media (width <= 768px) {
  .sp {
    display: block;
  }
}

.tb {
  display: none;
}
@media (width <= 992px) {
  .tb {
    display: block;
  }
}

.pc {
  display: block;
}
@media (width <= 768px) {
  .pc {
    display: none;
  }
}

.l-header {
  height: 98px;
}
@media (width <= 992px) {
  .l-header {
    height: 80px;
  }
}
.l-header .l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: min(1760px, 91.6666666667vw);
  margin: 0 auto;
  padding: 0 min(20px, 1.0416666667vw);
}
@media (width <= 1200px) {
  .l-header .l-header__inner {
    max-width: 98%;
  }
}
@media (width <= 992px) {
  .l-header .l-header__inner {
    padding: 0;
    max-width: 90%;
    margin: 0 auto;
  }
}
.l-header .l-header__logo {
  margin: 0;
  width: min(400px, 20.8333333333vw);
  min-width: 10rem;
  position: relative;
  z-index: 100;
}
@media (width <= 992px) {
  .l-header .l-header__logo {
    width: clamp((171.111px), 28.646vw, (220px));
    min-width: auto;
  }
}
.l-header .l-header__nav {
  height: 100%;
  display: flex;
  align-items: center;
}
@media (width <= 992px) {
  .l-header .l-header__nav {
    display: none;
  }
}
.l-header .l-header__nav > ul {
  display: flex;
  align-items: center;
  gap: min(54px, 2.8125vw);
  padding: 0;
  margin: 0;
  font-size: clamp(14px, 14px + (18 - 14) * (100vw - 992px) / 928, 18px);
}
@media (width <= 992px) {
  .l-header .l-header__nav > ul {
    gap: clamp((24.889px), 4.167vw, (32px));
    font-size: clamp((10.889px), 1.823vw, (14px));
  }
}
.l-header .l-header__nav > ul a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  transition: color 0.3s ease;
}
.l-header .l-header__nav > ul a:hover {
  opacity: 1;
}
.l-header .l-header__nav > ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: #7782b6;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
  will-change: transform;
}
.l-header .l-header__nav > ul a:hover::after, .l-header .l-header__nav > ul a:focus-visible::after {
  transform: scaleX(1);
}
.l-header .l-header__nav > ul a[aria-current=page]::after, .l-header .l-header__nav > ul a.is-active::after {
  transform: scaleX(1);
}
.l-header .l-header__nav .sub-menu {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10%);
  margin-top: 40px;
  transition: all 0.3s ease-in-out;
  background: #f0f0f2;
  z-index: 99;
  top: 7rem;
  padding: min(8px, 0.4166666667vw) min(16px, 0.8333333333vw);
  border-radius: 0 0 8px 8px;
  width: clamp(200px, 200px + (224 - 200) * (100vw - 992px) / 928, 224px);
}
.l-header .l-header__nav .sub-menu li {
  border-bottom: 1px solid #d3d4e0;
  position: relative;
}
.l-header .l-header__nav .sub-menu li:last-child {
  border-bottom: none;
}
.l-header .l-header__nav .sub-menu li::before {
  content: "";
  position: absolute;
  right: 0;
  transform: translateY(-50%);
  top: 50%;
  width: 20px;
  height: 20px;
  aspect-ratio: 1;
  background: url(../img/icon-arrow-circle.svg) no-repeat center center/cover;
}
.l-header .l-header__nav .sub-menu li a {
  padding: 0.4166666667vw;
  display: flex;
  justify-content: space-between;
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 992px) / 928, 16px);
}
.l-header .l-header__nav .sub-menu li a::after {
  content: "";
  display: none;
}
.l-header .l-header__nav .sub-menu li a:hover::after {
  display: none;
}
.l-header .l-header__nav .sub-menu .sub-menu__icon {
  width: min(20px, 1.0416666667vw);
  aspect-ratio: 1;
  flex-shrink: 0;
}
.l-header .l-header__nav .menu-item-has-children.open > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  position: absolute;
}
.l-header .l-header__tel {
  margin-left: min(54px, 2.8125vw);
  background: #ec6d88;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: min(14px, 0.7291666667vw) min(25px, 1.3020833333vw);
  border-radius: 0 0 8px 8px;
  align-self: flex-start;
  gap: min(4px, 0.2083333333vw);
}
@media (width <= 992px) {
  .l-header .l-header__tel {
    padding: clamp((9.333px), 1.563vw, (12px)) clamp((12.444px), 2.083vw, (16px));
    gap: clamp((6.222px), 1.042vw, (8px));
    margin-left: clamp((24.889px), 4.167vw, (32px));
  }
}
.l-header .l-header__tel-up {
  display: flex;
}
.l-header .l-header__tel-num {
  font-size: clamp(20px, 20px + (30 - 20) * (100vw - 992px) / 928, 30px);
  color: #fff;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
@media (width <= 992px) {
  .l-header .l-header__tel-num {
    font-size: clamp((15.556px), 2.604vw, (20px));
  }
}
.l-header .l-header__tel-icon {
  width: clamp(16px, 16px + (24 - 16) * (100vw - 992px) / 928, 24px);
  margin-right: 0.8rem;
  vertical-align: middle;
  margin-top: 2px;
}
@media (width <= 992px) {
  .l-header .l-header__tel-icon {
    width: clamp((12.444px), 2.083vw, (16px));
    margin-right: clamp((6.222px), 1.042vw, (8px));
  }
}
.l-header .l-header__tel-note {
  margin: 0;
  color: #fff;
  font-size: clamp(11px, 11px + (14 - 11) * (100vw - 992px) / 928, 14px);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-left: min(38px, 1.9791666667vw);
}
@media (width <= 992px) {
  .l-header .l-header__tel-note {
    font-size: clamp((9.333px), 1.563vw, (12px));
    margin-left: clamp((12.444px), 2.083vw, (16px));
  }
}
.l-header .l-header__hamburger {
  display: none;
  height: 2rem;
  width: 2rem;
  position: relative;
  z-index: 100;
  cursor: pointer;
}
@media (width <= 992px) {
  .l-header .l-header__hamburger {
    display: block;
    margin-right: clamp((15.556px), 2.604vw, (20px));
  }
}
.l-header .l-header__hamburger .l-header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
}
.l-header .l-header__hamburger span {
  height: 0.25rem;
  width: 100%;
  background: #383838;
  transition: all 0.3s;
  position: absolute;
}
.l-header .l-header__hamburger span:nth-of-type(1) {
  top: 0;
}
.l-header .l-header__hamburger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.l-header .l-header__hamburger span:nth-of-type(3) {
  top: 100%;
  transform: translateY(-100%);
}
.l-header .l-header__hamburger.active span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.l-header .l-header__hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.l-header .l-header__hamburger.active span:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.l-header .l-header__hamb-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #f0f0f2;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
}
.l-header .l-header__hamb-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.l-header .l-header__hamb-menu__nav {
  width: 100%;
  padding: 2rem 2rem;
}
.l-header .l-header__hamb-menu__ul {
  display: flex;
  flex-direction: column;
}
.l-header .l-header__hamb-menu__ul a {
  width: 100%;
}
.l-header .l-header__hamb-menu__ul > li {
  padding: clamp((12.444px), 2.083vw, (16px)) 0;
  display: flex;
  font-size: clamp((18.667px), 3.125vw, (24px));
  border-bottom: 1px solid #d3d4e0;
}
.l-header .l-header__hamb-menu__ul > li .sub-menu {
  display: none;
}
.l-header .l-header__hamb-menu__ul .menu-item-has-children {
  display: block;
}
.l-header .l-header__hamb-menu__ul .menu-item-has-children.open > .sub-menu {
  width: 100%;
  margin-top: clamp((6.222px), 1.042vw, (8px));
  position: static;
  display: block;
}
.l-header .l-header__hamb-menu__ul .menu-item-has-children.open > .sub-menu li {
  border-bottom: 1px solid #d3d4e0;
  position: relative;
}
.l-header .l-header__hamb-menu__ul .menu-item-has-children.open > .sub-menu li::after {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  width: 18px;
  height: 18px;
  aspect-ratio: 1;
  right: 0;
  background: url(../img/icon-arrow-circle.svg) no-repeat center center/cover;
}
.l-header .l-header__hamb-menu__ul .menu-item-has-children.open > .sub-menu li:last-child {
  border-bottom: none;
}
.l-header .l-header__hamb-menu__ul .menu-item-has-children.open > .sub-menu a {
  padding: clamp((6.222px), 1.042vw, (8px)) clamp((12.444px), 2.083vw, (16px));
  justify-content: space-between;
  font-size: clamp((15.556px), 2.604vw, (20px));
  display: flex;
}
.l-header .l-header__hamb-menu__ul .sub-menu__icon {
  width: clamp((15.556px), 2.604vw, (20px));
  aspect-ratio: 1;
  flex-shrink: 0;
}
.l-header .l-header__hamb-tel {
  background: #ec6d88;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: clamp((10.889px), 1.823vw, (14px)) clamp((19.444px), 3.255vw, (25px));
  border-radius: 8px;
  gap: 0.4rem;
  margin: 0 auto;
  margin-top: clamp((37.333px), 6.25vw, (48px));
  max-width: 56rem;
}
.l-header .l-header__hamb-tel-up {
  display: flex;
  gap: clamp((12.444px), 2.083vw, (16px));
  align-items: center;
  justify-content: center;
}
.l-header .l-header__hamb-tel-icon {
  width: clamp((18.667px), 3.125vw, (24px));
  vertical-align: middle;
  margin-top: 2px;
}
.l-header .l-header__hamb-tel-num {
  font-size: clamp((24.889px), 4.167vw, (32px));
  color: #fff;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.l-header .l-header__hamb-tel-low {
  text-align: center;
}
.l-header .l-header__hamb-tel-low p {
  color: #fff;
  font-size: clamp((12.444px), 2.083vw, (16px));
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.l-footer {
  background: #d1d4e3;
  padding: 50px 0 24px 0;
}
@media (width <= 992px) {
  .l-footer {
    padding: clamp((24.889px), 4.167vw, (32px)) 0 0 0;
  }
}
.l-footer .l-footer__inner {
  display: flex;
  max-width: min(1760px, 91.6666666667vw);
  padding: 0 min(20px, 1.0416666667vw);
  margin: 0 auto;
  justify-content: space-between;
}
@media (width <= 992px) {
  .l-footer .l-footer__inner {
    flex-direction: column;
    padding: 0 2rem;
  }
}
.l-footer .l-footer__logo {
  width: min(400px, 20.8333333333vw);
  display: block;
}
@media (width <= 992px) {
  .l-footer .l-footer__logo {
    width: clamp((233.333px), 39.063vw, (300px));
  }
}
.l-footer .l-footer__info {
  margin-top: min(26px, 1.3541666667vw);
}
@media (width <= 992px) {
  .l-footer .l-footer__info {
    margin-top: clamp((18.667px), 3.125vw, (24px));
  }
}
.l-footer .l-footer__info p {
  margin: 0;
}
.l-footer .l-footer__info p span {
  color: #7782b6;
  margin-right: 0.4rem;
}

.l-footer__nav .menu-item-has-children > a {
  pointer-events: none;
}

.l-footer .l-footer__nav > ul {
  display: flex;
  flex-wrap: wrap;
  gap: min(48px, 2.5vw);
  align-items: flex-start;
}
@media (width <= 992px) {
  .l-footer .l-footer__nav > ul {
    gap: clamp((18.667px), 3.125vw, (24px));
    margin-top: clamp((18.667px), 3.125vw, (24px));
    flex-direction: column;
  }
}
.l-footer .l-footer__nav > ul > li {
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 992px) / 928, 16px);
}
@media (width <= 992px) {
  .l-footer .l-footer__nav > ul > li {
    font-size: clamp((12.444px), 2.083vw, (16px));
  }
}
.l-footer .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.4rem;
  margin-left: 0.5em;
  font-size: clamp(10px, 10px + (12 - 10) * (100vw - 992px) / 928, 12px);
}
@media (width <= 992px) {
  .l-footer .sub-menu {
    font-size: clamp((10.889px), 1.823vw, (14px));
  }
}
.l-footer .l-footer__copy {
  margin-top: 6rem;
}
@media (width <= 992px) {
  .l-footer .l-footer__copy {
    margin-top: clamp((46.667px), 7.813vw, (60px));
  }
}
.l-footer .l-footer__copy p {
  white-space: nowrap;
  margin: 0;
  text-align: center;
  color: #7782b6;
  font-size: 1.2rem;
  letter-spacing: 1.2px;
}
@media (width <= 992px) {
  .l-footer .l-footer__copy p {
    font-size: clamp((7.778px), 1.302vw, (10px));
  }
}

.l-section {
  padding: min(68px, 3.5416666667vw) 0;
}
@media (width <= 992px) {
  .l-section {
    padding: clamp((38.889px), 6.51vw, (50px)) 0;
  }
}
.l-section--page {
  padding: 60px 0;
}
@media (width <= 992px) {
  .l-section--page {
    padding: 32px 0;
  }
}

.l-section__inner {
  max-width: min(1760px, 91.6666666667vw);
  padding: 0 min(20px, 1.0416666667vw);
  margin: 0 auto;
}
@media (width <= 992px) {
  .l-section__inner {
    max-width: none;
    padding: 0 2rem;
  }
}
.l-section__inner--2col {
  display: flex;
  gap: min(32px, 1.6666666667vw);
}
@media (width <= 1200px) {
  .l-section__inner--2col {
    flex-direction: column;
  }
}
.l-section__inner--2col .l-section__headline {
  flex: 0 0 23%;
}
@media (width <= 992px) {
  .l-section__inner--2col .l-section__headline {
    flex: auto;
  }
}
.l-section__inner--2col .l-section__content {
  flex: 1;
  margin-top: 0;
}
@media (width <= 1200px) {
  .l-section__inner--2col .l-section__content {
    flex: auto;
    margin-top: clamp((31.111px), 5.208vw, (40px));
  }
}
.l-section__inner--sm {
  max-width: 1040px;
  padding: 0 20px;
}

.l-section__content {
  margin-top: min(60px, 3.125vw);
}
@media (width <= 992px) {
  .l-section__content {
    margin-top: clamp((31.111px), 5.208vw, (40px));
  }
}

/**
 * ------------------------------------------------
 * FLOCSS Component - Grid & Columns
 * ------------------------------------------------
 *
 * 【使用例】
 *  - .c-grid      => 自動グリッド（等間隔カラム）
 *  - .c-grid-3    => 3カラムのグリッド
 *  - .c-grid-md-2 => 画面幅900px(md)以上で2カラムグリッド
 *  - .c-col-4     => 親がflex/gridのとき4分割（4/12）
 *
 * ※ 親要素に `.c-grid` を指定し、子要素に `.c-col` 系を指定すると柔軟なレイアウトが可能
 */
/* Grid Layout */
.c-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.c-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.c-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.c-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.c-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.c-grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

@media (min-width: 768px) {
  .c-grid-sm-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid-sm-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid-sm-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid-sm-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid-sm-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 992px) {
  .c-grid-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid-md-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid-md-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid-md-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid-md-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 1200px) {
  .c-grid-lg-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid-lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid-lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid-lg-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid-lg-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 599px) {
  .c-grid-max-sm-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-grid-max-sm-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid-max-sm-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid-max-sm-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid-max-sm-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid-max-sm-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 992px) {
  .c-grid-max-md-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-grid-max-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid-max-md-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid-max-md-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid-max-md-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid-max-md-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 1199px) {
  .c-grid-max-lg-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-grid-max-lg-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid-max-lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid-max-lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid-max-lg-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid-max-lg-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
/* Column (c-col) */
.c-col {
  width: 100%;
}

.c-col-1 {
  width: calc(1 / 12 * 100%);
}

.c-col-2 {
  width: calc(2 / 12 * 100%);
}

.c-col-3 {
  width: calc(3 / 12 * 100%);
}

.c-col-4 {
  width: calc(4 / 12 * 100%);
}

.c-col-5 {
  width: calc(5 / 12 * 100%);
}

.c-col-6 {
  width: calc(6 / 12 * 100%);
}

.c-col-7 {
  width: calc(7 / 12 * 100%);
}

.c-col-8 {
  width: calc(8 / 12 * 100%);
}

.c-col-9 {
  width: calc(9 / 12 * 100%);
}

.c-col-10 {
  width: calc(10 / 12 * 100%);
}

.c-col-11 {
  width: calc(11 / 12 * 100%);
}

.c-col-12 {
  width: calc(12 / 12 * 100%);
}

@media (min-width: 600px) {
  .c-col-sm-1 {
    width: calc(1 / 12 * 100%);
  }
  .c-col-sm-2 {
    width: calc(2 / 12 * 100%);
  }
  .c-col-sm-3 {
    width: calc(3 / 12 * 100%);
  }
  .c-col-sm-4 {
    width: calc(4 / 12 * 100%);
  }
  .c-col-sm-5 {
    width: calc(5 / 12 * 100%);
  }
  .c-col-sm-6 {
    width: calc(6 / 12 * 100%);
  }
  .c-col-sm-7 {
    width: calc(7 / 12 * 100%);
  }
  .c-col-sm-8 {
    width: calc(8 / 12 * 100%);
  }
  .c-col-sm-9 {
    width: calc(9 / 12 * 100%);
  }
  .c-col-sm-10 {
    width: calc(10 / 12 * 100%);
  }
  .c-col-sm-11 {
    width: calc(11 / 12 * 100%);
  }
  .c-col-sm-12 {
    width: calc(12 / 12 * 100%);
  }
}
@media (min-width: 900px) {
  .c-col-md-1 {
    width: calc(1 / 12 * 100%);
  }
  .c-col-md-2 {
    width: calc(2 / 12 * 100%);
  }
  .c-col-md-3 {
    width: calc(3 / 12 * 100%);
  }
  .c-col-md-4 {
    width: calc(4 / 12 * 100%);
  }
  .c-col-md-5 {
    width: calc(5 / 12 * 100%);
  }
  .c-col-md-6 {
    width: calc(6 / 12 * 100%);
  }
  .c-col-md-7 {
    width: calc(7 / 12 * 100%);
  }
  .c-col-md-8 {
    width: calc(8 / 12 * 100%);
  }
  .c-col-md-9 {
    width: calc(9 / 12 * 100%);
  }
  .c-col-md-10 {
    width: calc(10 / 12 * 100%);
  }
  .c-col-md-11 {
    width: calc(11 / 12 * 100%);
  }
  .c-col-md-12 {
    width: calc(12 / 12 * 100%);
  }
}
@media (min-width: 1200px) {
  .c-col-lg-1 {
    width: calc(1 / 12 * 100%);
  }
  .c-col-lg-2 {
    width: calc(2 / 12 * 100%);
  }
  .c-col-lg-3 {
    width: calc(3 / 12 * 100%);
  }
  .c-col-lg-4 {
    width: calc(4 / 12 * 100%);
  }
  .c-col-lg-5 {
    width: calc(5 / 12 * 100%);
  }
  .c-col-lg-6 {
    width: calc(6 / 12 * 100%);
  }
  .c-col-lg-7 {
    width: calc(7 / 12 * 100%);
  }
  .c-col-lg-8 {
    width: calc(8 / 12 * 100%);
  }
  .c-col-lg-9 {
    width: calc(9 / 12 * 100%);
  }
  .c-col-lg-10 {
    width: calc(10 / 12 * 100%);
  }
  .c-col-lg-11 {
    width: calc(11 / 12 * 100%);
  }
  .c-col-lg-12 {
    width: calc(12 / 12 * 100%);
  }
}
.c-col-flex1 {
  flex: 1;
}

.c-col-flex50 {
  flex: 0 0 50%;
}

.c-col-flex33 {
  flex: 0 0 33.3333%;
}

.c-col-flex25 {
  flex: 0 0 25%;
}

@media (width <= 992px) {
  .c-col-flex-lg-1 {
    flex: 1;
  }
}

@media (width <= 768px) {
  .c-col-md-flex1 {
    flex: 1;
  }
}

@media (width <= 992px) {
  .c-flex-lg-col {
    flex-direction: column;
  }
}

@media (width <= 768px) {
  .c-flex-md-col {
    flex-direction: column;
  }
}

/* Flexbox Grid */
.c-flex {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.c-flex-1 {
  flex: 1 1 calc(100% / 1 - 1rem);
}

.c-flex-2 {
  flex: 1 1 calc(100% / 2 - 1rem);
}

.c-flex-3 {
  flex: 1 1 calc(100% / 3 - 1rem);
}

.c-flex-4 {
  flex: 1 1 calc(100% / 4 - 1rem);
}

.c-flex-5 {
  flex: 1 1 calc(100% / 5 - 1rem);
}

.c-flex-6 {
  flex: 1 1 calc(100% / 6 - 1rem);
}

@media (min-width: 600px) {
  .c-flex-sm-1 {
    flex: 1 1 calc(100% / 1 - 1rem);
  }
  .c-flex-sm-2 {
    flex: 1 1 calc(100% / 2 - 1rem);
  }
  .c-flex-sm-3 {
    flex: 1 1 calc(100% / 3 - 1rem);
  }
  .c-flex-sm-4 {
    flex: 1 1 calc(100% / 4 - 1rem);
  }
  .c-flex-sm-5 {
    flex: 1 1 calc(100% / 5 - 1rem);
  }
  .c-flex-sm-6 {
    flex: 1 1 calc(100% / 6 - 1rem);
  }
}
@media (min-width: 900px) {
  .c-flex-md-1 {
    flex: 1 1 calc(100% / 1 - 1rem);
  }
  .c-flex-md-2 {
    flex: 1 1 calc(100% / 2 - 1rem);
  }
  .c-flex-md-3 {
    flex: 1 1 calc(100% / 3 - 1rem);
  }
  .c-flex-md-4 {
    flex: 1 1 calc(100% / 4 - 1rem);
  }
  .c-flex-md-5 {
    flex: 1 1 calc(100% / 5 - 1rem);
  }
  .c-flex-md-6 {
    flex: 1 1 calc(100% / 6 - 1rem);
  }
}
@media (min-width: 1200px) {
  .c-flex-lg-1 {
    flex: 1 1 calc(100% / 1 - 1rem);
  }
  .c-flex-lg-2 {
    flex: 1 1 calc(100% / 2 - 1rem);
  }
  .c-flex-lg-3 {
    flex: 1 1 calc(100% / 3 - 1rem);
  }
  .c-flex-lg-4 {
    flex: 1 1 calc(100% / 4 - 1rem);
  }
  .c-flex-lg-5 {
    flex: 1 1 calc(100% / 5 - 1rem);
  }
  .c-flex-lg-6 {
    flex: 1 1 calc(100% / 6 - 1rem);
  }
}
.c-col-fill {
  flex: 1 1 auto;
}

/* Align (Flex Alignment) */
.c-align-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-align-start {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.c-align-end {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.c-align-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-align-around {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.c-align-evenly {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

/* Gap Utilities */
.c-gap-s {
  gap: 0.5rem;
}

.c-gap-m {
  gap: 1rem;
}

.c-gap-l {
  gap: 2rem;
}

@media (min-width: 600px) {
  .c-gap-sm-s {
    gap: 0.5rem;
  }
  .c-gap-sm-m {
    gap: 1rem;
  }
  .c-gap-sm-l {
    gap: 2rem;
  }
}
@media (min-width: 900px) {
  .c-gap-md-s {
    gap: 0.5rem;
  }
  .c-gap-md-m {
    gap: 1rem;
  }
  .c-gap-md-l {
    gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .c-gap-lg-s {
    gap: 0.5rem;
  }
  .c-gap-lg-m {
    gap: 1rem;
  }
  .c-gap-lg-l {
    gap: 2rem;
  }
}
/* Typography */
.c-lh-tight {
  line-height: 1.2;
}

.c-lh-normal {
  line-height: 1.5;
}

.c-lh-relaxed {
  line-height: 1.75;
}

@media (min-width: 600px) {
  .c-lh-sm-tight {
    line-height: 1.2;
  }
  .c-lh-sm-normal {
    line-height: 1.5;
  }
  .c-lh-sm-relaxed {
    line-height: 1.75;
  }
}
@media (min-width: 900px) {
  .c-lh-md-tight {
    line-height: 1.2;
  }
  .c-lh-md-normal {
    line-height: 1.5;
  }
  .c-lh-md-relaxed {
    line-height: 1.75;
  }
}
@media (min-width: 1200px) {
  .c-lh-lg-tight {
    line-height: 1.2;
  }
  .c-lh-lg-normal {
    line-height: 1.5;
  }
  .c-lh-lg-relaxed {
    line-height: 1.75;
  }
}
.c-text-left {
  text-align: left;
}

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

.c-text-right {
  text-align: right;
}

@media (min-width: 600px) {
  .c-text-sm-left {
    text-align: left;
  }
  .c-text-sm-center {
    text-align: center;
  }
  .c-text-sm-right {
    text-align: right;
  }
}
@media (min-width: 900px) {
  .c-text-md-left {
    text-align: left;
  }
  .c-text-md-center {
    text-align: center;
  }
  .c-text-md-right {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .c-text-lg-left {
    text-align: left;
  }
  .c-text-lg-center {
    text-align: center;
  }
  .c-text-lg-right {
    text-align: right;
  }
}
.c-cards {
  gap: min(65px, 3.3854166667vw);
}
@media (width <= 992px) {
  .c-cards {
    gap: clamp((37.333px), 6.25vw, (48px));
  }
}

.c-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: min(16px, 0.8333333333vw);
}
.c-card:hover {
  opacity: 1;
}
.c-card:hover .c-card__img img {
  transform: scale(1.1);
  transition: all 1s ease;
}
.c-card:hover .c-card__arrow svg {
  rotate: 90deg;
}

.c-card__img {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}
.c-card__img img {
  width: 100%;
  transition: transform 2s cubic-bezier(0.25, 1, 0.5, 1) !important;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-card__arrow {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: min(72px, 3.75vw);
  height: min(72px, 3.75vw);
  background: #f2f0f1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px 0px 0px;
}
@media (width <= 992px) {
  .c-card__arrow {
    width: clamp((37.333px), 6.25vw, (48px));
    height: clamp((37.333px), 6.25vw, (48px));
  }
}
.c-card__arrow svg {
  width: min(32px, 1.6666666667vw);
  transition: all 0.3s ease;
}
@media (width <= 992px) {
  .c-card__arrow svg {
    width: clamp((18.667px), 3.125vw, (24px));
  }
}

.c-title {
  color: #7782b6;
  font-size: min(26px, 1.3541666667vw);
  font-weight: 400;
  margin: 0;
  line-height: 1;
}
@media (width <= 992px) {
  .c-title {
    font-size: clamp((14px), 2.344vw, (18px));
  }
}

.c-title2 {
  color: #7782b6;
  font-size: clamp(20px, 20px + (32 - 20) * (100vw - 992px) / 928, 32px);
  font-weight: 400;
  margin: 0;
  padding-left: 1em;
  position: relative;
  line-height: 2.5em;
}
@media (width <= 992px) {
  .c-title2 {
    font-size: clamp((18.667px), 3.125vw, (24px));
    line-height: 2em;
  }
}
.c-title2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.25em;
  height: 100%;
  background: #7782b6;
}

.c-entitle {
  margin: 0;
  color: #5a4d66;
  font-family: "Linden Hill", serif;
  font-size: min(80px, 4.1666666667vw);
  font-weight: 400;
  line-height: 1;
}
@media (width <= 992px) {
  .c-entitle {
    font-size: clamp((37.333px), 6.25vw, (48px));
  }
}

.c-card__body-title {
  font-size: min(32px, 1.6666666667vw);
  margin: 0;
  font-weight: 400;
}
@media (width <= 992px) {
  .c-card__body-title {
    font-size: clamp((18.667px), 3.125vw, (24px));
  }
}

.c-card__body-entitle {
  font-size: min(24px, 1.25vw);
  font-family: "Linden Hill", serif;
  color: #df9fac;
  margin: 0;
}
@media (width <= 992px) {
  .c-card__body-entitle {
    font-size: clamp((12.444px), 2.083vw, (16px));
  }
}

.c-card__desc {
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 992px) / 928, 16px);
  font-weight: 400;
  line-height: 180%;
  margin: min(6px, 0.3125vw) 0 0 0;
}
@media (width <= 992px) {
  .c-card__desc {
    font-size: clamp((10.889px), 1.823vw, (14px));
    margin: clamp((4.667px), 0.781vw, (6px)) 0 0 0;
  }
}

.c-subtitle {
  color: #df9fac;
  font-family: "Linden Hill", serif;
  font-size: min(24px, 1.25vw);
}
@media (width <= 992px) {
  .c-subtitle {
    font-size: clamp((12.444px), 2.083vw, (16px));
  }
}

.c-hidden {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.c-marker {
  background-image: linear-gradient(#fffd3e, #fffd3e);
  background-position: 0 92%;
  background-repeat: no-repeat;
  background-size: 100% 0.4em;
  display: inline;
  padding-bottom: 0.2em;
}

.c-decorator:after,
.c-decorator:before {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(-90deg, currentColor 50%, rgba(0, 0, 0, 0) 0);
  background-size: 6px 6px;
  content: "";
  display: inline-block;
  height: 2px;
  width: 1.2em;
}

.c-decorator::after {
  transform: translate(0.2em, -0.3em) rotate(-45deg);
}

.c-decorator::before {
  transform: translate(-0.2em, -0.3em) rotate(45deg);
}

.c-baloon {
  text-align: center;
  color: #ffffff;
  background-color: #858585;
  border-radius: 2rem;
  padding: 1.2rem 0;
  margin-bottom: 3.8rem;
  position: relative;
}

.c-baloon::after {
  content: "";
  width: 2.8rem;
  height: 3.2rem;
  background-color: #858585;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.c-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.c-modal .c-modal__content {
  background: #fff;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 4px;
  padding: 1rem;
}

.c-list {
  margin: 0;
  padding: 0;
  list-style-position: outside;
}

.c-list-unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-list-inline {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-list-inline li {
  display: inline-block;
  margin-right: 0.5em;
}
.c-list-inline li:last-child {
  margin-right: 0;
}

.c-list-divider {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-list-divider li {
  border-bottom: 1px solid #ddd;
  padding: 0.5em 0;
}
.c-list-divider li:last-child {
  border-bottom: none;
}

/**
 * Form Elements (フォーム要素)
 * テキスト系入力、セレクトボックス
 */
.c-input,
.c-textarea,
.c-select {
  display: block;
  width: 100%;
  padding: 0.5em;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.c-input:focus,
.c-textarea:focus,
.c-select:focus {
  outline: none;
  border-color: #66aaff;
  box-shadow: 0 0 0 2px rgba(102, 170, 255, 0.3);
}

.c-textarea {
  min-height: 4em;
  resize: vertical;
}

/**
 * Label (ラベル)
 * フォーム部品のラベルを統一スタイルに
 */
.c-label {
  display: inline-block;
  margin-bottom: 0.25em;
  font-weight: 600;
  color: #333;
}

/**
 * Custom Checkbox / Radio (チェックボックス・ラジオ)
 * .c-checkbox や .c-radio コンテナ内で input を非表示にし、.c-label の疑似要素で見た目を作る
 */
.c-checkbox,
.c-radio {
  position: relative;
  margin-bottom: 0.5em;
}
.c-checkbox input[type=checkbox],
.c-checkbox input[type=radio],
.c-radio input[type=checkbox],
.c-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.c-checkbox .c-label::before,
.c-radio .c-label::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 2px solid #333;
  background: #fff;
  vertical-align: middle;
  margin-right: 0.5em;
  border-radius: 3px;
  box-sizing: border-box;
}
.c-checkbox.c-radio .c-label::before,
.c-radio.c-radio .c-label::before {
  border-radius: 50%;
}
.c-checkbox input:checked + .c-label::before,
.c-radio input:checked + .c-label::before {
  background-color: #333;
}

.c-breadcrumb__list {
  display: flex;
  list-style: none;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
}
.c-breadcrumb__list li {
  position: relative;
  margin-right: 8px;
}
.c-breadcrumb__list li + li::before {
  font-family: "FontAwesome";
  content: "\f054";
  margin-right: 8px;
  color: #383838;
}
.c-breadcrumb__list li a {
  color: #34427e;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.c-breadcrumb-wrap {
  width: 95%;
  padding: 0 8px;
  margin: 0 auto;
}

.c-fbox {
  display: flex;
  align-items: center;
  padding: min(50px, 2.6041666667vw) 0;
  height: 100%;
  border-radius: 16px;
  width: 100%;
  background: #fff;
}
@media (width <= 992px) {
  .c-fbox {
    flex-direction: column;
    gap: clamp((31.111px), 5.208vw, (40px));
    padding: clamp((24.889px), 4.167vw, (32px)) clamp((18.667px), 3.125vw, (24px)) clamp((31.111px), 5.208vw, (40px));
  }
}
.c-fbox .c-fbox__left {
  flex: 0 0 42.5%;
  display: flex;
  align-items: center;
  padding: 0 min(80px, 4.1666666667vw) 0 min(128px, 6.6666666667vw);
}
@media (width <= 992px) {
  .c-fbox .c-fbox__left {
    padding: 0;
  }
}
.c-fbox .c-fbox__right {
  display: flex;
  flex: 1;
  padding: 0 min(128px, 6.6666666667vw) 0 min(80px, 4.1666666667vw);
  gap: min(80px, 4.1666666667vw);
  align-items: center;
  border-left: 1px solid;
}
@media (width <= 992px) {
  .c-fbox .c-fbox__right {
    border: none;
    margin: 0 auto;
    padding: 0;
    gap: clamp((31.111px), 5.208vw, (40px));
  }
}
@media (width <= 768px) {
  .c-fbox .c-fbox__right {
    flex-direction: column-reverse;
  }
}
.c-fbox .c-fbox__title {
  margin: 0;
  font-weight: 400;
  font-size: min(36px, 1.875vw);
}
@media (width <= 992px) {
  .c-fbox .c-fbox__title {
    font-size: clamp((18.667px), 3.125vw, (24px));
  }
}
.c-fbox .c-fbox__desc {
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 992px) / 928, 16px);
  line-height: 180%;
  flex: 0 0 48%;
}
@media (width <= 1400px) {
  .c-fbox .c-fbox__desc {
    flex: 0 0 55%;
  }
}
@media (width <= 992px) {
  .c-fbox .c-fbox__desc {
    font-size: clamp((12.444px), 2.083vw, (16px));
    line-height: 1.6;
  }
}
.c-fbox .c-fbox__img {
  flex: 1;
}
@media (width <= 992px) {
  .c-fbox .c-fbox__img {
    width: 100%;
    max-width: 60rem;
    margin: 0 auto;
  }
}

.c-infoboxes {
  display: flex;
  flex-direction: column;
  gap: min(180px, 9.375vw);
  margin-top: min(80px, 4.1666666667vw);
}
@media (width <= 992px) {
  .c-infoboxes {
    gap: clamp((62.222px), 10.417vw, (80px));
    margin-top: clamp((62.222px), 10.417vw, (80px));
  }
}

.c-infobox {
  display: flex;
  justify-content: space-between;
  gap: min(94px, 4.8958333333vw);
}
@media (width <= 992px) {
  .c-infobox {
    flex-direction: column;
    gap: clamp((37.333px), 6.25vw, (48px));
  }
}

.c-infobox__left {
  flex: 0 0 33%;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 16px + (24 - 16) * (100vw - 992px) / 928, 24px);
}
@media (width <= 992px) {
  .c-infobox__left {
    flex: none;
    gap: clamp((18.667px), 3.125vw, (24px));
  }
}

.c-infobox__logo {
  width: min(480px, 25vw);
}
@media (width <= 992px) {
  .c-infobox__logo {
    width: clamp((248.889px), 41.667vw, (320px));
  }
}

.c-infobox__types {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: min(24px, 1.25vw);
}
@media (width <= 992px) {
  .c-infobox__types {
    gap: clamp((12.444px), 2.083vw, (16px));
  }
}

.c-infobox__type {
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 992px) / 928, 16px);
  line-height: min(24px, 1.25vw);
  position: relative;
  padding-left: min(32px, 1.6666666667vw);
}
@media (width <= 992px) {
  .c-infobox__type {
    font-size: clamp((12.444px), 2.083vw, (16px));
    padding-left: clamp((18.667px), 3.125vw, (24px));
  }
}
.c-infobox__type::before {
  content: "";
  position: absolute;
  left: 0;
  transform: translateY(-50%);
  top: 50%;
  width: min(22px, 1.1458333333vw);
  height: min(22px, 1.1458333333vw);
  aspect-ratio: 1;
  background: #e0d3d3;
  border-radius: 50%;
}
@media (width <= 992px) {
  .c-infobox__type::before {
    width: clamp((12.444px), 2.083vw, (16px));
    height: clamp((12.444px), 2.083vw, (16px));
  }
}

.c-infobox__btns {
  margin-top: auto;
  display: flex;
  gap: min(20px, 1.0416666667vw);
}
@media (width <= 1200px) {
  .c-infobox__btns {
    flex-direction: column;
  }
}
@media (width <= 992px) {
  .c-infobox__btns {
    gap: clamp((12.444px), 2.083vw, (16px));
    flex-direction: column;
  }
}
.c-infobox__btns .c-infobox__btn {
  width: 100%;
}

.c-infobox__tags {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
@media (width <= 992px) {
  .c-infobox__tags {
    gap: clamp((6.222px), 1.042vw, (8px));
  }
}

.c-infobox__tag {
  border-radius: 15px;
  background: #7782b6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 min(28px, 1.4583333333vw);
  height: min(28px, 1.4583333333vw);
  line-height: 1;
  color: #fff;
  font-size: clamp(11px, 11px + (15 - 11) * (100vw - 992px) / 928, 15px);
}
@media (width <= 992px) {
  .c-infobox__tag {
    font-size: clamp((10.889px), 1.823vw, (14px));
    height: clamp((18.667px), 3.125vw, (24px));
    padding: 0 clamp((12.444px), 2.083vw, (16px));
  }
}

.c-infobox__details {
  display: flex;
  margin: 0;
  flex-direction: column;
  gap: 1.2rem;
}
@media (width <= 992px) {
  .c-infobox__details {
    gap: clamp((6.222px), 1.042vw, (8px));
  }
}

.c-infobox__detail {
  display: flex;
  gap: min(8px, 0.4166666667vw);
}
@media (width <= 992px) {
  .c-infobox__detail {
    gap: clamp((12.444px), 2.083vw, (16px));
  }
}
.c-infobox__detail dt,
.c-infobox__detail dd {
  margin: 0;
}
.c-infobox__detail dt {
  flex: 0 0 7.2rem;
  color: #7782b6;
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 992px) / 928, 16px);
  font-weight: 600;
  line-height: min(24px, 1.25vw);
}
@media (width <= 992px) {
  .c-infobox__detail dt {
    flex: 0 0 20%;
    font-size: clamp((11.667px), 1.953vw, (15px));
    line-height: clamp((18.667px), 3.125vw, (24px));
  }
}
.c-infobox__detail dd {
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 992px) / 928, 16px);
}
@media (width <= 992px) {
  .c-infobox__detail dd {
    font-size: clamp((11.667px), 1.953vw, (15px));
    line-height: clamp((18.667px), 3.125vw, (24px));
  }
}

.c-infobox__map {
  margin-top: min(8px, 0.4166666667vw);
  margin-left: 12%;
}
@media (width <= 992px) {
  .c-infobox__map {
    margin-left: 0;
    margin-top: clamp((6.222px), 1.042vw, (8px));
    font-size: clamp((12.444px), 2.083vw, (16px));
  }
}

.c-infobox__right {
  flex: 1;
  border-radius: 32px;
  background: #fff;
  padding: min(100px, 5.2083333333vw);
  position: relative;
  display: flex;
  gap: min(50px, 2.6041666667vw);
  min-height: 31.25vw;
}
@media (width <= 992px) {
  .c-infobox__right {
    padding: clamp((31.111px), 5.208vw, (40px)) clamp((18.667px), 3.125vw, (24px));
    min-height: auto;
    flex-direction: column;
    gap: clamp((31.111px), 5.208vw, (40px));
    border-radius: 16px;
  }
}

.c-infobox__bgtext {
  position: absolute;
  transform: translateY(-50%);
  top: -6.25vw;
  right: 0;
  color: #e0d3d3;
  text-align: right;
  font-family: "Linden Hill", serif;
  font-size: min(100px, 5.2083333333vw);
  font-style: normal;
  font-weight: 400;
  line-height: min(77px, 4.0104166667vw);
}
@media (width <= 992px) {
  .c-infobox__bgtext {
    font-size: clamp((31.111px), 5.208vw, (40px));
  }
}

.c-infobox__img {
  flex-shrink: 0;
  flex: 0 0 min(280px, 14.5833333333vw);
}
@media (width <= 992px) {
  .c-infobox__img {
    flex: none;
    width: 100%;
    max-width: 52rem;
    margin: 0 auto;
    height: auto;
    overflow: hidden;
  }
  .c-infobox__img img {
    height: 100%;
    -o-object-position: bottom;
       object-position: bottom;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.c-infobox__desc {
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 992px) / 928, 16px);
  font-weight: 400;
  line-height: 160%;
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (width <= 992px) {
  .c-infobox__desc {
    font-size: clamp((12.444px), 2.083vw, (16px));
  }
}

.c-infobox__text {
  margin-bottom: min(16px, 0.8333333333vw);
}
@media (width <= 992px) {
  .c-infobox__text {
    margin-bottom: clamp((31.111px), 5.208vw, (40px));
  }
}

.c-infobox__btn {
  margin-top: auto;
}
.c-infobox__btn .c-btn--pink {
  height: min(62px, 3.2291666667vw);
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 992px) / 928, 16px);
}
@media (width <= 992px) {
  .c-infobox__btn .c-btn--pink {
    height: clamp((43.556px), 7.292vw, (56px));
    font-size: clamp((12.444px), 2.083vw, (16px));
  }
}

.c-table {
  border-collapse: collapse;
  width: 100%;
  margin: min(16px, 0.8333333333vw) 0;
}
@media (width <= 992px) {
  .c-table {
    margin-top: clamp((18.667px), 3.125vw, (24px));
  }
}
.c-table tr {
  border-bottom: 1px solid #e0d3d3;
}
.c-table th {
  padding: min(24px, 1.25vw) min(8px, 0.4166666667vw);
  color: #ec6d88;
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 992px) / 928, 16px);
  font-weight: 600;
  line-height: min(24px, 1.25vw);
}
@media (width <= 992px) {
  .c-table th {
    font-size: clamp((12.444px), 2.083vw, (16px));
    line-height: clamp((18.667px), 3.125vw, (24px));
    width: 30%;
    padding: clamp((12.444px), 2.083vw, (16px)) clamp((6.222px), 1.042vw, (8px));
  }
}
.c-table td {
  padding: min(24px, 1.25vw) min(8px, 0.4166666667vw);
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 992px) / 928, 16px);
  line-height: min(24px, 1.25vw);
}
@media (width <= 992px) {
  .c-table td {
    font-size: clamp((12.444px), 2.083vw, (16px));
    line-height: clamp((18.667px), 3.125vw, (24px));
    padding: clamp((12.444px), 2.083vw, (16px)) clamp((6.222px), 1.042vw, (8px));
  }
}

.c-form {
  margin: min(60px, 3.125vw) 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: min(32px, 1.6666666667vw);
}
.c-form .c-form__group {
  display: flex;
  gap: min(16px, 0.8333333333vw);
  width: 100%;
}
@media (width <= 992px) {
  .c-form .c-form__group {
    flex-direction: column;
    gap: clamp((12.444px), 2.083vw, (16px));
  }
}
.c-form .c-form__label {
  flex: 0 0 20%;
  color: #333;
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 992px) / 928, 16px);
  line-height: 180%;
  letter-spacing: 1.6px;
  display: inline-flex;
  justify-content: space-between;
}
@media (width <= 1400px) {
  .c-form .c-form__label {
    flex: 0 0 25%;
  }
}
@media (width <= 992px) {
  .c-form .c-form__label {
    flex: auto;
    font-size: clamp((12.444px), 2.083vw, (16px));
    justify-content: left;
    gap: clamp((6.222px), 1.042vw, (8px));
  }
}
.c-form .c-form__required {
  border-radius: 2px;
  border: 1px solid #ec6d88;
  background: #fff;
  display: inline-flex;
  padding: 0px 8px;
  justify-content: center;
  align-items: center;
  color: #ec6d88;
  leading-trim: both;
  text-edge: cap;
  font-size: clamp(10px, 10px + (14 - 10) * (100vw - 992px) / 928, 14px);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  height: min(24px, 1.25vw);
}
@media (width <= 992px) {
  .c-form .c-form__required {
    font-size: clamp((10.889px), 1.823vw, (14px));
    height: clamp((18.667px), 3.125vw, (24px));
    margin-top: clamp((1.556px), 0.26vw, (2px));
  }
}
.c-form input {
  width: 100%;
}
.c-form textarea {
  width: 100%;
}
.c-form .c-form__input {
  border-radius: 5px;
  border: 1px solid #e0d3d3;
  background: #fff;
  padding: 1.2rem 1.6rem;
}
.c-form .c-form__input--30 {
  max-width: 30rem;
}
.c-form .c-form__input--60 {
  max-width: 60rem;
}

.c-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  width: 100%;
  height: 100vh;
}

.c-box {
  background: #fff;
  border-radius: 32px;
  padding: min(32px, 1.6666666667vw) min(40px, 2.0833333333vw);
}
@media (width <= 1200px) {
  .c-box {
    border-radius: 16px;
  }
}
@media (width <= 992px) {
  .c-box {
    padding: clamp((24.889px), 4.167vw, (32px)) clamp((18.667px), 3.125vw, (24px));
    border-radius: 16px;
  }
}

.c-box-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.c-box__head-role {
  display: flex;
  align-items: center;
  gap: min(10px, 0.5208333333vw);
}
@media (width <= 992px) {
  .c-box__head-role {
    gap: clamp((6.222px), 1.042vw, (8px));
  }
}
.c-box__head-role span {
  font-size: clamp(14px, 14px + (16 - 14) * (100vw - 992px) / 928, 16px);
}

.c-box__title {
  font-size: clamp(24px, 24px + (32 - 24) * (100vw - 992px) / 928, 32px);
  font-weight: 400;
  line-height: min(24px, 1.25vw);
  margin: 0;
}
@media (width <= 768px) {
  .c-box__title {
    font-size: clamp((18.667px), 3.125vw, (24px));
    line-height: clamp((24.889px), 4.167vw, (32px));
  }
}

.c-box__text {
  font-size: clamp(13px, 13px + (16 - 13) * (100vw - 992px) / 928, 16px);
  line-height: 1.6;
  margin-top: min(24px, 1.25vw);
}
.c-box__text p {
  margin: 0;
  margin-bottom: 1.6rem;
}
@media (width <= 992px) {
  .c-box__text p {
    margin-bottom: clamp((18.667px), 3.125vw, (24px));
  }
}
.c-box__text .c-box__lead {
  font-size: clamp(14px, 14px + (20 - 14) * (100vw - 992px) / 928, 20px);
  font-weight: 500;
  margin-bottom: min(12px, 0.625vw);
}
@media (width <= 992px) {
  .c-box__text {
    font-size: clamp((12.444px), 2.083vw, (16px));
    line-height: 1.6;
    margin-top: clamp((18.667px), 3.125vw, (24px));
  }
}

.c-box__img {
  flex-shrink: 0;
  flex: 0 0 min(250px, 13.0208333333vw);
}
.c-box__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-box__head {
  display: flex;
  align-items: center;
  gap: min(30px, 1.5625vw);
  padding-bottom: min(20px, 1.0416666667vw);
  position: relative;
}
.c-box__head::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #7782b6;
}
.c-box__head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30%;
  height: 4px;
  background: #7782b6;
}

.c-tags {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 12px + (16 - 12) * (100vw - 992px) / 928, 16px);
  padding: 0;
}
@media (width <= 992px) {
  .c-tags {
    gap: clamp((6.222px), 1.042vw, (8px));
  }
}
.c-tags--red {
  margin: 0;
}
.c-tags--red .c-tag {
  background: #e6c3cb;
  color: #d03758;
}

.c-tag {
  border-radius: 100vw;
  background: #7782b6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 min(38px, 1.9791666667vw);
  height: min(42px, 2.1875vw);
  line-height: 1;
  color: #fff;
  font-size: clamp(12px, 12px + (24 - 12) * (100vw - 992px) / 928, 24px);
}
@media (width <= 992px) {
  .c-tag {
    font-size: clamp((12.444px), 2.083vw, (16px));
    height: clamp((20.222px), 3.385vw, (26px));
    padding: 0 clamp((9.333px), 1.563vw, (12px));
  }
}

.c-red {
  color: #d03758;
}

.c-blue {
  color: #7782b6;
}

.c-icon-link {
  display: flex;
  color: #7782b6;
  font-weight: 600;
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 992px) / 928, 14px);
  margin-top: min(40px, 2.0833333333vw);
}
.c-icon-link span {
  text-decoration: underline;
  line-height: 24px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.c-arrow-circle {
  width: min(24px, 1.25vw);
  aspect-ratio: 1;
  vertical-align: middle;
  margin-left: 0.8rem;
}

.c-news__list {
  display: flex;
  flex-direction: column;
  padding: 0;
  list-style: none;
}

.c-news__item {
  padding: min(24px, 1.25vw) min(16px, 0.8333333333vw);
  display: flex;
  align-items: center;
  gap: min(16px, 0.8333333333vw);
  text-decoration-line: none;
  text-decoration: none;
  border-bottom: 1px solid #d3d4e0;
}
@media (width <= 768px) {
  .c-news__item {
    flex-wrap: wrap;
    padding: clamp((12.444px), 2.083vw, (16px)) clamp((6.222px), 1.042vw, (8px));
  }
}

.p-page .c-news__item {
  text-decoration-line: none;
  text-decoration: none;
}

.c-news__time {
  flex: 0 0 min(240px, 12.5vw);
  text-align: center;
  color: #7782b6;
}
@media (width <= 768px) {
  .c-news__time {
    flex: auto;
    width: 100%;
    text-align: left;
  }
}

.c-news__title {
  flex: 1;
}
.c-news__title p {
  margin: 0;
}
@media (width <= 768px) {
  .c-news__title {
    flex: auto;
    width: 80%;
  }
}

.c-news__arrow {
  margin-left: auto;
}

.c-box__btn {
  margin-top: auto;
  text-align: right;
}
.c-box__btn .c-btn--pink {
  border-radius: 20px;
  height: clamp(24px, 24px + (28 - 24) * (100vw - 992px) / 928, 28px);
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 992px) / 928, 14px);
  gap: min(8px, 0.4166666667vw);
  padding: 0 0.4rem;
  max-width: clamp(88px, 88px + (132 - 88) * (100vw - 992px) / 928, 132px);
  justify-content: flex-end;
}
@media (width <= 992px) {
  .c-box__btn .c-btn--pink {
    height: clamp((24.889px), 4.167vw, (32px));
    padding: 0 clamp((6.222px), 1.042vw, (8px));
    font-size: clamp((10.889px), 1.823vw, (14px));
    max-width: clamp((93.333px), 15.625vw, (120px));
    gap: clamp((6.222px), 1.042vw, (8px));
  }
}

.c-btn__icon {
  width: min(20px, 1.0416666667vw);
  aspect-ratio: 1;
  margin-top: min(-2px, -0.1041666667vw);
}
@media (width <= 992px) {
  .c-btn__icon {
    width: clamp((12.444px), 2.083vw, (16px));
  }
}

.c-circle {
  width: clamp(16px, 16px + (22 - 16) * (100vw - 992px) / 928, 22px);
  height: clamp(16px, 16px + (22 - 16) * (100vw - 992px) / 928, 22px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #e0e3ef;
  flex-shrink: 0;
}
@media (width <= 992px) {
  .c-circle {
    width: clamp((12.444px), 2.083vw, (16px));
    height: clamp((12.444px), 2.083vw, (16px));
  }
}

@media (width <= 768px) {
  .c-schedule {
    overflow-x: auto;
  }
}
.c-schedule__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  background: #fff;
}
@media (width <= 768px) {
  .c-schedule__table {
    width: auto;
    min-width: 720px;
    table-layout: auto;
  }
}
.c-schedule th,
.c-schedule td {
  padding: min(12px, 0.625vw);
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #f0f0f2;
  border-bottom: 1px solid #f0f0f2;
  font-size: clamp(11px, 11px + (16 - 11) * (100vw - 992px) / 928, 16px);
}
@media (width <= 992px) {
  .c-schedule th,
  .c-schedule td {
    font-size: clamp((10.889px), 1.823vw, (14px));
    padding: clamp((9.333px), 1.563vw, (12px));
  }
}
.c-schedule__head {
  background: #7782b6;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}
.c-schedule__head--label {
  text-align: center;
  width: 25%;
}
@media (width <= 1400px) {
  .c-schedule__head--label {
    width: 20%;
  }
}
@media (width <= 992px) {
  .c-schedule__head--label {
    width: 25%;
  }
}
.c-schedule__time {
  text-align: left;
  background: #c6c9d8;
  font-weight: 600;
}
.c-schedule__time span{
	font-size:.8em;
}

.c-schedule__cell {
  background: #fafbfc;
  font-weight: 600;
}
.c-schedule__mark {
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.p-page .c-schedule__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
	max-width:900px;
  background: #fff;
}
@media (width <= 768px) {
  .c-schedule__table {
    width: auto;
    min-width: 720px;
    table-layout: auto;
  }
}
.p-page .c-schedule table th,
.p-page .c-schedule table td {
  padding: min(12px, 0.625vw);
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #f0f0f2;
  border-bottom: 1px solid #f0f0f2;
  font-size: clamp(11px, 11px + (16 - 11) * (100vw - 992px) / 928, 16px);
}
@media (width <= 992px) {
  .p-page .c-schedule table th,
  .p-page .c-schedule table td {
    font-size: clamp((10.889px), 1.823vw, (14px));
    padding: clamp((9.333px), 1.563vw, (12px));
  }
}
.p-page table .c-schedule__head {
  background: #7782b6;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}
.p-page table .c-schedule__head--label {
  text-align: center;
  width: 30%;
}

@media (width <= 992px) {
  .p-page table .c-schedule__head--label {
    width: 35%;
  }
}
.p-page table .c-schedule__time {
  text-align: left;
  background: #c6c9d8;
  font-weight: 600;
}
.p-page table .c-schedule__time span{
	font-size:.8em;
}

.p-page table .c-schedule__cell {
  background: #fafbfc;
  font-weight: 600;
}
.p-page table .c-schedule__mark {
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.c-flow {
  gap: 60px;
  margin: 100px 0 20px 0;
}
@media (width <= 992px) {
  .c-flow {
    max-width: 600px;
    margin: 80px auto 20px auto;
  }
}
.c-flow .c-flow__item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  gap: 16px;
  padding: 40px 16px;
}
.c-flow .c-flow__step {
  display: flex;
  align-items: center;
  position: absolute;
  top: -20px;
  transform: translateY(-50%);
  left: 0;
}
.c-flow .c-flow__step-text {
  margin: 0;
  color: #7782b6;
  font-family: "Linden Hill", serif;
  font-size: 26px;
  font-weight: 400;
}
.c-flow .c-flow__step-num {
  margin: 0;
  color: #7782b6;
  leading-trim: both;
  text-edge: cap;
  font-size: 54px;
  font-weight: 400;
}
.c-flow .c-flow__item {
  background: #fff;
  border-radius: 32px;
  padding: 24px;
  position: relative;
}
.c-flow .c-flow__item::after {
  content: "";
  transform: translate(-50%, -50%);
  top: 50%;
  right: -17.5%;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 22px solid #ec6d88;
  border-right: 0;
}
@media (width <= 992px) {
  .c-flow .c-flow__item::after {
    top: auto;
    bottom: -15%;
    right: auto;
    left: 50%;
    border: none;
    border-style: solid;
    border-right: 22px solid transparent;
    border-left: 22px solid transparent;
    border-top: 22px solid #ec6d88;
    border-bottom: 0;
  }
}
.c-flow .c-flow__item:last-child::after {
  display: none;
}
.c-flow .c-flow__item-img {
  max-width: 198px;
  aspect-ratio: 1;
}
.c-flow .c-flow__item-title {
  color: #495694;
  text-align: center;
  font-size: 20px;
  margin: 0;
  font-weight: 600;
}
.c-flow .c-flow__item-desc {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 150%;
  margin: 0;
}

.c-web-btn {
  max-width: 287px;
  margin: 40px auto 0 auto;
}
.c-web-btn .c-btn {
  display: inline-flex;
  height: 64px;
  padding: 0 32px 0 16px;
  border-radius: 100vw;
  line-height: 1;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
  text-decoration: none;
}
.c-web-btn .c-btn::after {
  content: "";
  width: 32px;
  height: 32px;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  background: url(../img/icon-arrow-circle3.svg) no-repeat center center/cover;
}

.c-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 80px;
}
@media (width <= 768px) {
  .c-selector {
    gap: clamp((12.444px), 2.083vw, (16px));
    justify-content: flex-start;
  }
}
.c-selector .c-selector__btn {
  height: 40px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: #7782b6;
  text-decoration: none;
  color: #fff;
  font-size: clamp(18px, 18px + (24 - 18) * (100vw - 992px) / 928, 24px);
  font-weight: 600;
  line-height: 1;
}
@media (width <= 768px) {
  .c-selector .c-selector__btn {
    font-size: clamp((14px), 2.344vw, (18px));
    height: 32px;
    padding: 0 24px;
    width: 100%;
    max-width: 47%;
    white-space: nowrap;
  }
}

.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  font-size: clamp(14px, 1.6vw, 16px);
}
.nav-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #7782b6;
  border-radius: 9999px;
  background: #fff;
  color: #7782b6;
  text-decoration: none;
  line-height: 1;
  font-weight: 600;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.nav-links .page-numbers:hover {
  background: #7782b6;
  color: #fff;
}
.nav-links .page-numbers:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(119, 130, 182, 0.25);
}
.nav-links .page-numbers.current,
.nav-links .page-numbers[aria-current=page] {
  background: #7782b6;
  color: #fff;
  border-color: #7782b6;
  cursor: default;
}
.nav-links .page-numbers.dots {
  border: none;
  background: transparent;
  color: #9aa3af;
  min-width: auto;
  height: auto;
  padding: 0 4px;
  pointer-events: none;
}
.nav-links .page-numbers.prev,
.nav-links .page-numbers.next {
  padding: 0 16px;
  min-width: 48px;
}
@media (max-width: 480px) {
  .nav-links {
    gap: 8px;
  }
  .nav-links .page-numbers {
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
  }
  .nav-links .page-numbers.prev::before,
  .nav-links .page-numbers.next::after {
    margin: 0;
  }
}

.c-btn {
  display: inline-flex;
  cursor: pointer;
  text-align: center;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.c-btn--pink {
  background: #ec6d88;
  color: #fff;
  position: relative;
}
.c-btn--pink span {
  margin-left: min(32px, 1.6666666667vw);
  width: min(26px, 1.3541666667vw);
  height: min(26px, 1.3541666667vw);
  aspect-ratio: 1;
  min-width: 1.9rem;
  min-height: 1.9rem;
}
@media (width <= 992px) {
  .c-btn--pink span {
    margin-left: clamp((12.444px), 2.083vw, (16px));
    width: clamp((20.222px), 3.385vw, (26px));
    height: clamp((20.222px), 3.385vw, (26px));
    right: 0;
  }
}

.c-btn__container {
  line-height: 48px;
}

.c-btn__text {
  text-align: left;
  white-space: nowrap;
  line-height: 1.5;
}
@media (width <= 1200px) {
  .c-btn__text {
    width: 55%;
  }
}

.c-btn__icon {
  width: min(20px, 1.0416666667vw);
  aspect-ratio: 1;
}
@media (width <= 992px) {
  .c-btn__icon {
    width: clamp((15.556px), 2.604vw, (20px));
  }
}

/*==================================
  Margin (共通 / ブレークポイント別)
==================================*/
/*--- 共通マージン ---*/
.u-mt-s {
  margin-top: 0.25rem;
}

.u-mr-s {
  margin-right: 0.25rem;
}

.u-mb-s {
  margin-bottom: 0.25rem;
}

.u-ml-s {
  margin-left: 0.25rem;
}

.u-mx-s {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.u-my-s {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.u-m-s {
  margin: 0.25rem;
}

.u-mt-m {
  margin-top: 0.5rem;
}

.u-mr-m {
  margin-right: 0.5rem;
}

.u-mb-m {
  margin-bottom: 0.5rem;
}

.u-ml-m {
  margin-left: 0.5rem;
}

.u-mx-m {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.u-my-m {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.u-m-m {
  margin: 0.5rem;
}

.u-mt-l {
  margin-top: 1rem;
}

.u-mr-l {
  margin-right: 1rem;
}

.u-mb-l {
  margin-bottom: 1rem;
}

.u-ml-l {
  margin-left: 1rem;
}

.u-mx-l {
  margin-left: 1rem;
  margin-right: 1rem;
}

.u-my-l {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.u-m-l {
  margin: 1rem;
}

/*--- ブレークポイント別マージン ---*/
@media (width >= 340px) {
  .u-mt-exsm-s {
    margin-top: 0.25rem;
  }
  .u-mr-exsm-s {
    margin-right: 0.25rem;
  }
  .u-mb-exsm-s {
    margin-bottom: 0.25rem;
  }
  .u-ml-exsm-s {
    margin-left: 0.25rem;
  }
  .u-mx-exsm-s {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .u-my-exsm-s {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .u-m-exsm-s {
    margin: 0.25rem;
  }
  .u-mt-exsm-m {
    margin-top: 0.5rem;
  }
  .u-mr-exsm-m {
    margin-right: 0.5rem;
  }
  .u-mb-exsm-m {
    margin-bottom: 0.5rem;
  }
  .u-ml-exsm-m {
    margin-left: 0.5rem;
  }
  .u-mx-exsm-m {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .u-my-exsm-m {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .u-m-exsm-m {
    margin: 0.5rem;
  }
  .u-mt-exsm-l {
    margin-top: 1rem;
  }
  .u-mr-exsm-l {
    margin-right: 1rem;
  }
  .u-mb-exsm-l {
    margin-bottom: 1rem;
  }
  .u-ml-exsm-l {
    margin-left: 1rem;
  }
  .u-mx-exsm-l {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .u-my-exsm-l {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .u-m-exsm-l {
    margin: 1rem;
  }
}
@media (width >= 400px) {
  .u-mt-sm-s {
    margin-top: 0.25rem;
  }
  .u-mr-sm-s {
    margin-right: 0.25rem;
  }
  .u-mb-sm-s {
    margin-bottom: 0.25rem;
  }
  .u-ml-sm-s {
    margin-left: 0.25rem;
  }
  .u-mx-sm-s {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .u-my-sm-s {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .u-m-sm-s {
    margin: 0.25rem;
  }
  .u-mt-sm-m {
    margin-top: 0.5rem;
  }
  .u-mr-sm-m {
    margin-right: 0.5rem;
  }
  .u-mb-sm-m {
    margin-bottom: 0.5rem;
  }
  .u-ml-sm-m {
    margin-left: 0.5rem;
  }
  .u-mx-sm-m {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .u-my-sm-m {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .u-m-sm-m {
    margin: 0.5rem;
  }
  .u-mt-sm-l {
    margin-top: 1rem;
  }
  .u-mr-sm-l {
    margin-right: 1rem;
  }
  .u-mb-sm-l {
    margin-bottom: 1rem;
  }
  .u-ml-sm-l {
    margin-left: 1rem;
  }
  .u-mx-sm-l {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .u-my-sm-l {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .u-m-sm-l {
    margin: 1rem;
  }
}
@media (width >= 768px) {
  .u-mt-md-s {
    margin-top: 0.25rem;
  }
  .u-mr-md-s {
    margin-right: 0.25rem;
  }
  .u-mb-md-s {
    margin-bottom: 0.25rem;
  }
  .u-ml-md-s {
    margin-left: 0.25rem;
  }
  .u-mx-md-s {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .u-my-md-s {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .u-m-md-s {
    margin: 0.25rem;
  }
  .u-mt-md-m {
    margin-top: 0.5rem;
  }
  .u-mr-md-m {
    margin-right: 0.5rem;
  }
  .u-mb-md-m {
    margin-bottom: 0.5rem;
  }
  .u-ml-md-m {
    margin-left: 0.5rem;
  }
  .u-mx-md-m {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .u-my-md-m {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .u-m-md-m {
    margin: 0.5rem;
  }
  .u-mt-md-l {
    margin-top: 1rem;
  }
  .u-mr-md-l {
    margin-right: 1rem;
  }
  .u-mb-md-l {
    margin-bottom: 1rem;
  }
  .u-ml-md-l {
    margin-left: 1rem;
  }
  .u-mx-md-l {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .u-my-md-l {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .u-m-md-l {
    margin: 1rem;
  }
}
@media (width >= 992px) {
  .u-mt-lg-s {
    margin-top: 0.25rem;
  }
  .u-mr-lg-s {
    margin-right: 0.25rem;
  }
  .u-mb-lg-s {
    margin-bottom: 0.25rem;
  }
  .u-ml-lg-s {
    margin-left: 0.25rem;
  }
  .u-mx-lg-s {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .u-my-lg-s {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .u-m-lg-s {
    margin: 0.25rem;
  }
  .u-mt-lg-m {
    margin-top: 0.5rem;
  }
  .u-mr-lg-m {
    margin-right: 0.5rem;
  }
  .u-mb-lg-m {
    margin-bottom: 0.5rem;
  }
  .u-ml-lg-m {
    margin-left: 0.5rem;
  }
  .u-mx-lg-m {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .u-my-lg-m {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .u-m-lg-m {
    margin: 0.5rem;
  }
  .u-mt-lg-l {
    margin-top: 1rem;
  }
  .u-mr-lg-l {
    margin-right: 1rem;
  }
  .u-mb-lg-l {
    margin-bottom: 1rem;
  }
  .u-ml-lg-l {
    margin-left: 1rem;
  }
  .u-mx-lg-l {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .u-my-lg-l {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .u-m-lg-l {
    margin: 1rem;
  }
}
@media (width >= 1200px) {
  .u-mt-xl-s {
    margin-top: 0.25rem;
  }
  .u-mr-xl-s {
    margin-right: 0.25rem;
  }
  .u-mb-xl-s {
    margin-bottom: 0.25rem;
  }
  .u-ml-xl-s {
    margin-left: 0.25rem;
  }
  .u-mx-xl-s {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .u-my-xl-s {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .u-m-xl-s {
    margin: 0.25rem;
  }
  .u-mt-xl-m {
    margin-top: 0.5rem;
  }
  .u-mr-xl-m {
    margin-right: 0.5rem;
  }
  .u-mb-xl-m {
    margin-bottom: 0.5rem;
  }
  .u-ml-xl-m {
    margin-left: 0.5rem;
  }
  .u-mx-xl-m {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .u-my-xl-m {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .u-m-xl-m {
    margin: 0.5rem;
  }
  .u-mt-xl-l {
    margin-top: 1rem;
  }
  .u-mr-xl-l {
    margin-right: 1rem;
  }
  .u-mb-xl-l {
    margin-bottom: 1rem;
  }
  .u-ml-xl-l {
    margin-left: 1rem;
  }
  .u-mx-xl-l {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .u-my-xl-l {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .u-m-xl-l {
    margin: 1rem;
  }
}
@media (width >= 1400px) {
  .u-mt-xxl-s {
    margin-top: 0.25rem;
  }
  .u-mr-xxl-s {
    margin-right: 0.25rem;
  }
  .u-mb-xxl-s {
    margin-bottom: 0.25rem;
  }
  .u-ml-xxl-s {
    margin-left: 0.25rem;
  }
  .u-mx-xxl-s {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .u-my-xxl-s {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .u-m-xxl-s {
    margin: 0.25rem;
  }
  .u-mt-xxl-m {
    margin-top: 0.5rem;
  }
  .u-mr-xxl-m {
    margin-right: 0.5rem;
  }
  .u-mb-xxl-m {
    margin-bottom: 0.5rem;
  }
  .u-ml-xxl-m {
    margin-left: 0.5rem;
  }
  .u-mx-xxl-m {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .u-my-xxl-m {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .u-m-xxl-m {
    margin: 0.5rem;
  }
  .u-mt-xxl-l {
    margin-top: 1rem;
  }
  .u-mr-xxl-l {
    margin-right: 1rem;
  }
  .u-mb-xxl-l {
    margin-bottom: 1rem;
  }
  .u-ml-xxl-l {
    margin-left: 1rem;
  }
  .u-mx-xxl-l {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .u-my-xxl-l {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .u-m-xxl-l {
    margin: 1rem;
  }
}
/*==================================
  Padding (共通 / ブレークポイント別)
==================================*/
/*--- 共通パディング ---*/
.u-pt-s {
  padding-top: 0.25rem;
}

.u-pr-s {
  padding-right: 0.25rem;
}

.u-pb-s {
  padding-bottom: 0.25rem;
}

.u-pl-s {
  padding-left: 0.25rem;
}

.u-px-s {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.u-py-s {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.u-p-s {
  padding: 0.25rem;
}

.u-pt-m {
  padding-top: 0.5rem;
}

.u-pr-m {
  padding-right: 0.5rem;
}

.u-pb-m {
  padding-bottom: 0.5rem;
}

.u-pl-m {
  padding-left: 0.5rem;
}

.u-px-m {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.u-py-m {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.u-p-m {
  padding: 0.5rem;
}

.u-pt-l {
  padding-top: 1rem;
}

.u-pr-l {
  padding-right: 1rem;
}

.u-pb-l {
  padding-bottom: 1rem;
}

.u-pl-l {
  padding-left: 1rem;
}

.u-px-l {
  padding-left: 1rem;
  padding-right: 1rem;
}

.u-py-l {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.u-p-l {
  padding: 1rem;
}

/*--- ブレークポイント別パディング ---*/
@media (width >= 340px) {
  .u-pt-exsm-s {
    padding-top: 0.25rem;
  }
  .u-pr-exsm-s {
    padding-right: 0.25rem;
  }
  .u-pb-exsm-s {
    padding-bottom: 0.25rem;
  }
  .u-pl-exsm-s {
    padding-left: 0.25rem;
  }
  .u-px-exsm-s {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .u-py-exsm-s {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .u-p-exsm-s {
    padding: 0.25rem;
  }
  .u-pt-exsm-m {
    padding-top: 0.5rem;
  }
  .u-pr-exsm-m {
    padding-right: 0.5rem;
  }
  .u-pb-exsm-m {
    padding-bottom: 0.5rem;
  }
  .u-pl-exsm-m {
    padding-left: 0.5rem;
  }
  .u-px-exsm-m {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .u-py-exsm-m {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .u-p-exsm-m {
    padding: 0.5rem;
  }
  .u-pt-exsm-l {
    padding-top: 1rem;
  }
  .u-pr-exsm-l {
    padding-right: 1rem;
  }
  .u-pb-exsm-l {
    padding-bottom: 1rem;
  }
  .u-pl-exsm-l {
    padding-left: 1rem;
  }
  .u-px-exsm-l {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .u-py-exsm-l {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .u-p-exsm-l {
    padding: 1rem;
  }
}
@media (width >= 400px) {
  .u-pt-sm-s {
    padding-top: 0.25rem;
  }
  .u-pr-sm-s {
    padding-right: 0.25rem;
  }
  .u-pb-sm-s {
    padding-bottom: 0.25rem;
  }
  .u-pl-sm-s {
    padding-left: 0.25rem;
  }
  .u-px-sm-s {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .u-py-sm-s {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .u-p-sm-s {
    padding: 0.25rem;
  }
  .u-pt-sm-m {
    padding-top: 0.5rem;
  }
  .u-pr-sm-m {
    padding-right: 0.5rem;
  }
  .u-pb-sm-m {
    padding-bottom: 0.5rem;
  }
  .u-pl-sm-m {
    padding-left: 0.5rem;
  }
  .u-px-sm-m {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .u-py-sm-m {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .u-p-sm-m {
    padding: 0.5rem;
  }
  .u-pt-sm-l {
    padding-top: 1rem;
  }
  .u-pr-sm-l {
    padding-right: 1rem;
  }
  .u-pb-sm-l {
    padding-bottom: 1rem;
  }
  .u-pl-sm-l {
    padding-left: 1rem;
  }
  .u-px-sm-l {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .u-py-sm-l {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .u-p-sm-l {
    padding: 1rem;
  }
}
@media (width >= 768px) {
  .u-pt-md-s {
    padding-top: 0.25rem;
  }
  .u-pr-md-s {
    padding-right: 0.25rem;
  }
  .u-pb-md-s {
    padding-bottom: 0.25rem;
  }
  .u-pl-md-s {
    padding-left: 0.25rem;
  }
  .u-px-md-s {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .u-py-md-s {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .u-p-md-s {
    padding: 0.25rem;
  }
  .u-pt-md-m {
    padding-top: 0.5rem;
  }
  .u-pr-md-m {
    padding-right: 0.5rem;
  }
  .u-pb-md-m {
    padding-bottom: 0.5rem;
  }
  .u-pl-md-m {
    padding-left: 0.5rem;
  }
  .u-px-md-m {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .u-py-md-m {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .u-p-md-m {
    padding: 0.5rem;
  }
  .u-pt-md-l {
    padding-top: 1rem;
  }
  .u-pr-md-l {
    padding-right: 1rem;
  }
  .u-pb-md-l {
    padding-bottom: 1rem;
  }
  .u-pl-md-l {
    padding-left: 1rem;
  }
  .u-px-md-l {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .u-py-md-l {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .u-p-md-l {
    padding: 1rem;
  }
}
@media (width >= 992px) {
  .u-pt-lg-s {
    padding-top: 0.25rem;
  }
  .u-pr-lg-s {
    padding-right: 0.25rem;
  }
  .u-pb-lg-s {
    padding-bottom: 0.25rem;
  }
  .u-pl-lg-s {
    padding-left: 0.25rem;
  }
  .u-px-lg-s {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .u-py-lg-s {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .u-p-lg-s {
    padding: 0.25rem;
  }
  .u-pt-lg-m {
    padding-top: 0.5rem;
  }
  .u-pr-lg-m {
    padding-right: 0.5rem;
  }
  .u-pb-lg-m {
    padding-bottom: 0.5rem;
  }
  .u-pl-lg-m {
    padding-left: 0.5rem;
  }
  .u-px-lg-m {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .u-py-lg-m {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .u-p-lg-m {
    padding: 0.5rem;
  }
  .u-pt-lg-l {
    padding-top: 1rem;
  }
  .u-pr-lg-l {
    padding-right: 1rem;
  }
  .u-pb-lg-l {
    padding-bottom: 1rem;
  }
  .u-pl-lg-l {
    padding-left: 1rem;
  }
  .u-px-lg-l {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .u-py-lg-l {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .u-p-lg-l {
    padding: 1rem;
  }
}
@media (width >= 1200px) {
  .u-pt-xl-s {
    padding-top: 0.25rem;
  }
  .u-pr-xl-s {
    padding-right: 0.25rem;
  }
  .u-pb-xl-s {
    padding-bottom: 0.25rem;
  }
  .u-pl-xl-s {
    padding-left: 0.25rem;
  }
  .u-px-xl-s {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .u-py-xl-s {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .u-p-xl-s {
    padding: 0.25rem;
  }
  .u-pt-xl-m {
    padding-top: 0.5rem;
  }
  .u-pr-xl-m {
    padding-right: 0.5rem;
  }
  .u-pb-xl-m {
    padding-bottom: 0.5rem;
  }
  .u-pl-xl-m {
    padding-left: 0.5rem;
  }
  .u-px-xl-m {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .u-py-xl-m {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .u-p-xl-m {
    padding: 0.5rem;
  }
  .u-pt-xl-l {
    padding-top: 1rem;
  }
  .u-pr-xl-l {
    padding-right: 1rem;
  }
  .u-pb-xl-l {
    padding-bottom: 1rem;
  }
  .u-pl-xl-l {
    padding-left: 1rem;
  }
  .u-px-xl-l {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .u-py-xl-l {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .u-p-xl-l {
    padding: 1rem;
  }
}
@media (width >= 1400px) {
  .u-pt-xxl-s {
    padding-top: 0.25rem;
  }
  .u-pr-xxl-s {
    padding-right: 0.25rem;
  }
  .u-pb-xxl-s {
    padding-bottom: 0.25rem;
  }
  .u-pl-xxl-s {
    padding-left: 0.25rem;
  }
  .u-px-xxl-s {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .u-py-xxl-s {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .u-p-xxl-s {
    padding: 0.25rem;
  }
  .u-pt-xxl-m {
    padding-top: 0.5rem;
  }
  .u-pr-xxl-m {
    padding-right: 0.5rem;
  }
  .u-pb-xxl-m {
    padding-bottom: 0.5rem;
  }
  .u-pl-xxl-m {
    padding-left: 0.5rem;
  }
  .u-px-xxl-m {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .u-py-xxl-m {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .u-p-xxl-m {
    padding: 0.5rem;
  }
  .u-pt-xxl-l {
    padding-top: 1rem;
  }
  .u-pr-xxl-l {
    padding-right: 1rem;
  }
  .u-pb-xxl-l {
    padding-bottom: 1rem;
  }
  .u-pl-xxl-l {
    padding-left: 1rem;
  }
  .u-px-xxl-l {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .u-py-xxl-l {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .u-p-xxl-l {
    padding: 1rem;
  }
}
/*==================================
  Display (表示制御)
==================================*/
/*--- 共通 ---*/
.u-d-none {
  display: none !important;
}

.u-d-block {
  display: block !important;
}

.u-d-inline {
  display: inline !important;
}

.u-d-inline-block {
  display: inline-block !important;
}

.u-d-flex {
  display: flex !important;
}

.u-d-grid {
  display: grid !important;
}

/*--- ブレークポイント別 ---*/
@media (width >= 340px) {
  .u-d-exsm-none {
    display: none !important;
  }
  .u-d-exsm-block {
    display: block !important;
  }
  .u-d-exsm-inline {
    display: inline !important;
  }
  .u-d-exsm-inline-block {
    display: inline-block !important;
  }
  .u-d-exsm-flex {
    display: flex !important;
  }
  .u-d-exsm-grid {
    display: grid !important;
  }
}
@media (width >= 400px) {
  .u-d-sm-none {
    display: none !important;
  }
  .u-d-sm-block {
    display: block !important;
  }
  .u-d-sm-inline {
    display: inline !important;
  }
  .u-d-sm-inline-block {
    display: inline-block !important;
  }
  .u-d-sm-flex {
    display: flex !important;
  }
  .u-d-sm-grid {
    display: grid !important;
  }
}
@media (width >= 768px) {
  .u-d-md-none {
    display: none !important;
  }
  .u-d-md-block {
    display: block !important;
  }
  .u-d-md-inline {
    display: inline !important;
  }
  .u-d-md-inline-block {
    display: inline-block !important;
  }
  .u-d-md-flex {
    display: flex !important;
  }
  .u-d-md-grid {
    display: grid !important;
  }
}
@media (width >= 992px) {
  .u-d-lg-none {
    display: none !important;
  }
  .u-d-lg-block {
    display: block !important;
  }
  .u-d-lg-inline {
    display: inline !important;
  }
  .u-d-lg-inline-block {
    display: inline-block !important;
  }
  .u-d-lg-flex {
    display: flex !important;
  }
  .u-d-lg-grid {
    display: grid !important;
  }
}
@media (width >= 1200px) {
  .u-d-xl-none {
    display: none !important;
  }
  .u-d-xl-block {
    display: block !important;
  }
  .u-d-xl-inline {
    display: inline !important;
  }
  .u-d-xl-inline-block {
    display: inline-block !important;
  }
  .u-d-xl-flex {
    display: flex !important;
  }
  .u-d-xl-grid {
    display: grid !important;
  }
}
@media (width >= 1400px) {
  .u-d-xxl-none {
    display: none !important;
  }
  .u-d-xxl-block {
    display: block !important;
  }
  .u-d-xxl-inline {
    display: inline !important;
  }
  .u-d-xxl-inline-block {
    display: inline-block !important;
  }
  .u-d-xxl-flex {
    display: flex !important;
  }
  .u-d-xxl-grid {
    display: grid !important;
  }
}
/*==================================
  Text-align (テキスト配置)
==================================*/
/*--- 共通 ---*/
.u-ta-left {
  text-align: left !important;
}

.u-ta-center {
  text-align: center !important;
}

.u-ta-right {
  text-align: right !important;
}

/*--- ブレークポイント別 ---*/
@media (width >= 340px) {
  .u-ta-exsm-left {
    text-align: left !important;
  }
  .u-ta-exsm-center {
    text-align: center !important;
  }
  .u-ta-exsm-right {
    text-align: right !important;
  }
}
@media (width >= 400px) {
  .u-ta-sm-left {
    text-align: left !important;
  }
  .u-ta-sm-center {
    text-align: center !important;
  }
  .u-ta-sm-right {
    text-align: right !important;
  }
}
@media (width >= 768px) {
  .u-ta-md-left {
    text-align: left !important;
  }
  .u-ta-md-center {
    text-align: center !important;
  }
  .u-ta-md-right {
    text-align: right !important;
  }
}
@media (width >= 992px) {
  .u-ta-lg-left {
    text-align: left !important;
  }
  .u-ta-lg-center {
    text-align: center !important;
  }
  .u-ta-lg-right {
    text-align: right !important;
  }
}
@media (width >= 1200px) {
  .u-ta-xl-left {
    text-align: left !important;
  }
  .u-ta-xl-center {
    text-align: center !important;
  }
  .u-ta-xl-right {
    text-align: right !important;
  }
}
@media (width >= 1400px) {
  .u-ta-xxl-left {
    text-align: left !important;
  }
  .u-ta-xxl-center {
    text-align: center !important;
  }
  .u-ta-xxl-right {
    text-align: right !important;
  }
}
/* 補足: !important が不要な用途などで使いたい場合に */
.u-text-center {
  text-align: center;
}

/*==================================
  Overflow
==================================*/
.u-ov-hidden {
  overflow: hidden !important;
}

.u-ov-scroll {
  overflow: scroll !important;
}

.u-ov-auto {
  overflow: auto !important;
}

/*==================================
  Clearfix
==================================*/
.u-clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*==================================
  Visually Hidden
  (画面外表示だが読み上げ対象)
==================================*/
.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;
}

/*==================================
  Font-weight
==================================*/
/* 通常フォントウェイト */
.u-fw-light {
  font-weight: 300 !important;
}

.u-fw-normal {
  font-weight: 400 !important;
}

.u-fw-medium {
  font-weight: 500 !important;
}

.u-fw-semibold {
  font-weight: 600 !important;
}

.u-fw-bold {
  font-weight: 700 !important;
}

.u-fw-bolder {
  font-weight: 800 !important;
}

/* もし数値のクラスも必要なら追加（例） */
.u-fw-400 {
  font-weight: 400 !important;
}

/*==================================
  Cursor
==================================*/
.u-cursor-pointer {
  cursor: pointer !important;
}

.u-cursor-default {
  cursor: default !important;
}

/*==================================
  Opacity
==================================*/
.u-opacity-50 {
  opacity: 0.5 !important;
}

.u-opacity-75 {
  opacity: 0.75 !important;
}

.u-opacity-100 {
  opacity: 1 !important;
}

/*==================================
  Line-height
==================================*/
.u-lh-1 {
  line-height: 1;
}

.u-lh-1_2 {
  line-height: 1.2;
}

.u-lh-1_4 {
  line-height: 1.4;
}

.u-lh-1_5 {
  line-height: 1.5;
}

.u-lh-1_6 {
  line-height: 1.6;
}

.u-lh-1_8 {
  line-height: 1.8;
}

.u-lh-2 {
  line-height: 2;
}

/*==================================
  Letter-spacing
==================================*/
.u-ls-0 {
  letter-spacing: 0;
}

.u-ls-0_5 {
  letter-spacing: 0.5px;
}

.u-ls-1 {
  letter-spacing: 1px;
}

.u-ls-1_2 {
  letter-spacing: 1.2px;
}

.u-ls-2 {
  letter-spacing: 2px;
}

.u-ls-3 {
  letter-spacing: 3px;
}

.u-ls--0_5 {
  letter-spacing: -0.5px;
}

.u-ls--1 {
  letter-spacing: -1px;
}

/*----------------------------------
  Border / Border Radius (15.1)
----------------------------------*/
/* ボーダー（線の有無, 太さ） */
.u-border {
  border: 1px solid #ccc !important;
}

.u-border-0 {
  border: 0 !important;
}

.u-border-top {
  border-top: 1px solid #ccc !important;
}

.u-border-right {
  border-right: 1px solid #ccc !important;
}

.u-border-bottom {
  border-bottom: 1px solid #ccc !important;
}

.u-border-left {
  border-left: 1px solid #ccc !important;
}

/* 角丸 (border-radius) */
.u-rounded {
  border-radius: 4px !important;
}

.u-rounded-0 {
  border-radius: 0 !important;
}

.u-rounded-sm {
  border-radius: 2px !important;
}

.u-rounded-md {
  border-radius: 6px !important;
}

.u-rounded-lg {
  border-radius: 8px !important;
}

.u-rounded-pill {
  border-radius: 50rem !important;
}

.u-rounded-circle {
  border-radius: 100vw !important;
}

/*----------------------------------
  Box Shadows (15.3)
----------------------------------*/
.u-shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.u-shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

.u-shadow-lg {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15) !important;
}

.u-shadow-none {
  box-shadow: none !important;
}

.p-topfv {
  height: auto;
  overflow: hidden;
  position: relative;
}
@media (width <= 1400px) {
  .p-topfv {
    max-height: 45rem;
  }
}
@media (width <= 992px) {
  .p-topfv {
    height: clamp(360px, 360px + (700 - 360) * (100vw - 375px) / 617, 700px);
    min-height: auto;
  }
}
.p-topfv .p-topfv__inner {
  padding: 0 clamp(1rem, 4vw, 3.5rem);
  height: 100%;
}
@media (width <= 992px) {
  .p-topfv .p-topfv__inner {
    padding: 0 clamp((12.444px), 2.083vw, (16px));
    height: 100%;
  }
}
.p-topfv .p-topfv__img {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.p-topfv .p-topfv__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-topfv .p-topfv__content {
  position: absolute;
  left: 14.4%;
  z-index: 2;
  top: 0;
  border-radius: 0 0 16px 16px;
  background: #f0f0f2;
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  padding: min(46px, 2.3958333333vw) min(46px, 2.3958333333vw) min(26px, 1.3541666667vw) min(46px, 2.3958333333vw);
  gap: min(12px, 0.625vw);
}
@media (width <= 992px) {
  .p-topfv .p-topfv__content {
    left: 10%;
    padding: clamp((18.667px), 3.125vw, (24px)) clamp((18.667px), 3.125vw, (24px)) clamp((12.444px), 2.083vw, (16px)) clamp((18.667px), 3.125vw, (24px));
  }
}
.p-topfv .p-topfv__content span {
  writing-mode: vertical-rl;
  white-space: nowrap;
  line-height: 1.2;
  text-orientation: mixed;
  letter-spacing: 0.4166666667vw;
  font-size: min(34px, 1.7708333333vw);
}
@media (width <= 992px) {
  .p-topfv .p-topfv__content span {
    font-size: clamp((15.556px), 2.604vw, (20px));
    letter-spacing: clamp((6.222px), 1.042vw, (8px));
  }
}
.p-topfv .p-topfv__content span:nth-child(2) {
  padding-top: min(32px, 1.6666666667vw);
}
@media (width <= 992px) {
  .p-topfv .p-topfv__content span:nth-child(2) {
    padding-top: clamp((12.444px), 2.083vw, (16px));
  }
}
.p-topfv .p-topfv__content span:nth-child(3) {
  padding-top: min(64px, 3.3333333333vw);
}
@media (width <= 992px) {
  .p-topfv .p-topfv__content span:nth-child(3) {
    padding-top: clamp((24.889px), 4.167vw, (32px));
  }
}
.p-topfv .p-topfv__block {
  position: absolute;
  left: 59%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  z-index: 1;
  background: #f2f0f1;
  height: 100%;
  padding: 0 min(54px, 2.8125vw);
}
@media (width <= 992px) {
  .p-topfv .p-topfv__block {
    height: auto;
    left: 70%;
    background: rgba(242, 240, 241, 0.6);
  }
}
.p-topfv .p-topfv__text {
  color: #5a4d66;
  font-size: min(44px, 2.2916666667vw);
  font-weight: 400;
  line-height: 120%;
  display: inline-flex;
  flex-direction: row-reverse;
  gap: min(16px, 0.8333333333vw);
  padding-top: min(24px, 1.25vw);
}
@media (width <= 992px) {
  .p-topfv .p-topfv__text {
    font-size: clamp((20.222px), 3.385vw, (26px));
    gap: clamp((12.444px), 2.083vw, (16px));
    line-height: 140%;
    font-weight: 700;
  }
}
.p-topfv .p-topfv__text span {
  writing-mode: vertical-rl;
  white-space: nowrap;
  text-orientation: mixed;
  letter-spacing: 0.4166666667vw;
}
@media (width <= 992px) {
  .p-topfv .p-topfv__text span {
    letter-spacing: clamp((6.222px), 1.042vw, (8px));
  }
}
.p-topfv .p-topfv__text span:nth-child(2) {
  padding-top: min(158px, 8.2291666667vw);
}
@media (width <= 992px) {
  .p-topfv .p-topfv__text span:nth-child(2) {
    padding-top: clamp((62.222px), 10.417vw, (80px));
  }
}
.p-topfv .p-topfv__entext {
  color: #df9fac;
  font-family: "Linden Hill", serif;
  font-size: min(30px, 1.5625vw);
}
@media (width <= 992px) {
  .p-topfv .p-topfv__entext {
    font-size: clamp((14px), 2.344vw, (18px));
  }
}

.p-top-contact .p-top-contact__content {
  border-radius: 32px;
  background: #fff;
  padding: min(100px, 5.2083333333vw);
}
@media (width <= 992px) {
  .p-top-contact .p-top-contact__content {
    border-radius: 16px;
    padding: clamp((37.333px), 6.25vw, (48px));
  }
}
.p-top-contact .p-top-contact__text {
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 992px) / 928, 16px);
  line-height: 160%;
}
@media (width <= 992px) {
  .p-top-contact .p-top-contact__text {
    font-size: clamp((12.444px), 2.083vw, (16px));
  }
}

.p-top-about .p-top-about__up {
  gap: min(40px, 2.0833333333vw);
  margin-bottom: min(40px, 2.0833333333vw);
}
@media (width <= 992px) {
  .p-top-about .p-top-about__up {
    gap: clamp((31.111px), 5.208vw, (40px));
    margin-bottom: clamp((31.111px), 5.208vw, (40px));
  }
}

.p-top-intro {
  padding-top: min(24px, 1.25vw);
}
.p-top-intro .l-section__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-top-intro .p-top-intro__desc {
  text-align: center;
  font-size: clamp(20px, 20px + (32 - 20) * (100vw - 992px) / 928, 32px);
  line-height: 1.5;
  letter-spacing: min(3.2px, 0.1666666667vw);
  margin-top: min(48px, 2.5vw);
}
@media (width <= 992px) {
  .p-top-intro .p-top-intro__desc {
    font-size: clamp((15.556px), 2.604vw, (20px));
    letter-spacing: clamp((2.489px), 0.417vw, (3.2px));
    margin-top: clamp((24.889px), 4.167vw, (32px));
  }
}
@media (width <= 992px) {
  .p-top-intro .c-icon-link {
    display: none;
  }
}

.p-top-services .p-services__items {
  display: flex;
  flex-wrap: wrap;
  gap: min(40px, 2.0833333333vw);
}
@media (width <= 992px) {
  .p-top-services .p-services__items {
    flex-direction: column;
    gap: clamp((31.111px), 5.208vw, (40px));
  }
}
.p-top-services .c-box {
  flex: 1 1 calc((100% - min(40px, 2.0833333333vw)) / 4);
}
@media (width <= 992px) {
  .p-top-services .c-box {
    flex: 1 1 100%;
  }
}
.p-top-services .c-box:nth-child(1) {
  flex: 1 1 calc((100% - min(40px, 2.0833333333vw)) / 2);
}
@media (width <= 992px) {
  .p-top-services .c-box:nth-child(1) {
    flex: 1 1 100%;
  }
}

.p-top-doctors .p-top-doctors__items {
  display: flex;
  flex-direction: column;
  gap: min(48px, 2.5vw);
}
@media (width <= 992px) {
  .p-top-doctors .p-top-doctors__items {
    gap: clamp((31.111px), 5.208vw, (40px));
  }
}
.p-top-doctors .c-box {
  max-width: 100%;
  width: 100%;
  gap: min(40px, 2.0833333333vw);
  padding: min(48px, 2.5vw);
}
@media (width <= 992px) {
  .p-top-doctors .c-box {
    padding: clamp((24.889px), 4.167vw, (32px));
    gap: clamp((24.889px), 4.167vw, (32px));
    max-width: none;
  }
}
@media (width <= 768px) {
  .p-top-doctors .c-box {
    flex-direction: column;
  }
}
@media (width <= 768px) {
  .p-top-doctors .c-box__img {
    margin: 0 auto;
    max-width: 24rem;
  }
}

.p-top-access .p-top-access__content {
  display: flex;
  gap: min(54px, 2.8125vw);
}
@media (width <= 992px) {
  .p-top-access .p-top-access__content {
    flex-direction: column;
    gap: clamp((31.111px), 5.208vw, (40px));
  }
}
.p-top-access .p-top-access__map {
  flex: 0 0 37%;
  border-radius: 30px;
  overflow: hidden;
}
@media (width <= 1400px) {
  .p-top-access .p-top-access__map {
    flex: 0 0 35%;
  }
}
@media (width <= 992px) {
  .p-top-access .p-top-access__map {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
}
.p-top-access .p-top-access__desc {
  flex: 1;
}
.p-top-access .p-top-access__note {
  margin-top: min(16px, 0.8333333333vw);
  margin-bottom: min(32px, 1.6666666667vw);
}
@media (width <= 992px) {
  .p-top-access .p-top-access__note {
    margin-top: clamp((12.444px), 2.083vw, (16px));
    margin-bottom: clamp((24.889px), 4.167vw, (32px));
  }
}
.p-top-access .c-box {
  max-width: clamp(360px, 360px + (540 - 360) * (100vw - 992px) / 928, 540px);
}
@media (width <= 992px) {
  .p-top-access .c-box {
    max-width: 100%;
  }
}

.p-cta {
  margin-top: min(80px, 4.1666666667vw);
  background: url(../img/img-cta-bg.jpg) no-repeat center center/cover;
}
@media (width <= 992px) {
  .p-cta {
    margin-top: clamp((46.667px), 7.813vw, (60px));
  }
}
.p-cta .p-cta__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: min(40px, 2.0833333333vw);
  align-items: center;
  justify-content: center;
}
@media (width <= 992px) {
  .p-cta .p-cta__inner {
    gap: clamp((24.889px), 4.167vw, (32px));
  }
}
.p-cta .p-cta__title {
  margin: 0;
  color: #fff;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  font-size: min(38px, 1.9791666667vw);
  font-size: clamp(28px, 28px + (38 - 28) * (100vw - 992px) / 928, 38px);
  font-weight: 600;
}
@media (width <= 992px) {
  .p-cta .p-cta__title {
    font-size: clamp((21.778px), 3.646vw, (28px));
  }
}

.p-cta__box-items {
  gap: min(45px, 2.34375vw);
}
@media (width <= 992px) {
  .p-cta__box-items {
    gap: clamp((24.889px), 4.167vw, (32px));
    width: 100%;
    max-width: 32rem;
  }
}

.p-page .p-cta__box-items {
  margin: 24px 0 0 0;
  justify-self: center;
}
.p-page .p-cta__box a {
  text-decoration: none;
}

.p-cta__box {
  background: #ec6d88;
  width: clamp(320px, 320px + (440 - 320) * (100vw - 992px) / 928, 440px);
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  gap: min(12px, 0.625vw);
  padding: 0.8rem min(24px, 1.25vw) 2rem;
}
@media (width <= 992px) {
  .p-cta__box {
    width: 100%;
    gap: clamp((9.333px), 1.563vw, (12px));
    padding: 0.8rem clamp((15.556px), 2.604vw, (20px)) 2rem;
  }
}

.p-cta__box-title {
  color: #fff;
  font-size: clamp(13px, 13px + (16 - 13) * (100vw - 992px) / 928, 16px);
  margin: 0;
}
@media (width <= 992px) {
  .p-cta__box-title {
    font-size: clamp((10.889px), 1.823vw, (14px));
  }
}

.p-cta__box-tel {
  display: flex;
  gap: min(18px, 0.9375vw);
  align-items: center;
}
@media (width <= 992px) {
  .p-cta__box-tel {
    gap: clamp((9.333px), 1.563vw, (12px));
  }
}

.p-cta__box-num {
  color: #fff;
  font-size: clamp(30px, 30px + (40 - 30) * (100vw - 992px) / 928, 40px);
  font-weight: 600;
  margin: 0;
  line-height: 1;
  text-decoration: none;
}
@media (width <= 992px) {
  .p-cta__box-num {
    font-size: clamp((23.333px), 3.906vw, (30px));
  }
}

.p-page .p-cta__box-num {
  color: #fff;
}

.p-cta__box-note {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: clamp(13px, 13px + (16 - 13) * (100vw - 992px) / 928, 16px);
}
@media (width <= 992px) {
  .p-cta__box-note {
    font-size: clamp((10.889px), 1.823vw, (14px));
  }
}

.p-cta__note {
  margin: 0;
  color: #fff;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  font-size: clamp(14px, 14px + (18 - 14) * (100vw - 992px) / 928, 18px);
  font-weight: 600;
  line-height: 1.6;
}
@media (width <= 992px) {
  .p-cta__note {
    font-size: clamp((10.889px), 1.823vw, (14px));
  }
}

@media (width <= 992px) {
  .p-cat__box-btn {
    width: 100%;
  }
}
.p-cat__box-btn .c-btn {
  border-radius: 100vw;
  background: #fff;
  color: #ec6d88;
  width: clamp(200px, 200px + (268 - 200) * (100vw - 992px) / 937, 268px);
  height: fulid(1920, 992, 60, 55);
  padding: 0.2rem min(20px, 1.0416666667vw) 0 0.2rem;
  position: relative;
  line-height: 1.6;
}
@media (width <= 992px) {
  .p-cat__box-btn .c-btn {
    width: 100%;
    height: clamp((46.667px), 7.813vw, (60px));
    max-width: none;
    padding: 0.2rem clamp((15.556px), 2.604vw, (20px)) 0 0.2rem;
  }
}
.p-cat__box-btn .p-cta__box-note {
  margin-top: 0.4rem;
}
@media (width <= 992px) {
  .p-cat__box-btn .p-cta__box-note {
    margin-top: clamp((6.222px), 1.042vw, (8px));
  }
}

.p-cta__box-arrow {
  position: absolute;
  right: min(16px, 0.8333333333vw);
  width: min(32px, 1.6666666667vw);
  aspect-ratio: 1;
}
@media (width <= 992px) {
  .p-cta__box-arrow {
    width: clamp((18.667px), 3.125vw, (24px));
    right: clamp((12.444px), 2.083vw, (16px));
  }
}

@media (width <= 1200px) {
  .p-top-info .c-icon-link {
    display: none;
  }
}
.p-top-info .c-icon-link--xl {
  display: none;
}
@media (width <= 1200px) {
  .p-top-info .c-icon-link--xl {
    display: inline-flex;
    width: 100%;
    justify-content: flex-end;
    gap: clamp((6.222px), 1.042vw, (8px));
    padding-left: 2.4rem;
  }
  .p-top-info .c-icon-link--xl span {
    font-size: clamp(14px, 14px + (16 - 14) * (100vw - 992px) / 208, 16px);
  }
  .p-top-info .c-icon-link--xl .c-arrow-circle {
    width: clamp(18px, 18px + (24 - 18) * (100vw - 992px) / 208, 24px);
  }
}

.p-page {
  padding-bottom: 80px;
}
@media (width <= 768px) {
  .p-page {
    padding-bottom: 40px;
  }
}
.p-page .p-page-fv {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  width: 95%;
  margin: 0 auto;
  height: 300px;
  background: linear-gradient(270deg, rgba(236, 109, 136, 0.2) 6.5%, rgba(126, 139, 179, 0.2) 93.71%), url(../img/img-page-fv.jpg) lightgray 50%/cover no-repeat;
}
@media (width <= 768px) {
  .p-page .p-page-fv {
    height: 180px;
  }
}
.p-page .p-page-fv__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 0 40px;
}
@media (width <= 768px) {
  .p-page .p-page-fv__inner {
    padding: 0 20px;
  }
}
.p-page .p-page-fv__head {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  gap: 8px;
}
@media (width <= 768px) {
  .p-page .p-page-fv__head {
    gap: 4px;
  }
}
.p-page .p-page-fv__title {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin: 0;
  letter-spacing: 0.84px;
}
@media (width <= 768px) {
  .p-page .p-page-fv__title {
    font-size: 28px;
  }
}
.p-page .p-page-fv__entitle {
  color: #fff;
  font-family: "Linden Hill", serif;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.8px;
}
@media (width <= 768px) {
  .p-page .p-page-fv__entitle {
    font-size: 16px;
  }
}
.p-page .p-page-fv__circle {
  width: 680px;
  height: 680px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(119, 130, 182, 0.8);
  position: absolute;
  z-index: 0;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 7%;
}
@media (width <= 768px) {
  .p-page .p-page-fv__circle {
    width: 400px;
    height: 400px;
    left: 5%;
  }
}
.p-page .p-page__body p {
  line-height: 1.6;
}
.p-page .p-page__body h2 {
  color: #495694;
  font-size: 32px;
  font-weight: 400;
  position: relative;
  padding-left: 0.8em;
  line-height: 2.2;
}
.p-page .p-page__body h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0.2em;
  background: #495694;
}
@media (width <= 768px) {
  .p-page .p-page__body h2 {
    font-size: 28px;
    line-height: 1.6;
  }
}
.p-page h3 {
  color: #495694;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 2.2px;
  position: relative;
}
.p-page h4 {
  position: relative;
  padding: 0.6em 1em;
  color: #495694;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.8px;
}
.p-page h4::before {
  content: "";
  top: 0px;
  left: 0px;
  position: absolute;
  height: 1px;
  width: 100%;
  background: #495694;
}
.p-page h4::after {
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  height: 1px;
  width: 100%;
  background: #495694;
}
.p-page h5 {
  color: #495694;
  leading-trim: both;
  text-edge: cap;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.6px;
  padding-left: 2.7em;
  position: relative;
}
.p-page h5::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 2.2em;
  height: 1px;
  background: #495694;
}
.p-page strong {
  font-weight: 700;
}
.p-page a {
  color: #34427e;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.p-page .wp-block-table {
  margin: 2em 0;
}
.p-page table {
  max-width: 700px;
  width: 100%;
}
.p-page table td {
  background: #fff;
}
.p-page table th {
  background: #e9ecf9;
  color: #34427e;
  width: 30%;
}
.p-page .wp-element-caption {
  margin-top: 0.5em;
  color: #34427e;
  font-weight: 500;
  letter-spacing: 0.6px;
}
.p-page .wp-block-button__link.wp-element-button {
  text-decoration: none;
  display: inline-flex;
  padding: 13px 136px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1.6px;
  border-radius: 100vw;
  background: linear-gradient(90deg, #ec6d88 0%, #7782b6 100%);
  margin: 1em 0;
}
.p-page .is-style-outline--1 .wp-block-button__link.wp-element-button {
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1.6px;
  border-radius: 100vw;
  border: 1px solid #7782b6;
  background: #fff;
  margin: 1em 0;
  color: #7782b6;
}
.p-page .wp-block-quote.is-layout-flow.wp-block-quote-is-layout-flow {
  display: flex;
  padding: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #7782b6;
  background: #f9faff;
  color: #423c79;
  font-weight: 400;
  line-height: 160%;
}
.p-page ul.wp-block-list {
  padding: 0;
  margin: 1em 0;
  list-style: none;
}
.p-page ul.wp-block-list li {
  padding: 0.8em 0 0.8em 1.8em;
  position: relative;
  font-size: 15px;
  font-weight: 400;
  line-height: 160%;
  border-bottom: 1px solid #d7d7d7;
}
.p-page ul.wp-block-list li::before {
  content: "";
  position: absolute;
  width: 19px;
  height: 22px;
  background: url(../img/icon-check-solid.svg) no-repeat center center/cover;
  left: 0;
  top: 14px;
}
.p-page ol.wp-block-list {
  list-style: none;
  padding: 0;
  margin: 1em 0;
  counter-reset: step;
}
.p-page ol.wp-block-list > li {
  position: relative;
  counter-increment: step;
  padding: 0.8em 0 0.8em 2.2em;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  border-bottom: 1px solid #d7d7d7;
}
.p-page ol.wp-block-list > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #7782b6;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
}
.p-page ol.wp-block-list > li:nth-child(n+10)::before {
  width: 32px;
  height: 32px;
}

.p-404 .p-404__text {
  font-size: 24px;
  text-align: center;
  margin: 60px 0;
}
@media (width <= 768px) {
  .p-404 .p-404__text {
    font-size: 18px;
  }
}

.p-faq .p-faq__list {
  display: flex;
  flex-direction: column;
}
.p-faq .c-faq {
  margin-bottom: 1em;
  border-bottom: 1px solid #ddd;
}
.p-faq .c-faq .c-faq__q {
  display: flex;
  cursor: pointer;
  padding: 1em;
  align-items: center;
  justify-content: space-between;
}
.p-faq .c-faq .c-faq__q .c-faq__icon {
  flex-basis: 20px;
  margin-right: 1em;
  border-radius: 50%;
  background: #ec6d88;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  aspect-ratio: 1;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.p-faq .c-faq .c-faq__q .c-faq__text {
  flex-grow: 1;
  color: #ec6d88;
  font-weight: 700;
}
.p-faq .c-faq .c-faq__q .c-faq__toggle {
  margin-left: 1em;
}
.p-faq .c-faq .c-faq__a-warp {
  padding: 1em;
}
.p-faq .c-faq .c-faq__a-warp .c-faq__a {
  display: flex;
}
.p-faq .c-faq .c-faq__a-warp .c-faq__a .c-faq__icon {
  flex-basis: 20px;
  background: #7e7e7e;
  margin-right: 1em;
  flex-basis: 20px;
  margin-right: 1em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  aspect-ratio: 1;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.p-faq .c-faq .c-faq__a-warp .c-faq__a .c-faq__text {
  flex-grow: 1;
}
.p-faq .c-faq .c-faq__a-warp .c-faq__a .c-faq__text p {
  margin: 0;
}/*# sourceMappingURL=style.css.map */