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

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 1.6rem;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
@media (width <= 768px) {
  body {
    padding-bottom: 5.6rem;
    padding-bottom: calc(5.6rem + env(safe-area-inset-bottom));
  }
}

main {
  flex: 1;
}

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

a:hover {
  opacity: 0.6;
}

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

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

.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 {
  width: 100%;
}
.l-header .l-header__inner {
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
}
.l-header .l-header__inner--up {
  width: 100%;
  max-width: 100%;
  padding-left: 2rem;
  padding-right: 0;
  height: 8rem;
  justify-content: space-between;
}
@media (width <= 992px) {
  .l-header .l-header__inner--up {
    padding-right: 2rem;
  }
}
@media (width <= 768px) {
  .l-header .l-header__inner--up {
    padding: 0 1.6rem;
    height: 6.4rem;
  }
}
.l-header .l-header__inner--low {
  max-width: 98%;
  padding: 0.8rem 2rem;
  justify-content: flex-end;
  gap: clamp(10px, 10px + (32 - 10) * (100vw - 1440px) / 480, 32px);
}
@media (width <= 1400px) {
  .l-header .l-header__inner--low {
    max-width: 100%;
  }
}
@media (width <= 992px) {
  .l-header .l-header__inner--low {
    display: none;
  }
}
.l-header .l-header__logo {
  max-width: 34.4rem;
  margin: 0;
  order: unset !important;
}
@media (width <= 768px) {
  .l-header .l-header__logo {
    max-width: clamp(210px, 210px + (344 - 210) * (100vw - 375px) / 393, 344px);
  }
}
.l-header .l-header__menu {
  display: none;
}
@media (width <= 992px) {
  .l-header .l-header__menu {
    display: block;
    height: 5.4rem;
    width: 9.2rem;
  }
}
@media (width <= 992px) and (width <= 768px) {
  .l-header .l-header__menu {
    height: 5rem;
  }
}
@media (width <= 992px) {
  .l-header .l-header__menu .c-btn {
    height: 100%;
    font-size: 1.8rem;
    font-weight: 600;
  }
}
.l-header .l-header__info {
  display: flex;
}
@media (width <= 992px) {
  .l-header .l-header__info {
    display: none;
  }
}
.l-header .l-header__line {
  display: flex;
  align-items: flex-end;
  background: #009a3f;
  padding: 0.8rem 2rem;
  gap: 1.2rem;
}
@media (width <= 1200px) {
  .l-header .l-header__line {
    gap: clamp(8px, 8px + (12 - 8) * (100vw - 992px) / 208, 12px);
    padding: 0.8rem clamp(12px, 12px + (20 - 12) * (100vw - 992px) / 208, 20px);
  }
}
.l-header .l-header__line-left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.l-header .l-header__line-text {
  font-weight: 600;
  font-size: 1.8rem;
  color: #fff;
}
@media (width <= 1200px) {
  .l-header .l-header__line-text {
    font-size: clamp(16px, 16px + (18 - 16) * (100vw - 992px) / 208, 18px);
  }
}
.l-header .l-header__line-text--lg {
  font-size: 3.2rem;
}
@media (width <= 1200px) {
  .l-header .l-header__line-text--lg {
    font-size: clamp(30px, 30px + (32 - 30) * (100vw - 992px) / 208, 32px);
  }
}
.l-header .l-header__line-btm {
  color: #fff;
  font-weight: 500;
  padding: 0 0.8rem;
  line-height: 1.4;
}
.l-header .l-header__line-right {
  width: 6.4rem;
  height: 6.4rem;
  aspect-ratio: 1;
}
.l-header .l-header__tel {
  background: #d1eea6;
  padding: 0.8rem 2rem;
  display: flex;
  gap: 1.2rem;
}
@media (width <= 1200px) {
  .l-header .l-header__tel {
    gap: clamp(8px, 8px + (12 - 8) * (100vw - 992px) / 208, 12px);
    padding: 0.8rem clamp(12px, 12px + (20 - 12) * (100vw - 992px) / 208, 20px);
  }
}
.l-header .l-header__tel-right {
  display: flex;
  flex-direction: column;
}
.l-header .l-header__tel-left {
  padding-top: 1.4rem;
}
.l-header .l-header__tel-text {
  font-size: 1.8rem;
  font-weight: 600;
}
@media (width <= 1200px) {
  .l-header .l-header__tel-text {
    font-size: clamp(16px, 16px + (18 - 16) * (100vw - 992px) / 208, 18px);
  }
}
.l-header .l-header__tel-num {
  font-size: 3.2rem;
  font-weight: 600;
}
@media (width <= 1200px) {
  .l-header .l-header__tel-num {
    font-size: clamp(30px, 30px + (32 - 30) * (100vw - 992px) / 208, 32px);
  }
}
.l-header .l-header__tel-info {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
.l-header .l-header__tel-time {
  margin-left: 1.6rem;
}
.l-header .l-header__nav {
  display: flex;
}
.l-header .l-header__nav ul {
  display: flex;
  gap: clamp(10px, 10px + (32 - 10) * (100vw - 1440px) / 480, 32px);
}
.l-header .l-header__nav li {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}
@media (width <= 1400px) {
  .l-header .l-header__nav li {
    font-size: clamp(14px, 14px + (20 - 14) * (100vw - 992px) / 448, 20px);
  }
}
.l-header .l-header__nav a {
  padding: 1.6rem;
  position: relative;
}
@media (width <= 1400px) {
  .l-header .l-header__nav a {
    padding: 1.6rem clamp(8px, 8px + (16 - 8) * (100vw - 1080px) / 360, 16px);
  }
}
.l-header .l-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #ed86b3;
  transition: width 0.3s ease;
}
.l-header .l-header__nav a:hover::after {
  width: 100%;
}
.l-header .l-header__btn {
  max-width: 18rem;
  height: 6rem;
  width: 100%;
}
@media (width <= 1200px) {
  .l-header .l-header__btn {
    max-width: clamp(160px, 160px + (180 - 160) * (100vw - 992px) / 208, 180px);
  }
}
.l-header .l-header__btn .c-btn {
  font-size: 2rem;
}
.l-header .l-header__hamb {
  display: none;
}
.l-header .l-header__hamb {
  display: none;
}
@media (width <= 992px) {
  .l-header .l-header__hamb {
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100%;
    top: 8rem;
    left: 0;
    width: 100%;
    height: calc(100dvh - 8rem);
    background: #fff;
    z-index: 100;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px);
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
    border-top: 1px solid #eee;
  }
}
@media (width <= 992px) and (width <= 768px) {
  .l-header .l-header__hamb {
    height: calc(100dvh - 6.4rem);
    top: 6.4rem;
  }
}
.l-header .l-header__hamb.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
@media (width <= 992px) {
  body.admin-bar .l-header .l-header__hamb {
    top: calc(6.4rem + 32px);
    height: calc(100dvh - 6.4rem - 32px);
  }
}
@media screen and (max-width: 782px) {
  body.admin-bar .l-header .l-header__hamb {
    top: calc(4.8rem + 46px);
    height: calc(100dvh - 4.8rem - 46px);
  }
}
@media (width <= 768px) {
  body.admin-bar .l-header .l-header__hamb {
    top: calc(4.8rem + 46px);
    height: calc(100dvh - 4.8rem - 46px);
  }
}
.l-header .l-header__hamb-nav {
  width: 100%;
  flex: 1;
  min-height: 0;
  margin: 2.4rem auto;
  padding: 0 4rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (width <= 600px) {
  .l-header .l-header__hamb-nav {
    max-width: 28rem;
    padding: 0 1.6rem;
  }
}
.l-header .l-header__hamb-nav ul {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (width <= 600px) {
  .l-header .l-header__hamb-nav ul {
    gap: 1.6rem;
  }
}
.l-header .l-header__hamb-nav ul li {
  font-size: 2rem;
  font-weight: 600;
}
.l-header .l-header__hamb-btns {
  display: flex;
  margin-top: auto;
}
.l-header .l-header__hamb-btn {
  flex: 0 0 50%;
  height: 6.4rem;
}
.l-header .l-header__hamb-btn--left {
  background: #d1eea6;
}
.l-header .l-header__hamb-btn--right {
  background: #e91e8c;
  color: #fff;
}
.l-header .l-header__hamb-btn a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.l-header .l-header__hamb-btn-lg {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1.1px;
  line-height: 1.5;
}
.l-header .l-header__hamb-btn-sm {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.l-header .l-header__hamb-line {
  background: #009a3f;
  width: 100%;
  height: 6.4rem;
  color: #fff;
}
.l-header .l-header__hamb-line a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

body.is-menu-open {
  overflow: hidden;
}

.l-footer {
  background: #ffe5f0;
  padding-top: 5.2rem;
  padding-bottom: 1.6rem;
}
.l-footer .l-footer__inner {
  margin: 0 auto;
  max-width: 94rem;
  padding: 0 2rem 4.8rem 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1.6rem;
}
@media (width <= 768px) {
  .l-footer .l-footer__inner {
    flex-direction: column;
    gap: 3.2rem;
    padding: 0 4rem 3.2rem 4rem;
  }
}
@media (width <= 600px) {
  .l-footer .l-footer__inner {
    padding: 0 1.6rem 3.2rem 1.6rem;
  }
}
.l-footer .l-footer__logo {
  max-width: 32.8rem;
  width: 100%;
}
@media (width <= 768px) {
  .l-footer .l-footer__logo {
    max-width: 28rem;
  }
}
.l-footer .l-footer__copy {
  text-align: center;
  font-size: 1.3rem;
  color: #c41770;
  padding: 0;
  font-weight: 600;
}
@media (width <= 768px) {
  .l-footer .l-footer__copy {
    font-size: 1.2rem;
    padding: 0 1.2rem;
    letter-spacing: 0.2px;
  }
}
.l-footer .l-footer__content {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
@media (width <= 768px) {
  .l-footer .l-footer__content {
    width: 100%;
    justify-content: flex-start;
  }
}
.l-footer .l-footer__nav {
  margin-top: 1.6rem;
}
.l-footer .l-footer__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
@media (width <= 768px) {
  .l-footer .l-footer__nav ul {
    width: 100%;
    -moz-column-count: 1;
         column-count: 1;
  }
}
.l-footer .l-footer__nav li {
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.l-footer .l-footer__nav li a {
  border: none;
  font-size: 1.6rem;
}

.l-section {
  padding: 6.4rem 0;
}

.l-section--sm {
  padding: 4.8rem 0;
}

.l-section__inner {
  max-width: 94rem;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.l-section__inner--lg {
  max-width: 1440px;
}
.l-section__inner--md {
  max-width: 1020px;
}
@media (width <= 768px) {
  .l-section__inner {
    padding: 0 1.6rem;
  }
}

/**
 * ------------------------------------------------
 * 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: 600px) {
  .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: 900px) {
  .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: 899px) {
  .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;
  flex-wrap: wrap;
  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-card {
  padding: 2rem;
}

.c-title {
  text-align: center;
  font-family: "Noto Serif", serif;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 2.4rem;
}
@media (width <= 992px) {
  .c-title {
    font-size: 3.6rem;
    letter-spacing: 1.6px;
  }
}
@media (width <= 768px) {
  .c-title {
    font-size: 2.8rem;
    letter-spacing: 1.2px;
    line-height: 1.4;
    margin-top: 0.8rem;
  }
}
.c-title::after {
  content: "";
  height: 0.3rem;
  width: 8rem;
  background: #ec85b2;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.c-lead {
  font-size: 4rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 2px;
  font-family: "Noto Serif", serif;
}

.c-label {
  background: #fdd6e6;
  text-align: center;
  width: 100%;
  font-weight: 600;
  letter-spacing: 1.6px;
  position: relative;
  overflow: hidden;
}
.c-label::before, .c-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.3rem;
  height: 180%;
  background: #fff;
  transform: translateY(-50%) rotate(42deg);
  pointer-events: none;
}
.c-label::before {
  left: 10rem;
}
@media (width <= 992px) {
  .c-label::before {
    left: 6rem;
  }
}
@media (width <= 768px) {
  .c-label::before {
    left: 2.4rem;
  }
}
.c-label::after {
  content: "";
  right: 10rem;
}
@media (width <= 992px) {
  .c-label::after {
    right: 6rem;
  }
}
@media (width <= 768px) {
  .c-label::after {
    right: 2.4rem;
  }
}

.c-label-text {
  font-family: "Noto Serif", serif;
  font-size: 3.2rem;
  font-weight: 600;
}
@media (width <= 992px) {
  .c-label-text {
    font-size: 2.8rem;
  }
}
@media (width <= 768px) {
  .c-label-text {
    font-size: 2.4rem;
  }
}
@media (width <= 400px) {
  .c-label-text {
    font-size: 2rem;
  }
}

.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: currentColor;
  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;
}
.c-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.c-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.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: none;
}
.c-list li {
  position: relative;
}
.c-list li::before {
  content: "・";
  margin-right: 0.25em;
}

.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;
}
.c-breadcrumb__list li {
  position: relative;
  margin-right: 8px;
}
.c-breadcrumb__list li + li::before {
  font-family: "FontAwesome";
  content: "\f054";
  margin-right: 8px;
}

.c-flow {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.c-flow__item {
  border-radius: 32px;
  border: 3px solid #c41770;
  padding: 4rem;
  background: #fff;
  position: relative;
}
@media (width <= 768px) {
  .c-flow__item {
    padding: clamp(20px, 20px + (40 - 20) * (100vw - 480px) / 288, 40px);
  }
}
.c-flow__item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  left: 50%;
  bottom: -2.4rem;
  border-style: solid;
  border-right: 80px solid transparent;
  border-left: 80px solid transparent;
  border-top: 24px solid #e91e8c;
  border-bottom: 0;
}
@media (width <= 768px) {
  .c-flow__item::after {
    bottom: -2rem;
    border-right: 54px solid transparent;
    border-left: 54px solid transparent;
    border-top: 20px solid #e91e8c;
  }
}
@media (width <= 400px) {
  .c-flow__item::after {
    bottom: -1.8rem;
    border-right: 40px solid transparent;
    border-left: 40px solid transparent;
    border-top: 18px solid #e91e8c;
  }
}
.c-flow__item:last-child::after {
  display: none;
}

.c-desc {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.4px;
}
@media (width <= 768px) {
  .c-desc {
    font-size: 1.6rem;
    letter-spacing: 0.2px;
  }
}

.c-form {
  background: #faf8f5;
  border-radius: 32px;
  padding: 5.6rem 1.6rem;
}
@media (width <= 992px) {
  .c-form {
    border-radius: 24px;
    padding: 4.8rem 1.6rem;
  }
}
@media (width <= 768px) {
  .c-form {
    border-radius: 20px;
    padding: 3.2rem 1.6rem;
  }
}

.c-form__inner {
  max-width: 50rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
@media (width <= 992px) {
  .c-form__inner {
    max-width: 64rem;
  }
}

.c-form__group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.c-form__head {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (width <= 992px) {
  .c-form__head {
    gap: 0.8rem;
  }
}
@media (width <= 768px) {
  .c-form__head {
    align-items: flex-start;
  }
}

.c-form__req {
  border-radius: 4px;
  display: inline-flex;
  background: #e91e8c;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 2.4rem;
}
@media (width <= 992px) {
  .c-form__req {
    font-size: 1.5rem;
    width: 4.4rem;
    height: 2.2rem;
  }
}
@media (width <= 768px) {
  .c-form__req {
    font-size: 1.4rem;
    width: 4rem;
    flex-shrink: 0;
  }
}

.c-form__opt {
  border-radius: 4px;
  display: inline-flex;
  background: #666;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 2.4rem;
}
@media (width <= 992px) {
  .c-form__opt {
    font-size: 1.5rem;
    width: 4.4rem;
    height: 2.2rem;
  }
}
@media (width <= 768px) {
  .c-form__opt {
    font-size: 1.3rem;
    width: 4rem;
    height: 2.1rem;
    flex-shrink: 0;
  }
}

.c-form__label {
  font-size: 2rem;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.4px;
}
@media (width <= 992px) {
  .c-form__label {
    font-size: 1.8rem;
    letter-spacing: 0.3px;
  }
}
@media (width <= 768px) {
  .c-form__label {
    font-size: 1.6rem;
    line-height: 1.6;
    letter-spacing: 0.2px;
  }
}

.c-form__input {
  width: 100%;
  padding: 1.6rem;
  border-radius: 5px;
  border: 1px solid #c8c8c8;
  background: #fff;
  font-size: 2rem;
  letter-spacing: 0.4px;
}
@media (width <= 992px) {
  .c-form__input {
    padding: 1.4rem;
    font-size: 1.8rem;
    letter-spacing: 0.3px;
  }
}
@media (width <= 768px) {
  .c-form__input {
    padding: 1.2rem;
    font-size: 1.6rem;
    letter-spacing: 0.2px;
  }
}

.c-form__select {
  width: 100%;
  padding: 1.6rem;
  padding-right: 4.8rem;
  border-radius: 5px;
  border: 1px solid #c8c8c8;
  background: #fff;
  font-size: 2rem;
  letter-spacing: 0.4px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
@media (width <= 992px) {
  .c-form__select {
    padding: 1.4rem;
    padding-right: 4.4rem;
    font-size: 1.8rem;
    letter-spacing: 0.3px;
  }
}
@media (width <= 768px) {
  .c-form__select {
    padding: 1.2rem;
    padding-right: 4rem;
    font-size: 1.6rem;
    letter-spacing: 0.2px;
  }
}

.c-form__group:has(> .c-form__select)::after {
  content: "\f078";
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1;
  color: #666;
  pointer-events: none;
}
@media (width <= 992px) {
  .c-form__group:has(> .c-form__select)::after {
    right: 1.4rem;
    bottom: 1.4rem;
    font-size: 1.3rem;
  }
}
@media (width <= 768px) {
  .c-form__group:has(> .c-form__select)::after {
    right: 1.2rem;
    bottom: 1.2rem;
    font-size: 1.2rem;
  }
}

.c-form__textarea {
  width: 100%;
  padding: 1.6rem;
  height: 16rem;
  border-radius: 5px;
  border: 1px solid #c8c8c8;
  background: #fff;
  font-size: 2rem;
  letter-spacing: 0.4px;
}
@media (width <= 992px) {
  .c-form__textarea {
    padding: 1.4rem;
    height: 14rem;
    font-size: 1.8rem;
    letter-spacing: 0.3px;
  }
}
@media (width <= 768px) {
  .c-form__textarea {
    padding: 1.2rem;
    height: 12rem;
    font-size: 1.6rem;
    letter-spacing: 0.2px;
  }
}

.c-form__group--submit {
  margin-top: 1.6rem;
}
@media (width <= 992px) {
  .c-form__group--submit {
    margin-top: 1.2rem;
  }
}
@media (width <= 768px) {
  .c-form__group--submit {
    margin-top: 1rem;
  }
}

.c-form__note {
  text-align: center;
  padding: 0 1.6rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  margin-top: 0.8rem;
}
@media (width <= 992px) {
  .c-form__note {
    font-size: 1.5rem;
    letter-spacing: 0.4px;
  }
}
@media (width <= 768px) {
  .c-form__note {
    font-size: 1.3rem;
    padding: 0 0.8rem;
    letter-spacing: 0.2px;
    line-height: 1.6;
  }
}
.c-form__note a {
  text-decoration: underline;
}

.c-sidebtn {
  position: fixed;
  top: 55%;
  right: 0;
  transform: translateY(-50%);
  z-index: 99;
}
@media (width <= 768px) {
  .c-sidebtn {
    display: block;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
  }
}

.c-btn--side {
  width: 7.2rem;
  height: 28rem;
  background: #e91e8c;
  color: #fff;
  border-radius: 8px 0 0 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.6rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transition: transform 0.5s ease, box-shadow 0.5s ease, opacity 0.25s ease;
  transform: translateX(2.4rem);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.c-btn--side:hover, .c-btn--side:focus-visible {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media (width <= 768px) {
  .c-btn--side:hover, .c-btn--side:focus-visible {
    opacity: 1;
  }
}
@media (width <= 992px) {
  .c-btn--side {
    font-size: 2rem;
    width: 6.4rem;
    height: 24rem;
  }
}
@media (width <= 768px) {
  .c-btn--side {
    width: 100%;
    height: 5.6rem;
    border-radius: 0;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    transform: none !important;
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: 0.08em;
    padding: 0 1.6rem;
  }
}

.c-sidebtn.is-open .c-btn--side {
  transform: translateX(0);
}

.c-sidebtn.is-peek .c-btn--side {
  transform: translateX(2.4rem);
}

.c-sidebtn.is-hidden .c-btn--side {
  transform: translateX(8rem);
  opacity: 0.8;
  pointer-events: none;
}

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

.c-news__item {
  font-weight: 500;
}
.c-news__item a {
  padding: 1.6rem 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (width <= 768px) {
  .c-news__item a {
    flex-wrap: wrap;
  }
}
.c-news__item {
  border-bottom: 1px solid #ddd;
}

.c-news__time {
  flex: 0 0 10%;
}
@media (width <= 768px) {
  .c-news__time {
    flex: 0 0 auto;
    min-width: 8rem;
  }
}

.c-news__tag {
  flex: 0 0 15%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.75em;
  padding: 0 8px;
  border: 1px solid #e91e8c;
  color: #e91e8c;
  border-radius: 100vw;
}
@media (width <= 768px) {
  .c-news__tag {
    flex: 0 0 auto;
    min-width: 10rem;
  }
}

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

.nav-links {
  margin-top: 4.8rem;
  display: flex;
  justify-content: center;
}

.c-tax-note {
  font-weight: 500;
}
@media (width <= 768px) {
  .c-tax-note {
    font-size: 1.4rem;
  }
}

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

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

.c-btn--pry {
  background: #e91e8c;
  border-radius: 100vh;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  position: relative;
}
.c-btn--pry i {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translate(-50%, -50%);
}
@media (width <= 992px) {
  .c-btn--pry i {
    right: 3%;
  }
}
@media (width <= 768px) {
  .c-btn--pry i {
    right: 1.5%;
  }
}
@media (width <= 992px) {
  .c-btn--pry {
    font-size: 2.4rem;
  }
}
@media (width <= 768px) {
  .c-btn--pry {
    font-size: 1.8rem;
  }
}
.c-btn--pry span {
  padding-right: 1.5%;
}

.c-btn--green {
  background: #43bd17;
  border-radius: 100vh;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  position: relative;
}
.c-btn--green i {
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translate(-50%, -50%);
}
@media (width <= 768px) {
  .c-btn--green i {
    right: 1.5%;
  }
}
@media (width <= 768px) {
  .c-btn--green {
    font-size: 1.8rem;
  }
}
@media (width <= 768px) {
  .c-btn--green span {
    padding-right: 1.5%;
  }
}

.c-btn--submit {
  border: none;
  height: 6rem;
  color: #fff;
  padding: 0 1.6rem;
  border-radius: 100vh;
  background: #43bd17;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 1.2px;
}
@media (width <= 992px) {
  .c-btn--submit {
    height: 5.6rem;
    font-size: 2.2rem;
    letter-spacing: 1px;
    max-width: 40rem;
    margin: 0 auto;
    width: 100%;
  }
}
@media (width <= 768px) {
  .c-btn--submit {
    height: 5rem;
    padding: 0 1.2rem;
    font-size: 1.8rem;
    letter-spacing: 0.6px;
    max-width: 32rem;
  }
}

.c-btn--square {
  border-radius: 8px;
  background: #e91e8c;
  color: #fff;
  font-weight: 700;
  height: 100%;
}

/*==================================
  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-fv {
  background: url(../img/img-fv-pc.jpg) no-repeat center center/cover;
  width: 100%;
  height: clamp(0px, 38.8888888889vw, 952px);
  position: relative;
}
@media (width <= 992px) {
  .p-fv {
    height: auto;
  }
}
@media (width <= 768px) {
  .p-fv {
    background: url(../img/img-fv-sp.jpg) no-repeat center center/cover;
    height: auto;
    padding-top: 4.2666666667vw;
    padding-bottom: 4.2666666667vw;
  }
}
.p-fv .p-fv__badge {
  position: absolute;
  top: 2.4rem;
  left: 1.6rem;
  border: 1px solid #e91e8c;
  border-radius: 100vh;
  display: inline-flex;
  gap: 0.8rem;
  background: #fff;
  max-width: min(218px, 15.1388888889vw);
  width: 100%;
  height: min(54px, 3.75vw);
  align-items: center;
  justify-content: center;
}
@media (width <= 768px) {
  .p-fv .p-fv__badge {
    height: 8.8vw;
    max-width: 33.6vw;
    top: 1rem;
    left: 1rem;
  }
}
.p-fv .p-fv__badge span {
  font-family: "Noto Serif", serif;
  color: #c41770;
  font-size: min(20px, 1.3888888889vw);
  font-weight: 600;
}
@media (width <= 768px) {
  .p-fv .p-fv__badge span {
    font-size: 5.3333333333vw;
  }
}
.p-fv .p-fv__badge-icon {
  width: min(40px, 2.7777777778vw);
}
@media (width <= 768px) {
  .p-fv .p-fv__badge-icon {
    display: none;
  }
}
.p-fv .p-fv__content {
  margin-left: auto;
  width: clamp(0px, 52.7777777778vw, 1292px);
  padding-top: clamp(0px, 2.7777777778vw, 68px);
}
@media (width <= 768px) {
  .p-fv .p-fv__content {
    width: 100%;
    padding: 0 0.8rem;
    padding-top: 49.0666666667vw;
  }
}
.p-fv .p-fv__title {
  margin: 0;
}
@media (width <= 768px) {
  .p-fv .p-fv__title {
    max-width: 100%;
    overflow: hidden;
  }
}
.p-fv .p-fv__title-line {
  display: inline-block;
  background: #fff;
  padding: 0.3rem 1.2rem 0.4rem;
  font-family: "Noto Serif", serif;
  color: #2b2b2b;
  font-size: clamp(0px, 2.9166666667vw, 71.4px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media (width <= 768px) {
  .p-fv .p-fv__title-line:first-child {
    padding-right: 0rem;
  }
}
@media (width <= 768px) {
  .p-fv .p-fv__title-line {
    text-shadow: 0 0 16px #fff;
    padding: 0.8rem 1.2rem 0.3rem 1.2rem;
    font-size: 8vw;
    font-weight: 600;
    letter-spacing: 1.5px;
  }
}
.p-fv .p-fv__title-line:nth-child(2) {
  margin-left: clamp(0px, 7.5vw, 183.6px);
  margin-top: 0.8rem;
}
@media (width <= 768px) {
  .p-fv .p-fv__title-line:nth-child(2) {
    margin-left: 0;
  }
}
.p-fv .p-fv__title-line:last-child {
  margin-left: clamp(0px, 16.6666666667vw, 408px);
  margin-top: 0.8rem;
}
@media (width <= 768px) {
  .p-fv .p-fv__title-line:last-child {
    margin-left: 0;
  }
}
.p-fv .p-fv__title-lg {
  font-size: clamp(0px, 3.75vw, 91.8px);
}
@media (width <= 768px) {
  .p-fv .p-fv__title-lg {
    font-size: 9.6vw;
    font-weight: 600;
    letter-spacing: 1.8px;
  }
}
.p-fv .p-fv__lead {
  margin: 1.4rem 0 0 0;
  text-align: center;
  font-size: clamp(0px, 2.0833333333vw, 51px);
  font-weight: 600;
  font-family: "Noto Serif", serif;
  letter-spacing: 1.5px;
}
@media (width <= 768px) {
  .p-fv .p-fv__lead {
    display: none;
  }
}
.p-fv .p-fv__info {
  display: flex;
  margin: 0 0 0 -23%;
}
@media (width <= 768px) {
  .p-fv .p-fv__info {
    margin: 0;
    flex-direction: column;
  }
}
.p-fv .p-fv__price-area {
  position: relative;
  margin: clamp(0px, 0.5555555556vw, 13.6px) clamp(0px, 1.6666666667vw, 40.8px) 0 clamp(0px, 1.6666666667vw, 40.8px);
}
.p-fv .p-fv__ribbon-wrap {
  display: flex;
  margin-left: 25%;
}
@media (width <= 768px) {
  .p-fv .p-fv__ribbon-wrap {
    margin: 2.9333333333vw 0 0 0;
  }
}
.p-fv .p-fv__price {
  display: flex;
}
@media (width <= 768px) {
  .p-fv .p-fv__price {
    flex-direction: column;
    align-items: center;
    gap: 3.7333333333vw;
  }
}
.p-fv .p-fv__ribbon {
  width: clamp(0px, 21.5277777778vw, 527px);
}
@media (width <= 768px) {
  .p-fv .p-fv__ribbon {
    width: 70.6666666667vw;
    margin: 0 auto;
  }
}
.p-fv .p-fv__ribbon-note {
  width: clamp(0px, 11.6666666667vw, 285.6px);
  margin: clamp(0px, 0.8333333333vw, 20.4px) 0 0px clamp(0px, 1.3888888889vw, 34px);
}
@media (width <= 768px) {
  .p-fv .p-fv__ribbon-note {
    display: none;
  }
}
@media (width <= 768px) {
  .p-fv .p-fv__ribbon-note2 {
    width: auto;
    margin: -4% 0 0 0;
    color: #c41770;
    text-align: center;
    font-family: "Noto Serif", serif;
    font-size: 4.8vw;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.8px;
  }
}
.p-fv .p-fv__price-unit {
  border-radius: 8px;
  background: #289700;
  font-family: "Noto Serif", serif;
  color: #fff;
  text-align: center;
  font-size: clamp(0px, 2.7777777778vw, 68px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2.4px;
  width: clamp(0px, 8.3333333333vw, 204px);
  height: clamp(0px, 3.4722222222vw, 85px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: clamp(0px, 3.8888888889vw, 95.2px) clamp(0px, 1.3888888889vw, 34px) 0 0;
}
@media (width <= 768px) {
  .p-fv .p-fv__price-unit {
    font-size: 8vw;
    width: 29.3333333333vw;
    height: 11.2vw;
    margin: -4% 0 0 0;
  }
}
.p-fv .p-fv__price-unit span {
  padding-top: clamp(0px, 0.3472222222vw, 8.5px);
  font-size: clamp(0px, 2.2222222222vw, 54.4px);
}
@media (width <= 768px) {
  .p-fv .p-fv__price-unit span {
    font-size: 8vw;
    padding-top: 0;
  }
}
.p-fv .p-fv__price-img {
  width: clamp(0px, 35.2777777778vw, 863.6px);
}
@media (width <= 768px) {
  .p-fv .p-fv__price-img {
    width: 86.4vw;
  }
}
.p-fv .p-fv__cta {
  margin-top: clamp(0px, 1.3888888889vw, 34px);
  margin-left: -1.5%;
  flex-shrink: 0;
  width: clamp(0px, 13.4722222222vw, 329.8px);
}
@media (width <= 768px) {
  .p-fv .p-fv__cta {
    width: 90.1333333333vw;
    margin: 2.1333333333vw auto 0 auto;
  }
}

.p-service {
  padding-top: 10rem;
}
@media (width <= 768px) {
  .p-service {
    padding-top: 8rem;
  }
}
.p-service .l-section__inner {
  position: relative;
}
.p-service .p-service__tax-note {
  position: absolute;
  top: -8rem;
  right: 0;
  font-weight: 600;
}
@media (width <= 768px) {
  .p-service .p-service__tax-note {
    top: -7.4rem;
    font-size: 1.4rem;
  }
}
.p-service .p-service__block {
  margin-top: 5.2rem;
  display: flex;
  gap: 2.4rem;
  padding: 0 4.8rem;
}
@media (width <= 992px) {
  .p-service .p-service__block {
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
  }
}
@media (width <= 768px) {
  .p-service .p-service__block {
    margin-top: 4rem;
    gap: 1.6rem;
  }
}
.p-service .p-service__block-img {
  flex: 0 0 17rem;
}
@media (width <= 992px) {
  .p-service .p-service__block-img {
    width: min(100%, 32rem);
    flex: 0 0 auto;
    max-width: 16rem;
  }
}
@media (width <= 400px) {
  .p-service .p-service__block-img {
    max-width: 14rem;
  }
}
.p-service .p-service__block-main {
  display: flex;
  gap: 2rem;
  flex: 1;
  align-items: center;
}
@media (width <= 992px) {
  .p-service .p-service__block-main {
    margin-top: 2.4rem;
  }
}
@media (width <= 768px) {
  .p-service .p-service__block-main {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.6rem;
  }
}
.p-service .p-service__item {
  display: flex;
  flex-direction: column;
}
.p-service .p-service__item-title {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 600;
  margin: 0;
}
.p-service .p-service__circle {
  width: 26rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #faf8f5;
  margin-top: 1.2rem;
}
@media (width <= 768px) {
  .p-service .p-service__circle {
    width: 30rem;
    margin-top: 0.8rem;
  }
}
.p-service .p-service__item:first-child .p-service__circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-service .p-service__circle-size {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8rem;
  height: 5rem;
  padding: 0 1.2rem;
  background: #e94f97;
  border-radius: 0.4rem;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
}
.p-service .p-service__circle-price {
  color: #333;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 1rem 0 0 0;
}
.p-service .p-service__circle-price-num {
  font-size: 4.8rem;
  line-height: 1;
  font-weight: 700;
  margin-right: 0.2rem;
}
.p-service .p-service__circle-note {
  font-size: 1.5rem;
  margin: 2.4rem 0 0 0;
}
@media (width <= 768px) {
  .p-service .p-service__circle-note {
    font-size: 1.6rem;
  }
}
.p-service .p-service__plus {
  font-size: 5.4rem;
  text-align: center;
  color: rgb(104, 101, 97);
  flex-shrink: 0;
  margin-top: 4rem;
}
@media (width <= 992px) {
  .p-service .p-service__plus {
    margin-top: 0;
  }
}
@media (width <= 768px) {
  .p-service .p-service__plus {
    font-size: 4rem;
  }
}
.p-service .p-service__item:last-child .p-service__circle {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-service .p-service__list {
  margin: 0;
  padding: 0 1.6rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.p-service .p-service__list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.p-service .p-service__list-item + .p-service .p-service__list-item {
  margin-top: 0.8rem;
}
.p-service .p-service__label {
  min-width: 9.6rem;
  height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.6rem;
  background: #e94f97;
  border-radius: 0.4rem;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.p-service .p-service__value {
  color: #333;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.p-service .p-service__desc {
  font-size: 1.5rem;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin: 2rem 0 0 0;
}
@media (width <= 768px) {
  .p-service .p-service__desc {
    padding: 0 1.6rem;
  }
}

.p-band {
  padding-top: 2.4rem;
}

.p-area .p-area__title {
  font-size: 3.6rem;
  text-align: center;
}
@media (width <= 992px) {
  .p-area .p-area__title {
    font-size: 3.2rem;
  }
}
@media (width <= 768px) {
  .p-area .p-area__title {
    font-size: clamp(24px, 24px + (32 - 24) * (100vw - 600px) / 168, 32px);
  }
}
@media (width <= 600px) {
  .p-area .p-area__title::after {
    position: relative;
    top: 1.7em;
    width: 2em !important;
    transform: translateY(-50%) rotate(-45deg);
    margin-left: 0.7em;
  }
}
@media (width <= 600px) {
  .p-area .p-area__title::before {
    position: relative;
    top: 1.7em;
    width: 2em !important;
    transform: translateY(-50%) rotate(45deg);
    margin-right: 0.7em;
  }
}
@media (width <= 600px) {
  .p-area .p-area__title {
    font-size: 2.4rem;
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }
  .p-area .p-area__title span {
    white-space: nowrap;
  }
}
.p-area .p-area__content {
  display: grid;
  grid-template-columns: 21rem minmax(24rem, 1fr) 21rem;
  align-items: center;
  justify-content: center;
  gap: 1.6rem 2.4rem;
  max-width: 76rem;
  margin: 4.8rem auto 0 auto;
}
@media (width <= 768px) {
  .p-area .p-area__content {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "left right" "map  map";
    gap: 1.2rem;
    row-gap: 2.4rem;
    align-items: start;
    max-width: 48rem;
  }
}
.p-area .c-decorator:after,
.p-area .c-decorator:before {
  background-color: currentColor;
  content: "";
  display: inline-block;
  height: 3px;
  width: 1.6em;
}
.p-area .p-area__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (width <= 768px) {
  .p-area .p-area__list {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    align-items: center;
  }
}
.p-area .p-area__list--left {
  justify-self: start;
}
@media (width <= 768px) {
  .p-area .p-area__list--left {
    grid-area: left;
    justify-self: stretch;
  }
}
.p-area .p-area__list--right {
  justify-self: end;
}
@media (width <= 768px) {
  .p-area .p-area__list--right {
    width: 100%;
    min-height: 5.6rem;
    font-size: 2rem;
  }
}
.p-area .p-area__list-item {
  border-radius: 8px;
  border: 2px solid #c41770;
  background: #fff;
  width: 21rem;
  min-height: 6.4rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-weight: 600;
  font-size: 2.4rem;
  color: #c41770;
}
@media (width <= 768px) {
  .p-area .p-area__list-item {
    font-size: 1.8rem;
    min-height: 6rem;
    width: 100%;
  }
}
.p-area .p-area__map {
  width: 100%;
  max-width: 36rem;
  justify-self: center;
}
@media (width <= 768px) {
  .p-area .p-area__map {
    grid-area: map;
    max-width: 30rem;
    width: 100%;
    justify-self: center;
    margin-top: 0.8rem;
  }
}
.p-area .p-area__map img {
  width: 100%;
  height: auto;
  display: block;
}
.p-area .p-area__list-note {
  display: block;
  font-size: 1.6rem;
}

.p-problem .p-problem__content {
  position: relative;
  padding-top: 18rem;
}
@media (width <= 992px) {
  .p-problem .p-problem__content {
    padding-top: 8rem;
  }
}
@media (width <= 768px) {
  .p-problem .p-problem__content {
    padding-top: 5.2rem;
  }
}
.p-problem .p-problem__items {
  display: flex;
  gap: 2rem;
  justify-content: center;
  position: relative;
}
@media (width <= 992px) {
  .p-problem .p-problem__items {
    margin-top: 4rem;
  }
}
@media (width <= 768px) {
  .p-problem .p-problem__items {
    gap: 3.2rem;
  }
}
@media (width <= 992px) {
  .p-problem .p-problem__items {
    display: none;
  }
}
.p-problem .p-problem__baloon {
  font-size: 2.4rem;
  letter-spacing: 0.48px;
  position: absolute;
  z-index: 1;
  margin: 0;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.48px;
  line-height: 1.5;
  text-align: center;
  max-width: 40.7rem;
  height: 10rem;
  width: 100%;
}
@media (width <= 1440px) {
  .p-problem .p-problem__baloon {
    max-width: 28.2638888889vw;
    font-size: 1.6666666667vw;
    height: 6.9444444444vw;
  }
}
@media (width <= 992px) {
  .p-problem .p-problem__baloon {
    display: none;
  }
}
.p-problem .p-problem__baloon span {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 5.2rem);
}
@media (width <= 1440px) {
  .p-problem .p-problem__baloon span {
    width: calc(100% - 3.6111111111vw);
  }
}
.p-problem .p-problem__baloon--left-top {
  top: 4.8rem;
  left: 22rem;
}
@media (width <= 1440px) {
  .p-problem .p-problem__baloon--left-top {
    left: 15.2777777778vw;
  }
}
@media (width <= 1200px) {
  .p-problem .p-problem__baloon--left-top {
    top: 6.4rem;
  }
}
.p-problem .p-problem__baloon--left-bottom {
  left: 12.2rem;
  top: 16.4rem;
  max-width: 45.2rem;
}
@media (width <= 1440px) {
  .p-problem .p-problem__baloon--left-bottom {
    left: 6.9444444444vw;
    max-width: 31.3888888889vw;
  }
}
.p-problem .p-problem__baloon--left-bottom span {
  padding-right: 3.2rem;
  top: 50%;
}
@media (width <= 1440px) {
  .p-problem .p-problem__baloon--left-bottom span {
    padding-right: 2.2222222222vw;
  }
}
.p-problem .p-problem__baloon--right-top {
  top: 4.8rem;
  right: 18rem;
  max-width: 45rem;
}
@media (width <= 1440px) {
  .p-problem .p-problem__baloon--right-top {
    max-width: 31.25vw;
    right: 12.5vw;
  }
}
@media (width <= 1200px) {
  .p-problem .p-problem__baloon--right-top {
    top: 6.4rem;
  }
}
.p-problem .p-problem__baloon--right-bottom {
  top: 16.4rem;
  right: 12.2rem;
  max-width: 45.2rem;
}
@media (width <= 1440px) {
  .p-problem .p-problem__baloon--right-bottom {
    max-width: 31.3888888889vw;
    right: 8.4722222222vw;
  }
}
@media (width <= 1200px) {
  .p-problem .p-problem__baloon--right-bottom {
    right: 6.9444444444vw;
  }
}
.p-problem .p-problem__baloon--right-bottom span {
  padding-left: 3.2rem;
  top: 50%;
}
@media (width <= 1440px) {
  .p-problem .p-problem__baloon--right-bottom span {
    padding-left: 2.2222222222vw;
  }
}
@media (width <= 992px) {
  .p-problem .p-problem__baloon-list {
    display: flex;
    max-width: 72rem;
    margin: 0 auto;
    gap: 1.6rem;
  }
}
@media (width <= 768px) {
  .p-problem .p-problem__baloon-list {
    max-width: 54rem;
    flex-direction: column;
    gap: 1.6rem;
  }
}
.p-problem .p-problem__baloon-block {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.p-problem .p-problem__baloon-block--right .p-problem__baloon-item {
  --p-problem-baloon-bg: #f7faf5;
  --p-problem-baloon-border: #d3decc;
}
.p-problem .p-problem__baloon-item {
  --p-problem-baloon-bg: #faf8f5;
  --p-problem-baloon-border: #e9e4db;
  text-align: center;
  font-size: 2rem;
  width: 100%;
  border-radius: 24px;
  border: 3px solid var(--p-problem-baloon-border);
  background: var(--p-problem-baloon-bg);
  fill: var(--p-problem-baloon-bg);
  stroke-width: 3px;
  stroke: var(--p-problem-baloon-border);
  filter: drop-shadow(3px 3px 0 var(--p-problem-baloon-border));
  min-height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  font-weight: 500;
  position: relative;
}
.p-problem .p-problem__baloon-item::before, .p-problem .p-problem__baloon-item::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.p-problem .p-problem__baloon-item::before {
  width: 4rem;
  height: 3.2rem;
  background: var(--p-problem-baloon-border);
}
.p-problem .p-problem__baloon-item::after {
  left: 50%;
  width: 3.4rem;
  height: 2.6rem;
  background: var(--p-problem-baloon-bg);
  margin-top: -1px;
}
@media (width <= 768px) {
  .p-problem .p-problem__baloon-item {
    font-size: 1.6rem;
    min-height: 7.2rem;
    padding: 0.8rem 1rem;
  }
  .p-problem .p-problem__baloon-item::before {
    width: 3.2rem;
    height: 2.6rem;
  }
  .p-problem .p-problem__baloon-item::after {
    left: 50%;
    width: 2.7rem;
    height: 2.1rem;
  }
}
.p-problem .p-problem__baloon img {
  display: block;
  width: 100%;
  height: auto;
}
.p-problem .p-problem__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-problem .p-problem__item-icon {
  width: 12rem;
  height: 12rem;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
}
@media (width <= 768px) {
  .p-problem .p-problem__item-icon {
    width: 10rem;
    height: 10rem;
  }
}
.p-problem .p-problem__item-label {
  font-size: 2.2rem;
  font-weight: 600;
}
@media (width <= 768px) {
  .p-problem .p-problem__item-label {
    margin: 0.8rem 0;
    font-size: 1.8rem;
  }
}
.p-problem .p-problem__arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 240px solid transparent;
  border-left: 240px solid transparent;
  border-top: 56px solid #e91e8c;
  border-bottom: 0;
  margin: 4.8rem auto 0 auto;
  position: relative;
  z-index: 2;
}
@media (width <= 992px) {
  .p-problem .p-problem__arrow {
    border-right-width: 180px;
    border-left-width: 180px;
    border-top-width: 44px;
    margin-top: 4rem;
  }
}
@media (width <= 768px) {
  .p-problem .p-problem__arrow {
    border-right-width: 120px;
    border-left-width: 120px;
    border-top-width: 30px;
    margin-top: 3.2rem;
  }
}

.p-solution {
  padding-top: 0;
  margin-top: -1.6rem;
  padding-bottom: 12.8rem;
}
@media (width <= 768px) {
  .p-solution {
    padding-bottom: 6.4rem;
  }
}
.p-solution .p-solution__title {
  position: relative;
  z-index: 1;
  color: #c41770;
  text-align: center;
  font-family: "Noto Serif", serif;
  font-size: 3.8rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 1.9px;
}
@media (width <= 768px) {
  .p-solution .p-solution__title {
    font-size: 2.8rem;
    letter-spacing: 1.3px;
  }
}
.p-solution .p-solution__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(84rem, 100%);
  height: 12rem;
  border-radius: 50%;
  background: #ffe9f2;
  filter: blur(1.5rem);
  z-index: -1;
  pointer-events: none;
}
.p-solution .p-solution__title span {
  position: relative;
  z-index: 1;
}
.p-solution .l-section__content {
  margin-top: 8rem;
}
@media (width <= 768px) {
  .p-solution .l-section__content {
    margin-top: 6.4rem;
  }
}
.p-solution .p-solution__desc {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.4px;
}
@media (width <= 768px) {
  .p-solution .p-solution__desc {
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.2px;
  }
}
.p-solution .p-solution__img {
  max-width: 70rem;
  margin: 3.2rem auto 0 auto;
  width: 100%;
}

.p-fee {
  background: #faf8f5;
  padding-bottom: 12.8rem;
}
@media (width <= 768px) {
  .p-fee {
    padding-bottom: 6.4rem;
  }
}
.p-fee .p-fee__content {
  max-width: 76rem;
  margin: 8rem auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  position: relative;
}
@media (width <= 768px) {
  .p-fee .p-fee__content {
    width: 100%;
    margin-top: 6rem;
    gap: 1.2rem;
  }
}
.p-fee .p-fee__tax-note {
  position: absolute;
  top: -4rem;
  right: 0;
}
@media (width <= 768px) {
  .p-fee .p-fee__tax-note {
    top: -2.8rem;
  }
}
.p-fee .p-fee__box {
  background: #fff;
  border-radius: 32px;
  width: 100%;
  padding: 4rem;
}
@media (width <= 768px) {
  .p-fee .p-fee__box {
    border-radius: 24px;
    padding: 2.4rem 1.6rem;
  }
}
.p-fee .p-fee__plus i {
  color: #c41770;
  font-size: 6rem;
}
@media (width <= 768px) {
  .p-fee .p-fee__plus i {
    font-size: 4rem;
    line-height: 1;
  }
}
.p-fee .p-fee__box-lable {
  margin: 0;
  display: flex;
  height: 4rem;
  padding: 0 1rem;
  align-items: center;
  justify-content: center;
  background: #fdd6e6;
  text-align: center;
  font-family: "Noto Serif", serif;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 1.3px;
}
@media (width <= 768px) {
  .p-fee .p-fee__box-lable {
    height: 3.4rem;
    font-size: 2rem;
    letter-spacing: 0.8px;
    padding: 0 0.8rem;
  }
}
.p-fee .p-fee__box-content {
  display: flex;
  gap: 2.4rem;
  margin-top: 3.2rem;
}
@media (width <= 768px) {
  .p-fee .p-fee__box-content {
    flex-direction: column;
    margin-top: 2.4rem;
  }
}
.p-fee .p-fee__price-table-wrap {
  flex: 0 0 50%;
  padding-left: 1.6rem;
}
@media (width <= 768px) {
  .p-fee .p-fee__price-table-wrap {
    flex: 1 1 auto;
    width: 100%;
    padding-left: 0;
  }
}
.p-fee .p-fee__price-table {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin: 0;
}
@media (width <= 768px) {
  .p-fee .p-fee__price-table {
    gap: 1.2rem;
  }
}
.p-fee .p-fee__price-row {
  display: flex;
  gap: 1.6rem;
  margin: 0;
}
@media (width <= 768px) {
  .p-fee .p-fee__price-row {
    gap: 1rem;
    align-items: center;
  }
}
.p-fee .p-fee__price-row dt {
  flex-basis: 11.5rem;
  padding: 0 1rem;
  height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #e91e8c;
  color: #fff;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 1.1px;
  line-height: 1;
}
@media (width <= 768px) {
  .p-fee .p-fee__price-row dt {
    flex-basis: 8.4rem;
    height: 3rem;
    padding: 0 0.6rem;
    font-size: 1.6rem;
    letter-spacing: 0.4px;
  }
}
.p-fee .p-fee__price-row dd {
  flex: 1;
  margin: 0;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.48px;
  line-height: 1;
}
@media (width <= 768px) {
  .p-fee .p-fee__price-row dd {
    font-size: 2rem;
    letter-spacing: 0.2px;
    line-height: 1.2;
    text-align: right;
  }
}
.p-fee .p-fee__price-lg {
  font-size: 4rem;
}
@media (width <= 768px) {
  .p-fee .p-fee__price-lg {
    font-size: 3.2rem;
  }
}
.p-fee .p-fee__included {
  border-radius: 16px;
  border: 3px solid #e91e8c;
  position: relative;
  padding: 3rem 2rem 2rem;
  flex: 1;
  height: 100%;
  margin-top: 1rem;
}
@media (width <= 768px) {
  .p-fee .p-fee__included {
    padding: 2.4rem 1.6rem 2.4rem;
  }
}
.p-fee .p-fee__included-title {
  color: #c41770;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0;
  padding: 0 2rem;
  background: #fff;
  position: absolute;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  top: 0;
  left: 50%;
}
@media (width <= 768px) {
  .p-fee .p-fee__included-title {
    font-size: 1.8rem;
  }
}
.p-fee .p-fee__included-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 2.4rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 2rem;
}
@media (width <= 768px) {
  .p-fee .p-fee__included-list {
    font-size: 1.6rem;
  }
}
.p-fee .p-fee__included-list li {
  position: relative;
}
.p-fee .p-fee__included-list li::before {
  content: "・";
}
.p-fee .p-fee__box--low {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (width <= 768px) {
  .p-fee .p-fee__box--low {
    gap: 2.4rem;
    flex-direction: column;
  }
}
.p-fee .p-fee__option-box {
  max-width: 50rem;
  margin: 0 auto;
}
.p-fee .p-fee__reburial {
  max-width: 50rem;
  margin: 0 auto;
  width: 100%;
}
.p-fee .p-fee__option-note {
  color: #c41770;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 1.6rem auto 4rem auto;
}
@media (width <= 768px) {
  .p-fee .p-fee__option-note {
    font-size: 1.6rem;
  }
}
.p-fee .p-fee__option-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 0 auto;
  max-width: 26rem;
  width: 100%;
}
.p-fee .p-fee__option-item {
  display: flex;
  gap: 1rem;
}
.p-fee .p-fee__option-item dt {
  flex-basis: 3.6rem;
  border-radius: 4px;
  background: #e91e8c;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
}
@media (width <= 768px) {
  .p-fee .p-fee__option-item dt {
    font-size: 1.6rem;
  }
}
.p-fee .p-fee__option-item dd {
  flex: 1;
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.4px;
}
@media (width <= 768px) {
  .p-fee .p-fee__option-item dd {
    font-size: 1.8rem;
  }
}
.p-fee .p-fee__deco {
  color: #c41770;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin: 0.4rem 0 1.2rem;
}
@media (width <= 768px) {
  .p-fee .p-fee__deco {
    font-size: 1.8rem;
  }
}
.p-fee .p-fee__reburial-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 33rem;
  width: 100%;
  margin: 0 auto;
}
@media (width <= 768px) {
  .p-fee .p-fee__reburial-list {
    max-width: 100%;
  }
}
.p-fee .p-fee__reburial-item {
  display: flex;
  gap: 1rem;
}
.p-fee .p-fee__reburial-item dt {
  background: #e91e8c;
  border-radius: 4px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 11.5rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
}
@media (width <= 768px) {
  .p-fee .p-fee__reburial-item dt {
    font-size: 1.6rem;
  }
}
.p-fee .p-fee__reburial-item dd {
  flex: 1;
  font-size: 2.2rem;
  font-weight: 600;
  text-align: left;
  margin: 0;
}
@media (width <= 768px) {
  .p-fee .p-fee__reburial-item dd {
    font-size: 1.8rem;
  }
}
.p-fee .p-fee__reburial-note {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}
@media (width <= 768px) {
  .p-fee .p-fee__reburial-note {
    font-size: 1.2rem;
    text-indent: -1em;
    padding-left: 1em;
  }
}
.p-fee .p-fee__btn {
  margin: 6rem auto 0 auto;
  height: 10rem;
  max-width: 76rem;
  width: 100%;
}
.p-fee .p-fee__btn .c-btn {
  height: 100%;
}
@media (width <= 992px) {
  .p-fee .p-fee__btn {
    max-width: 46.4rem;
    height: 8rem;
  }
}
@media (width <= 768px) {
  .p-fee .p-fee__btn {
    height: 6rem;
  }
}
.p-fee .p-fee__extra {
  margin-top: 10rem;
  border: 2px solid #289700;
  border-radius: 32px;
  padding: 7.2rem 4rem 4rem 4rem;
  position: relative;
}
@media (width <= 768px) {
  .p-fee .p-fee__extra {
    border-radius: 24px;
    padding: 6.4rem 1.6rem 3.2rem;
  }
}
.p-fee .p-fee__extra-head {
  color: #289700;
  font-family: "Noto Serif", serif;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 1.4px;
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #faf8f5;
  padding: 0 2rem;
  white-space: nowrap;
}
@media (width <= 768px) {
  .p-fee .p-fee__extra-head {
    font-size: 2rem;
    letter-spacing: 0.6px;
    top: -1.6rem;
    padding: 0 1.2rem;
    line-height: 1.4;
    text-align: center;
  }
}
@media (width <= 400px) {
  .p-fee .p-fee__extra-head {
    font-size: 1.8rem;
    letter-spacing: 0.4px;
    line-height: 1.3;
  }
}
.p-fee .p-fee__extra-head-text {
  font-size: 3.6rem;
  letter-spacing: 1.8px;
}
@media (width <= 768px) {
  .p-fee .p-fee__extra-head-text {
    font-size: 2.4rem;
    letter-spacing: 1.2px;
    display: block;
  }
}
.p-fee .p-fee__extra-content {
  display: flex;
  gap: 4rem;
  justify-content: space-between;
}
@media (width <= 768px) {
  .p-fee .p-fee__extra-content {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
}
.p-fee .p-fee__extra-img {
  flex: 0 0 30%;
}
@media (width <= 768px) {
  .p-fee .p-fee__extra-img {
    width: 100%;
    max-width: 24rem;
    flex: 0 0 auto;
  }
}
.p-fee .p-fee__extra-desc {
  flex: 0 0 33%;
  position: relative;
}
@media (width <= 768px) {
  .p-fee .p-fee__extra-desc {
    width: 100%;
    max-width: 28rem;
    flex: 0 0 auto;
  }
}
.p-fee .p-fee__extra-desc::before {
  content: "";
  position: absolute;
  top: 0;
  width: 26rem;
  height: 26rem;
  aspect-ratio: 1;
  border-radius: 100%;
  background: #fff;
  z-index: 0;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
@media (width <= 768px) {
  .p-fee .p-fee__extra-desc::before {
    width: 22rem;
    height: 22rem;
  }
}
.p-fee .p-fee__extra-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
  margin-top: 6rem;
}
@media (width <= 768px) {
  .p-fee .p-fee__extra-list {
    margin-top: 4rem;
  }
}
.p-fee .p-fee__extra-item {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
@media (width <= 992px) {
  .p-fee .p-fee__extra-item {
    gap: 1rem;
  }
}
@media (width <= 768px) {
  .p-fee .p-fee__extra-item {
    gap: 1.4rem;
  }
}
.p-fee .p-fee__extra-item dt {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 9.4rem;
  height: 4rem;
  color: #fff;
  border-radius: 4px;
  background: #43bd17;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}
@media (width <= 992px) {
  .p-fee .p-fee__extra-item dt {
    flex-basis: clamp(64px, 64px + (80 - 64) * (100vw - 768px) / 224, 80px);
    font-size: clamp(16px, 16px + (18 - 16) * (100vw - 768px) / 224, 18px);
  }
}
@media (width <= 768px) {
  .p-fee .p-fee__extra-item dt {
    flex-basis: 7.6rem;
    height: 3.2rem;
    font-size: 1.6rem;
    letter-spacing: 0.4px;
  }
}
.p-fee .p-fee__extra-item dd {
  margin: 0;
  flex: 1;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.56px;
}
@media (width <= 992px) {
  .p-fee .p-fee__extra-item dd {
    font-size: clamp(20px, 20px + (24 - 20) * (100vw - 768px) / 224, 24px);
  }
}
@media (width <= 768px) {
  .p-fee .p-fee__extra-item dd {
    font-size: 2rem;
    letter-spacing: 0.4px;
  }
}
.p-fee .p-fee__extra-item-sm {
  font-size: 2rem;
  letter-spacing: 0.4px;
}
@media (width <= 992px) {
  .p-fee .p-fee__extra-item-sm {
    font-size: clamp(16px, 16px + (20 - 16) * (100vw - 768px) / 224, 20px);
  }
}
@media (width <= 768px) {
  .p-fee .p-fee__extra-item-sm {
    font-size: 1.6rem;
    letter-spacing: 0.2px;
  }
}
.p-fee .p-fee__extra-note {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  letter-spacing: 0.8px;
}
@media (width <= 992px) {
  .p-fee .p-fee__extra-note {
    font-size: 1.8rem;
  }
}
@media (width <= 768px) {
  .p-fee .p-fee__extra-note {
    font-size: 1.6rem;
    letter-spacing: 0.4px;
  }
}
.p-fee .p-fee__extra-area {
  flex: 0 0 30%;
}
@media (width <= 768px) {
  .p-fee .p-fee__extra-area {
    width: 100%;
    max-width: 32rem;
    flex: 0 0 auto;
  }
}
.p-fee .p-fee__extra-map-note {
  font-size: 1.7rem;
  font-weight: 500;
  margin: -1.6rem 0 0 0;
}
@media (width <= 992px) {
  .p-fee .p-fee__extra-map-note {
    margin: 1rem 0 0 0;
    font-size: 1.6rem;
  }
}
@media (width <= 768px) {
  .p-fee .p-fee__extra-map-note {
    margin-top: 0.8rem;
    font-size: 1.4rem;
    text-align: center;
  }
}
.p-fee .p-fee__extra-btn {
  margin: 3.2rem auto 0 auto;
  max-width: 46.4rem;
  height: 8rem;
}
@media (width <= 768px) {
  .p-fee .p-fee__extra-btn {
    max-width: 46.4rem;
    height: 6rem;
    margin-top: 4rem;
  }
}
.p-fee .p-fee__extra-btn .c-btn {
  height: 100%;
}

.p-cta {
  background: #d1eea6;
  padding-bottom: 0;
}
@media (width <= 600px) {
  .p-cta {
    padding-bottom: 6.4rem;
  }
}
.p-cta .l-section__inner {
  position: relative;
}
.p-cta .p-cta__human {
  bottom: 0;
  position: absolute;
  width: 28.5rem;
}
@media (width <= 1400px) {
  .p-cta .p-cta__human {
    width: clamp(180px, 180px + (285 - 180) * (100vw - 992px) / 408, 285px);
  }
}
@media (width <= 992px) {
  .p-cta .p-cta__human {
    width: clamp(140px, 140px + (180 - 140) * (100vw - 768px) / 224, 180px);
  }
}
@media (width <= 600px) {
  .p-cta .p-cta__human {
    display: none;
  }
}
.p-cta .p-cta__human--left {
  left: 0;
}
.p-cta .p-cta__human--right {
  right: 0;
}
.p-cta .p-cta__content {
  display: flex;
  flex-direction: column;
}
@media (width <= 768px) {
  .p-cta .p-cta__content {
    width: 100%;
  }
}
.p-cta .p-cta__title {
  font-size: 6.4rem;
  text-align: center;
  font-family: "Noto Serif", serif;
  letter-spacing: 3.2px;
  margin: 0;
}
@media (width <= 1200px) {
  .p-cta .p-cta__title {
    font-size: 4.8rem;
    left: 2.4px;
  }
}
@media (width <= 992px) {
  .p-cta .p-cta__title {
    font-size: clamp(40px, 40px + (48 - 40) * (100vw - 768px) / 224, 48px);
  }
}
@media (width <= 768px) {
  .p-cta .p-cta__title {
    font-size: clamp(21px, 21px + (40 - 21) * (100vw - 340px) / 428, 40px);
    letter-spacing: 0.6px;
  }
}
.p-cta .p-cta__lead {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.56px;
  font-family: "Noto Serif", serif;
  margin: 0.4rem 0 0 0;
}
@media (width <= 1200px) {
  .p-cta .p-cta__lead {
    font-size: 2.4rem;
    letter-spacing: 0.48px;
  }
}
@media (width <= 992px) {
  .p-cta .p-cta__lead {
    font-size: clamp(20px, 20px + (24 - 20) * (100vw - 768px) / 224, 24px);
  }
}
@media (width <= 768px) {
  .p-cta .p-cta__lead {
    font-size: clamp(15px, 15px + (20 - 15) * (100vw - 340px) / 428, 20px);
    letter-spacing: 0.2px;
    margin-top: 0.8rem;
  }
}
.p-cta .p-cta__contact {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3.2rem;
}
@media (width <= 992px) {
  .p-cta .p-cta__contact {
    gap: clamp(24px, 24px + (40 - 24) * (100vw - 768px) / 224, 40px);
  }
}
@media (width <= 768px) {
  .p-cta .p-cta__contact {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
}
.p-cta .p-cta__tel {
  background: #fff;
  border-radius: 100vw;
  padding: 2rem 1rem 1rem 1rem;
  height: 10.2rem;
  max-width: 43rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (width <= 768px) {
  .p-cta .p-cta__tel {
    height: 8rem;
    padding: 1.2rem 0.8rem 0.8rem 0.8rem;
  }
}
.p-cta .p-cta__tel-main {
  margin-bottom: -0.4rem;
}
@media (width <= 768px) {
  .p-cta .p-cta__tel-main {
    margin-bottom: -0.2rem;
  }
}
.p-cta .p-cta__tel-label {
  color: #c41770;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.48px;
}
@media (width <= 768px) {
  .p-cta .p-cta__tel-label {
    font-size: 1.8rem;
    letter-spacing: 0.2px;
  }
}
.p-cta .p-cta__tel-number {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.84px;
  position: relative;
}
@media (width <= 1200px) {
  .p-cta .p-cta__tel-number {
    font-size: 3.8rem;
  }
}
@media (width <= 768px) {
  .p-cta .p-cta__tel-number {
    font-size: 3rem;
    letter-spacing: 0.4px;
  }
}
.p-cta .p-cta__tel-time {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.4px;
}
@media (width <= 768px) {
  .p-cta .p-cta__tel-time {
    font-size: 1.5rem;
    letter-spacing: 0.2px;
  }
}
.p-cta .p-cta__mail {
  border-radius: 100vw;
  padding: 1rem;
  height: 10.2rem;
  max-width: 43rem;
  width: 100%;
  background: #e91e8c;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  color: #fff;
}
@media (width <= 768px) {
  .p-cta .p-cta__mail {
    height: 8rem;
    padding: 0.8rem;
  }
}
.p-cta .p-cta__mail-label {
  text-align: center;
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0.68px;
}
@media (width <= 1200px) {
  .p-cta .p-cta__mail-label {
    font-size: 3.2rem;
  }
}
@media (width <= 768px) {
  .p-cta .p-cta__mail-label {
    font-size: 2.4rem;
    letter-spacing: 0.4px;
  }
}
.p-cta .p-cta__mail-note {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.4px;
}
@media (width <= 768px) {
  .p-cta .p-cta__mail-note {
    font-size: 1.5rem;
    letter-spacing: 0.2px;
  }
}
.p-cta .p-cta__line {
  max-width: 62rem;
  width: 100%;
  background: #009a3f;
  border-radius: 32px;
  margin: 3.2rem auto 8rem auto;
  padding: 1.4rem 5.8rem;
}
@media (width <= 768px) {
  .p-cta .p-cta__line {
    max-width: 40rem;
    border-radius: 24px;
    margin: 2.4rem auto 4rem auto;
    padding: 1.6rem 1.2rem;
  }
}
@media (width <= 600px) {
  .p-cta .p-cta__line {
    margin-bottom: 0;
  }
}
.p-cta .p-cta__line-head {
  color: #fff;
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0.68px;
  margin: 0;
  text-align: center;
}
@media (width <= 768px) {
  .p-cta .p-cta__line-head {
    font-size: clamp(18px, 18px + (24 - 18) * (100vw - 320px) / 100, 24px);
    letter-spacing: 0.4px;
  }
}
.p-cta .p-cta__line-content {
  display: flex;
  margin-top: 0.8rem;
  align-items: center;
  gap: 2.4rem;
}
@media (width <= 768px) {
  .p-cta .p-cta__line-content {
    flex-direction: column;
    gap: 1.2rem;
  }
}
.p-cta .p-cta__line-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
@media (width <= 768px) {
  .p-cta .p-cta__line-info {
    width: 100%;
    gap: 0.6rem;
  }
}
.p-cta .p-cta__line-id {
  color: #fff;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 1.1px;
  margin: 0;
}
@media (width <= 768px) {
  .p-cta .p-cta__line-id {
    font-size: 1.8rem;
    letter-spacing: 0.4px;
  }
}
.p-cta .p-cta__line-add {
  max-width: 33rem;
  width: 100%;
  height: 4.2rem;
}
@media (width <= 768px) {
  .p-cta .p-cta__line-add {
    max-width: 100%;
    height: 3.8rem;
  }
}
.p-cta .p-cta__line-add-link {
  color: #fff;
  background: #00722f;
  border-radius: 100vh;
  height: 100%;
  padding: 0 1rem;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.1px;
}
@media (width <= 768px) {
  .p-cta .p-cta__line-add-link {
    font-size: 1.8rem;
    letter-spacing: 0.4px;
  }
}
.p-cta .p-cta__line-note {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
  letter-spacing: 0.4px;
}
@media (width <= 768px) {
  .p-cta .p-cta__line-note {
    font-size: 1.5rem;
    letter-spacing: 0.2px;
  }
}
.p-cta .p-cta__line-qr {
  width: 11.2rem;
  height: 11.2rem;
  aspect-ratio: 1;
  flex-shrink: 0;
}
@media (width <= 768px) {
  .p-cta .p-cta__line-qr {
    width: 9.6rem;
    height: 9.6rem;
  }
}
.p-cta .p-cta__tel-ruby {
  position: relative;
}
.p-cta .p-cta__tel-yomi {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: #c41770;
  position: absolute;
  top: -0.2rem;
  letter-spacing: 5px;
  left: 0.8rem;
  white-space: nowrap;
}
@media (width <= 768px) {
  .p-cta .p-cta__tel-yomi {
    left: 0.6rem;
    font-size: 1rem;
    letter-spacing: 4px;
    top: -0.4rem;
  }
}

.p-case {
  padding-top: 12.8rem;
  padding-bottom: 12.8rem;
  background: #faf8f5;
}
@media (width <= 768px) {
  .p-case {
    padding-top: 6.4rem;
    padding-bottom: 6.4rem;
  }
}
.p-case .p-case__list {
  display: flex;
  flex-direction: column;
  margin: 8rem 0 0 0;
  gap: 3.2rem;
  position: relative;
}
@media (width <= 768px) {
  .p-case .p-case__list {
    margin: 5.2rem 0 0 0;
  }
}
.p-case .p-case__tax-note {
  position: absolute;
  top: -4rem;
  right: 0;
}
@media (width <= 768px) {
  .p-case .p-case__tax-note {
    top: -2.8rem;
  }
}
.p-case .p-case__item {
  background: #fff;
  width: 100%;
  display: flex;
  padding: 4rem;
  border-radius: 24px;
  gap: 3.2rem;
}
@media (width <= 768px) {
  .p-case .p-case__item {
    flex-direction: column;
    padding: clamp(20px, 20px + (40 - 20) * (100vw - 480px) / 288, 40px);
    gap: 1.6rem;
  }
}
.p-case .p-case__img {
  flex: 0 0 40%;
  aspect-ratio: 8/7;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
@media (width <= 768px) {
  .p-case .p-case__img {
    flex: 0 0 100%;
  }
}
.p-case .p-case__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-case .p-case__item-content {
  flex: 1;
}
@media (width <= 768px) {
  .p-case .p-case__item-content {
    flex: 0 0 100%;
  }
}
.p-case .p-case__item-content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.p-case .p-case__row {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
@media (width <= 768px) {
  .p-case .p-case__row {
    gap: 1.6rem;
  }
}
.p-case .p-case__label {
  color: #c41770;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  margin: 0;
}
@media (width <= 768px) {
  .p-case .p-case__label {
    font-size: 1.6rem;
  }
}
.p-case .p-case__label--ml {
  margin-left: 11rem;
}
@media (width <= 768px) {
  .p-case .p-case__label--ml {
    margin-left: auto;
  }
}
.p-case .p-case__row--head > .p-case__label--ml:first-child {
  margin-left: 0;
}
@media (width <= 768px) {
  .p-case .p-case__row--head > .p-case__label--ml:first-child {
    margin-left: 0;
  }
}
.p-case .p-case__value {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.4px;
}
@media (width <= 768px) {
  .p-case .p-case__value {
    font-size: 1.6rem;
  }
}
.p-case .p-case__item-content {
  margin-top: 0.8rem;
}
.p-case .p-case__row--price {
  justify-content: space-between;
}
.p-case .p-case__price {
  margin: 0;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.56px;
}
@media (width <= 768px) {
  .p-case .p-case__price {
    font-size: 1.8rem;
  }
}
.p-case .p-case__price-sm {
  font-size: 2rem;
  letter-spacing: 0.4px;
}
@media (width <= 768px) {
  .p-case .p-case__price-sm {
    font-size: 1.5rem;
  }
}
.p-case .p-case__breakdown-title {
  margin: 0.8rem 0 0 0;
}
@media (width <= 768px) {
  .p-case .p-case__breakdown-title {
    font-size: 1.4rem;
  }
}
.p-case .p-case__breakdown-list {
  margin: 0.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.p-case .p-case__breakdown-item {
  display: flex;
  justify-content: space-between;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.36px;
  gap: 1rem;
}
@media (width <= 768px) {
  .p-case .p-case__breakdown-item {
    font-size: 1.6rem;
  }
}
.p-case .p-case__breakdown-item dt {
  margin: 0;
}
.p-case .p-case__breakdown-item dd {
  margin: 0;
  font-weight: 700;
}

.p-reason {
  padding-bottom: 12.8rem;
}
@media (width <= 768px) {
  .p-reason {
    padding-bottom: 6.4rem;
  }
}
.p-reason .p-reason__img {
  max-width: 48rem;
  width: 100%;
  margin: 7.2rem auto 0 auto;
}
.p-reason .p-reason__desc {
  margin-top: 4rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.4px;
}
@media (width <= 768px) {
  .p-reason .p-reason__desc {
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 0.2px;
  }
}

.p-flow {
  background: #faf8f5;
  padding-bottom: 12.8rem;
}
@media (width <= 768px) {
  .p-flow {
    padding-top: 6.4rem;
    padding-bottom: 6.4rem;
  }
}
.p-flow .l-section__content {
  margin-top: 8rem;
}
@media (width <= 768px) {
  .p-flow .l-section__content {
    margin-top: 5.2rem;
  }
}
.p-flow .p-flow__item {
  display: flex;
  gap: 2.4rem;
}
@media (width <= 768px) {
  .p-flow .p-flow__item {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-flow .p-flow__item-content {
  flex: 1;
}
@media (width <= 768px) {
  .p-flow .p-flow__item-content {
    flex: 0 0 100%;
  }
}
.p-flow .p-flow__item-head {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
@media (width <= 768px) {
  .p-flow .p-flow__item-head {
    gap: 1.4rem;
  }
}
.p-flow .p-flow__item-num {
  width: 6rem;
  height: 6rem;
  aspect-ratio: 1;
  border-radius: 8px;
  background: #e91e8c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width <= 992px) {
  .p-flow .p-flow__item-num {
    width: 5.4rem;
    height: 5.4rem;
  }
}
@media (width <= 768px) {
  .p-flow .p-flow__item-num {
    width: 4rem;
    height: 4rem;
  }
}
.p-flow .p-flow__item-num span {
  line-height: 1;
  font-size: 3.6rem;
  font-weight: 700;
}
@media (width <= 992px) {
  .p-flow .p-flow__item-num span {
    font-size: 3rem;
  }
}
@media (width <= 768px) {
  .p-flow .p-flow__item-num span {
    font-size: 2.4rem;
  }
}
.p-flow .p-flow__item-title {
  margin: 0;
  color: #c41770;
  font-family: "Noto Serif", serif;
  font-size: 2.8rem;
}
@media (width <= 992px) {
  .p-flow .p-flow__item-title {
    font-size: 2.4rem;
  }
}
@media (width <= 768px) {
  .p-flow .p-flow__item-title {
    font-size: 2.2rem;
  }
}
.p-flow .p-flow__item-desc {
  margin: 1.6rem 0 0 0;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.36px;
}
@media (width <= 992px) {
  .p-flow .p-flow__item-desc {
    font-size: 1.6rem;
    letter-spacing: 0.2px;
  }
}
.p-flow .p-flow__item-img {
  flex: 0 0 30%;
}
@media (width <= 768px) {
  .p-flow .p-flow__item-img {
    flex: 0 0 100%;
    max-width: 64rem;
    width: 100%;
    margin: 0 auto;
  }
}

.p-coordinator .p-coordinator__items {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  margin-top: 8rem;
}
@media (width <= 768px) {
  .p-coordinator .p-coordinator__items {
    margin-top: 5.2rem;
  }
}
.p-coordinator .p-coordinator__item {
  display: flex;
  gap: 4rem;
}
@media (width <= 992px) {
  .p-coordinator .p-coordinator__item {
    gap: 2.4rem;
  }
}
@media (width <= 768px) {
  .p-coordinator .p-coordinator__item {
    gap: 4rem;
    flex-direction: column;
  }
}
.p-coordinator .p-coordinator__item-img {
  flex: 0 0 36%;
  position: relative;
}
@media (width <= 768px) {
  .p-coordinator .p-coordinator__item-img {
    flex: 0 0 100%;
    max-width: 64rem;
    margin: 0 auto;
  }
}
@media (width <= 600px) {
  .p-coordinator .p-coordinator__item-img {
    max-width: 92%;
  }
}
.p-coordinator .p-coordinator__item-img img {
  aspect-ratio: 320/213;
}
.p-coordinator .p-coordinator__item-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffe5f0;
  top: 3rem;
  left: -3rem;
  aspect-ratio: 320/213;
  width: 32rem;
  height: 21rem;
  z-index: -1;
}
@media (width <= 992px) {
  .p-coordinator .p-coordinator__item-img::after {
    width: clamp(262px, 262px + (324 - 262) * (100vw - 768px) / 224, 324px);
    height: clamp(175px, 175px + (216 - 175) * (100vw - 768px) / 224, 216px);
    top: 5%;
    left: -5%;
  }
}
@media (width <= 768px) {
  .p-coordinator .p-coordinator__item-img::after {
    top: 1rem;
    left: -1rem;
    width: 100%;
    height: 100%;
  }
}
.p-coordinator .p-coordinator__item-desc {
  flex: 1;
}
.p-coordinator .p-coordinator__item-head {
  position: relative;
  padding-left: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.p-coordinator .p-coordinator__item-head::before {
  content: "";
  position: absolute;
  width: 0.8rem;
  height: 100%;
  left: 0;
  top: 0;
  background: #ffe5f0;
}
@media (width <= 768px) {
  .p-coordinator .p-coordinator__item-head::before {
    width: 0.4rem;
  }
}
.p-coordinator .p-coordinator__item-head::after {
  content: "";
  position: absolute;
  width: 0.8rem;
  height: 50%;
  left: 0;
  top: 0;
  background: #e91e8c;
}
@media (width <= 768px) {
  .p-coordinator .p-coordinator__item-head::after {
    width: 0.4rem;
  }
}
.p-coordinator .p-coordinator__item-name {
  margin: 0;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.64px;
}
@media (width <= 992px) {
  .p-coordinator .p-coordinator__item-name {
    font-size: 3rem;
  }
}
@media (width <= 768px) {
  .p-coordinator .p-coordinator__item-name {
    font-size: 2.4rem;
    letter-spacing: 0.4px;
  }
}
.p-coordinator .p-coordinator__item-name-sm {
  font-size: 0.7em;
}
.p-coordinator .p-coordinator__item-role {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.4px;
}
@media (width <= 992px) {
  .p-coordinator .p-coordinator__item-role {
    font-size: 1.8rem;
  }
}
@media (width <= 768px) {
  .p-coordinator .p-coordinator__item-role {
    font-size: 1.6rem;
  }
}
.p-coordinator .p-coordinator__item-text {
  margin: 4.8rem 0 0 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.36px;
}
@media (width <= 992px) {
  .p-coordinator .p-coordinator__item-text {
    margin: 4rem 0 0 0;
  }
}
@media (width <= 768px) {
  .p-coordinator .p-coordinator__item-text {
    margin: 3.2rem 0 0 0;
    font-size: 1.6rem;
    letter-spacing: 0.16px;
  }
}
.p-coordinator .p-coordinator__item-detail {
  margin-top: 2.4rem;
}
@media (width <= 992px) {
  .p-coordinator .p-coordinator__item-detail {
    margin-top: 1.6rem;
  }
}
@media (width <= 768px) {
  .p-coordinator .p-coordinator__item-detail {
    margin-top: 0;
  }
}
.p-coordinator .p-coordinator__item-detail .p-coordinator__item-text {
  margin: 0;
}
.p-coordinator .p-coordinator__item-ul {
  margin: 1.6rem 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.36px;
}
@media (width <= 768px) {
  .p-coordinator .p-coordinator__item-ul {
    font-size: 1.6rem;
  }
}

.p-faq .p-faq__items {
  margin-top: 8rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
@media (width <= 768px) {
  .p-faq .p-faq__items {
    margin-top: 5.2rem;
  }
}
.p-faq .p-faq__item {
  padding: 4rem;
  border-radius: 32px;
  background: #faf8f5;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (width <= 768px) {
  .p-faq .p-faq__item {
    border-radius: 16px;
    padding: clamp(24px, 24px + (40 - 24) * (100vw - 400px) / 368, 40px) clamp(16px, 16px + (40 - 16) * (100vw - 400px) / 368, 40px);
  }
}
.p-faq .p-faq__item-q {
  display: flex;
  gap: 1.6rem;
}
.p-faq .p-faq__item-q .p-faq__item-icon {
  background: #e91e8c;
  color: #fff;
}
@media (width <= 768px) {
  .p-faq .p-faq__item-q {
    gap: 1rem;
  }
}
.p-faq .p-faq__item-icon {
  width: 4.8rem;
  height: 4.8rem;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
@media (width <= 768px) {
  .p-faq .p-faq__item-icon {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.p-faq .p-faq__item-icon span {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 600;
}
@media (width <= 768px) {
  .p-faq .p-faq__item-icon span {
    font-size: 1.8rem;
  }
}
.p-faq .p-faq__item-desc {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding-top: 0.8rem;
}
@media (width <= 768px) {
  .p-faq .p-faq__item-desc {
    padding-top: 0.4rem;
    font-size: 1.5rem;
  }
}
.p-faq .p-faq__item-text {
  margin: 0;
}
.p-faq .p-faq__price-title {
  margin-top: 3.2rem;
}
@media (width <= 768px) {
  .p-faq .p-faq__price-title {
    margin-top: 2.4rem;
  }
}
.p-faq .p-faq__item-a {
  display: flex;
  gap: 1.6rem;
}
@media (width <= 768px) {
  .p-faq .p-faq__item-a {
    gap: 1rem;
  }
}
.p-faq .p-faq__item-a .p-faq__item-icon {
  background: #d1eea6;
}
.p-faq .p-faq__price-list {
  background: #fff;
  border-radius: 8px;
  padding: 0rem 1.6rem;
}
@media (width <= 768px) {
  .p-faq .p-faq__price-list {
    padding: 0 1rem;
  }
}
.p-faq .p-faq__price-item {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 0;
  border-bottom: 1px solid #dbdbdb;
}
.p-faq .p-faq__price-item:last-child {
  border: none;
}
.p-faq .p-faq__price-label {
  margin: 0;
}
.p-faq .p-faq__price-value {
  margin: 0;
}

.p-form .p-form__lead {
  margin-top: 8rem;
  display: flex;
  justify-content: center;
}
@media (width <= 768px) {
  .p-form .p-form__lead {
    margin-top: 5.2rem;
  }
}
.p-form .c-desc {
  display: inline-flex;
}
.p-form .c-form {
  margin-top: 2.4rem;
}

.p-company {
  padding-bottom: 12.8rem;
}
.p-company .p-company__list {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.p-company .l-section__content {
  margin-top: 8rem;
}
@media (width <= 768px) {
  .p-company .l-section__content {
    margin-top: 5.2rem;
  }
}
.p-company .p-company__item {
  display: flex;
  gap: 1rem;
  padding: 2.4rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.p-company .p-company__item dt {
  margin: 0;
  text-align: center;
  color: #c41770;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  flex-basis: 31%;
}
@media (width <= 768px) {
  .p-company .p-company__item dt {
    font-size: 1.5rem;
  }
}
@media (width <= 400px) {
  .p-company .p-company__item dt {
    flex-basis: 28%;
  }
}
.p-company .p-company__item dd {
  margin: 0;
  flex: 1;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.36px;
}
@media (width <= 768px) {
  .p-company .p-company__item dd {
    font-size: 1.5rem;
    letter-spacing: 0.18px;
  }
}
.p-company .p-company__item a {
  text-decoration: underline;
}

.p-news {
  padding-bottom: 12rem;
}
.p-news .c-title {
  margin-top: 0;
}
.p-news .p-news__content {
  margin-top: 6.4rem;
}

.p-single {
  padding-bottom: 12.8rem;
}
.p-single .l-section__headline {
  display: grid;
  gap: 1.2rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid #fdd6e6;
}
.p-single .c-date {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #333;
}
.p-single .c-category {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  padding: 0.4rem 1.2rem;
  border-radius: 100vw;
  border: 1px solid #c41770;
  color: #c41770;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4;
}
.p-single .p-single__thumbnail {
  margin-bottom: 3.2rem;
}
.p-single h1 {
  margin: 0;
  font-family: "Noto Serif", serif;
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08rem;
}
@media (width <= 992px) {
  .p-single h1 {
    font-size: 3rem;
  }
}
@media (width <= 768px) {
  .p-single h1 {
    font-size: 2.5rem;
  }
}
.p-single .l-section__content {
  margin-top: 4.8rem;
}
@media (width <= 768px) {
  .p-single .l-section__content {
    margin-top: 3.2rem;
  }
}
.p-single .p-single__pagination {
  margin-top: 6.4rem;
  padding-top: 3.2rem;
  border-top: 1px solid #fdd6e6;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas: "prev back next";
  gap: 1.2rem;
  align-items: stretch;
}
@media (width <= 768px) {
  .p-single .p-single__pagination {
    margin-top: 4rem;
    padding-top: 2.4rem;
    grid-template-columns: 1fr;
  }
}
.p-single .p-single__pagination-prev,
.p-single .p-single__pagination-back,
.p-single .p-single__pagination-next {
  min-width: 0;
}
.p-single .p-single__pagination-prev {
  grid-area: prev;
}
.p-single .p-single__pagination-back {
  grid-area: back;
}
.p-single .p-single__pagination-next {
  grid-area: next;
}
.p-single .p-single__pagination-prev {
  text-align: left;
}
.p-single .p-single__pagination-back {
  text-align: center;
}
.p-single .p-single__pagination-next {
  text-align: right;
}
.p-single .p-single__pagination a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #333;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}
.p-single .p-single__pagination a i {
  font-size: 1.2rem;
  line-height: 1;
}
.p-single .p-single__pagination a:hover {
  color: #c41770;
  border-bottom-color: #c41770;
  opacity: 1;
}
.p-single .p-single__pagination-placeholder {
  display: block;
  width: 100%;
  min-height: 2.4rem;
  visibility: hidden;
}
.p-single .p-single__pagination:has(.p-single__pagination-prev > .p-single__pagination-placeholder):has(.p-single__pagination-next > .p-single__pagination-placeholder) {
  grid-template-columns: 1fr;
  grid-template-areas: "back";
  justify-items: center;
}
.p-single .p-single__pagination:has(.p-single__pagination-prev > .p-single__pagination-placeholder):has(.p-single__pagination-next > .p-single__pagination-placeholder) .p-single__pagination-prev,
.p-single .p-single__pagination:has(.p-single__pagination-prev > .p-single__pagination-placeholder):has(.p-single__pagination-next > .p-single__pagination-placeholder) .p-single__pagination-next {
  display: none;
}
.p-single .p-single__pagination:has(.p-single__pagination-prev > .p-single__pagination-placeholder):has(.p-single__pagination-next > .p-single__pagination-placeholder) .p-single__pagination-back {
  text-align: center;
}
@media (width <= 768px) {
  .p-single .p-single__pagination {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "prev next" "back back";
    row-gap: 0.8rem;
  }
  .p-single .p-single__pagination-prev {
    text-align: left;
  }
  .p-single .p-single__pagination-next {
    text-align: right;
  }
  .p-single .p-single__pagination-back {
    text-align: center;
  }
}

.p-column .p-column__items {
  margin-top: 8rem;
  gap: 2.4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (width <= 992px) {
  .p-column .p-column__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 6.4rem;
  }
}
@media (width <= 768px) {
  .p-column .p-column__items {
    margin-top: 4rem;
    gap: 1.6rem;
    grid-template-columns: 1fr;
  }
}
.p-column .p-column__item {
  background: #fff;
  border: 1px solid rgba(51, 51, 51, 0.12);
  border-radius: 2.4rem;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.p-column .p-column__item:hover {
  border-color: #ec85b2;
}
.p-column .p-column__item:hover .p-column__img img {
  transform: scale(1.05);
}
@media (width <= 768px) {
  .p-column .p-column__item {
    border-radius: 1.6rem;
  }
}
.p-column .p-column__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.p-column .p-column__img {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
}
.p-column .p-column__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s ease;
}
.p-column .p-column__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media (width <= 768px) {
  .p-column .p-column__body {
    padding: 1.6rem;
    gap: 1rem;
  }
}
.p-column .p-column__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.p-column .p-column__time {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.2px;
}
.p-column .p-column__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  background: #fdd6e6;
  color: #c41770;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.p-column .p-column__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.4px;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (width <= 768px) {
  .p-column .p-column__title {
    font-size: 1.8rem;
  }
}
.p-column .p-column__desc {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.2px;
  line-clamp: 3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (width <= 768px) {
  .p-column .p-column__desc {
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=style.css.map */