@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%;
  scroll-behavior: smooth;
}

img {
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #333;
  font-size: 1.6rem;
  letter-spacing: 0.32px;
  font-weight: 500;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#body_wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

footer {
  margin-top: auto;
}

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

a:hover {
  opacity: 0.6;
}

.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 {
  background: rgba(76, 90, 106, 0.7);
  height: 4.6rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
@media (width <= 768px) {
  .l-header {
    height: 4rem;
  }
}
.l-header .l-header__inner {
  width: 100%;
  padding: 0 2rem;
}
@media (width <= 768px) {
  .l-header .l-header__inner {
    padding: 0 clamp(8px, 8px + (16 - 8) * (100vw - 340px) / 160, 16px);
  }
}
.l-header .l-header__link {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
}
.l-header .l-header__title {
  color: #fff;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.1px;
}
@media (width <= 768px) {
  .l-header .l-header__title {
    font-size: clamp(14px, 14px + (16 - 14) * (100vw - 340px) / 160, 16px);
    letter-spacing: 0.75px;
  }
}
@media (width <= 375px) {
  .l-header .l-header__title {
    font-size: clamp(12px, 12px + (14 - 12) * (100vw - 340px) / 35, 14px);
  }
}
.l-header .l-header__tag {
  display: inline-flex;
  background: #4c5a6a;
  height: 3.4rem;
  line-height: 1;
  align-items: center;
  justify-content: center;
  padding: 0 1.2rem;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.64px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (width <= 768px) {
  .l-header .l-header__tag {
    padding: 0 0.6rem;
    height: 2.4rem;
    font-size: 1.4rem;
  }
}

@media (width <= 768px) {
  body.is-sp-nav-open {
    overflow: hidden;
  }
}

.p-sp-nav {
  display: none;
}
@media (width <= 768px) {
  .p-sp-nav {
    display: block;
  }
}
.p-sp-nav.is-open .p-sp-nav__overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.p-sp-nav.is-open .p-sp-nav__drawer {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.p-sp-nav.is-open .p-sp-nav__toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.p-sp-nav.is-open .p-sp-nav__toggle-line:nth-child(1) {
  transform: translateY(0.5rem) rotate(45deg);
}
.p-sp-nav.is-open .p-sp-nav__toggle-line:nth-child(2) {
  opacity: 0;
}
.p-sp-nav.is-open .p-sp-nav__toggle-line:nth-child(3) {
  transform: translateY(-0.5rem) rotate(-45deg);
}
.p-sp-nav .p-sp-nav__toggle {
  position: fixed;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 12;
  width: 4.8rem;
  height: 4.8rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 1.6rem;
  background: rgba(76, 90, 106, 0.88);
  box-shadow: 0 1.2rem 3rem rgba(76, 90, 106, 0.18);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #fff;
  transition:
    top 0.3s ease,
    opacity 0.2s ease,
    visibility 0.2s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}
@media (width <= 375px) {
  .p-sp-nav .p-sp-nav__toggle {
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 1.4rem;
  }
}
.p-sp-nav.p-sp-nav--front:not(.is-scrolled) .p-sp-nav__toggle,
.p-sp-nav.has-top-pr:not(.is-scrolled) .p-sp-nav__toggle {
  top: 4.8rem;
}
.p-sp-nav .p-sp-nav__toggle-box {
  width: 1.8rem;
  height: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.p-sp-nav .p-sp-nav__toggle-line {
  width: 100%;
  height: 0.2rem;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.p-sp-nav .p-sp-nav__toggle-text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.p-sp-nav .p-sp-nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 10;
  border: none;
  padding: 0;
  background: rgba(76, 90, 106, 0.28);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.p-sp-nav .p-sp-nav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 11;
  width: min(88vw, 34rem);
  height: 100dvh;
  padding: calc(1.2rem + env(safe-area-inset-top)) 2rem 2.4rem;
  background: #fffdf8;
  box-shadow: -1.6rem 0 4rem rgba(76, 90, 106, 0.18);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    visibility 0.35s ease;
}
.p-sp-nav .p-sp-nav__drawer-close {
  position: sticky;
  top: 0;
  z-index: 1;
  margin: 0 0 1.2rem auto;
  width: 3.2rem;
  height: 3.2rem;
  border: none;
  padding: 0;
  background: #fffdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4c5a6a;
}
@media (width <= 375px) {
  .p-sp-nav .p-sp-nav__drawer-close {
    width: 3rem;
    height: 3rem;
  }
}
.p-sp-nav .p-sp-nav__drawer-close-icon {
  position: relative;
  width: 2rem;
  height: 2rem;
  display: block;
}
.p-sp-nav .p-sp-nav__drawer-close-icon::before,
.p-sp-nav .p-sp-nav__drawer-close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 0.18rem;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}
.p-sp-nav .p-sp-nav__drawer-close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-sp-nav .p-sp-nav__drawer-close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.p-sp-nav .p-sp-nav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-sp-nav .p-sp-nav__menu > .menu-item {
  border-top: 1px solid rgba(233, 227, 209, 0.9);
}
.p-sp-nav .p-sp-nav__menu > .menu-item:last-child {
  border-bottom: 1px solid rgba(233, 227, 209, 0.9);
}
.p-sp-nav .p-sp-nav__menu > .menu-item > a {
  display: block;
  padding: 1.9rem 0 1.8rem;
  color: rgb(79, 127, 173);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.55;
  text-decoration: none;
}
.p-sp-nav .p-sp-nav__menu > .menu-item.current-menu-item > a,
.p-sp-nav .p-sp-nav__menu > .menu-item.current_page_item > a,
.p-sp-nav .p-sp-nav__menu > .menu-item.current_page_parent > a,
.p-sp-nav .p-sp-nav__menu > .menu-item.current-menu-ancestor > a {
  color: #e77e84;
}
.p-sp-nav .p-sp-nav__menu .sub-menu {
  list-style: none;
  margin: -0.2rem 0 1.8rem;
  padding: 0 0 0 2.4rem;
}
.p-sp-nav .p-sp-nav__menu .sub-menu > .menu-item + .menu-item {
  margin-top: 0.3rem;
}
.p-sp-nav .p-sp-nav__menu .sub-menu > .menu-item > a {
  display: block;
  padding: 0.7rem 0;
  color: rgb(79, 127, 173);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  line-height: 1.65;
}
.p-sp-nav .p-sp-nav__menu .sub-menu > .menu-item.current-menu-item > a,
.p-sp-nav .p-sp-nav__menu .sub-menu > .menu-item.current_page_item > a,
.p-sp-nav .p-sp-nav__menu .sub-menu > .menu-item.current_page_parent > a,
.p-sp-nav .p-sp-nav__menu .sub-menu > .menu-item.current-menu-ancestor > a {
  color: #e77e84;
}

body.admin-bar .p-sp-nav .p-sp-nav__toggle {
  top: calc(0.8rem + 46px);
}
body.admin-bar .p-sp-nav .p-sp-nav__drawer {
  padding-top: calc(1.2rem + env(safe-area-inset-top) + 46px);
}
body.admin-bar .p-sp-nav.p-sp-nav--front:not(.is-scrolled) .p-sp-nav__toggle,
body.admin-bar .p-sp-nav.has-top-pr:not(.is-scrolled) .p-sp-nav__toggle {
  top: calc(4.8rem + 46px);
}

.p-site-footer {
  background: #4c5a6a;
  color: #fff;
  padding: 9.6rem 0 3.2rem 0;
}
.p-site-footer .p-site-footer__inner {
  margin: 0 auto;
  max-width: 106rem;
  padding: 0 2rem;
}
@media (width <= 768px) {
  .p-site-footer .p-site-footer__inner {
    padding: 0 1.6rem;
  }
}
.p-site-footer .p-site-footer__title {
  margin: 0;
  color: #fff;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1.2px;
}
.p-site-footer .p-site-footer__nav {
  margin-top: 5.6rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.p-site-footer .p-site-footer__nav-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.4rem;
}
@media (width <= 768px) {
  .p-site-footer .p-site-footer__nav-row {
    grid-template-columns: 1fr;
  }
}
.p-site-footer .p-site-footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.p-site-footer .p-site-footer__nav-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin: 0;
}
@media (width <= 992px) {
  .p-site-footer .p-site-footer__nav-title {
    font-size: 1.4rem;
  }
}
@media (width <= 768px) {
  .p-site-footer .p-site-footer__nav-title {
    font-size: 1.5rem;
  }
}
.p-site-footer .p-site-footer__nav-title a {
  color: inherit;
  text-decoration: none;
}
.p-site-footer .p-site-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-site-footer .p-site-footer__nav > .menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (width <= 768px) {
  .p-site-footer .p-site-footer__nav > .menu {
    grid-template-columns: 1fr;
  }
}
.p-site-footer .p-site-footer__nav > .menu > .menu-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.p-site-footer .p-site-footer__nav > .menu > .menu-item > a {
  display: inline-block;
  margin: 0;
  color: inherit;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
@media (width <= 992px) {
  .p-site-footer .p-site-footer__nav > .menu > .menu-item > a {
    font-size: 1.4rem;
  }
}
@media (width <= 768px) {
  .p-site-footer .p-site-footer__nav > .menu > .menu-item > a {
    font-size: 1.5rem;
  }
}
.p-site-footer .p-site-footer__nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-site-footer .p-site-footer__nav .sub-menu > .menu-item {
  position: relative;
  font-size: 1.4rem;
}
@media (width <= 992px) {
  .p-site-footer .p-site-footer__nav .sub-menu > .menu-item {
    font-size: 1.3rem;
  }
}
@media (width <= 768px) {
  .p-site-footer .p-site-footer__nav .sub-menu > .menu-item {
    font-size: 1.4rem;
  }
}
.p-site-footer .p-site-footer__nav .sub-menu > .menu-item::before {
  content: "・";
}
.p-site-footer .p-site-footer__nav .sub-menu > .menu-item a {
  color: inherit;
  text-decoration: none;
}
.p-site-footer .p-site-footer__nav .sub-menu > .menu-item + .menu-item {
  margin-top: 0.4rem;
}
.p-site-footer .footer-none {
  display: none !important;
}
.p-site-footer .p-site-footer__nav-item {
  position: relative;
  font-size: 1.4rem;
}
@media (width <= 992px) {
  .p-site-footer .p-site-footer__nav-item {
    font-size: 1.3rem;
  }
}
@media (width <= 768px) {
  .p-site-footer .p-site-footer__nav-item {
    font-size: 1.4rem;
  }
}
.p-site-footer .p-site-footer__nav-item a {
  color: inherit;
  text-decoration: none;
}
.p-site-footer .p-site-footer__nav-item::before {
  content: "・";
}
.p-site-footer .p-site-footer__notice {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2.4rem 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.p-site-footer .p-site-footer__notice-text {
  margin: 0;
}
@media (width <= 992px) {
  .p-site-footer .p-site-footer__notice-text {
    font-size: 1.5rem;
  }
}
@media (width <= 768px) {
  .p-site-footer .p-site-footer__notice-text {
    font-size: 1.4rem;
  }
}
.p-site-footer .p-site-footer__copy {
  margin-top: 3.2rem;
  text-align: center;
}
.p-site-footer .p-site-footer__copy-text {
  color: #faf6e4;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.24px;
}

.l-section {
  padding: 9.6rem 0;
}
@media (width <= 768px) {
  .l-section {
    padding: 6.4rem 0;
  }
}
.l-section--post {
  padding: 3.2rem 0 3.2rem 0;
}

.l-section__inner {
  margin: 0 auto;
  max-width: 106rem;
  padding: 0 2rem;
}
.l-section__inner--lg {
  max-width: 124rem;
}
@media (width <= 768px) {
  .l-section__inner {
    padding: 0 1.6rem;
    max-width: 64rem;
  }
}

.l-section__content {
  margin-top: 4rem;
}

/**
 * ------------------------------------------------
 * 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 {
  margin: 0;
}

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

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

.c-text-right {
  margin-left: auto;
  justify-content: flex-end;
  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-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-headline__icon {
  width: 3.7rem;
  height: 4.1rem;
  aspect-ratio: 37/41;
  margin-bottom: 0.4rem;
}
@media (width <= 768px) {
  .c-headline__icon {
    width: 3.2rem;
    height: auto;
  }
}
.c-headline__icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.c-headline__dot {
  width: 9rem;
  margin-top: 3.2rem;
}
@media (width <= 768px) {
  .c-headline__dot {
    margin-top: 2.4rem;
  }
}
.c-headline__dot img {
  display: block;
  width: 100%;
  height: auto;
}

.c-headline__heading-line {
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

.c-headline__heading-bottom {
  width: 100%;
}

.c-headline__heading-text {
  background: #e77e84;
  color: #fff;
  display: inline-flex;
  padding: 0rem 3.2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 14rem;
  font-size: 2.4rem;
}
@media (width <= 768px) {
  .c-headline__heading-text {
    font-size: 1.8rem;
    min-width: 12rem;
    padding: 0 2.4rem;
  }
}

.c-title {
  color: #2f2f2f;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  margin: 0;
}
@media (width <= 768px) {
  .c-title {
    font-size: 2.4rem;
  }
}

.c-title-underline {
  color: #2f2f2f;
  margin: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding-bottom: 0.8rem;
  position: relative;
}
@media (width <= 768px) {
  .c-title-underline {
    font-size: 2rem;
    letter-spacing: 0.75px;
  }
}
.c-title-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.3rem;
  width: 100%;
  border-radius: 4px;
  background: #6fa8c9;
}

.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-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-marker--fv {
  background-image: linear-gradient(
    rgba(242, 166, 90, 0.75),
    rgba(242, 166, 90, 0.75)
  );
  background-position: 0 85%;
  background-size: 100% 1.1rem;
  padding-bottom: 0.05em;
  border-radius: 0.8rem;
}

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

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

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

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

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

.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.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-position: outside;
}

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

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

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

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

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

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

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

.c-breadcrumb__list {
  display: flex;
  list-style: none;
  margin: 0 auto;
  padding: 1.6rem 0;
  flex-wrap: wrap;
}
.c-breadcrumb__list a {
  color: #4f7fad;
  text-decoration-line: underline;
}
.c-breadcrumb__list li {
  position: relative;
  margin-right: 0.8rem;
  font-size: 1.2rem;
  color: #4c5a6a;
  white-space: nowrap;
}
.c-breadcrumb__list li + li::before {
  font-family: "FontAwesome";
  content: "\f054";
  margin-right: 0.8rem;
  color: rgb(159, 156, 149);
}

.c-breadcrumb-wrap {
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 124rem;
}

.c-boxlist {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.c-box {
  padding: 5.6rem 8rem;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 0 40px 0 rgba(233, 227, 209, 0.25);
}
@media (width <= 992px) {
  .c-box {
    padding: 4.8rem 4rem;
  }
}
@media (width <= 768px) {
  .c-box {
    padding: 3.2rem 2rem;
  }
}
.c-box .c-media__img {
  border-radius: 9px;
  border: 1px solid #e9e3d1;
  max-width: 27.6rem;
  aspect-ratio: 69/50;
}
@media (width <= 768px) {
  .c-box .c-media__img {
    max-width: 100%;
  }
}
.c-box .c-media__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-media {
  display: flex;
  gap: 5.4rem;
  align-items: flex-start;
}
@media (width <= 992px) {
  .c-media {
    gap: 2.4rem;
  }
}
@media (width <= 768px) {
  .c-media {
    gap: 3.2rem;
    align-items: center;
    flex-direction: column;
  }
}

.c-media__img {
  max-width: 37rem;
  width: 100%;
  aspect-ratio: 185/124;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 1;
}
@media (width <= 768px) {
  .c-media__img {
    max-width: 100%;
  }
}
.c-media__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-media__body {
  flex: 1;
  min-width: 0;
}

.c-media__body > p + p {
  margin-top: 1em;
}


.c-choice-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}
@media (width <= 992px) {
  .c-choice-list {
    gap: 2rem;
  }
}
@media (width <= 768px) {
  .c-choice-list {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
}

.c-choice {
  display: flex;
  flex-direction: column;
}
.c-choice__catch {
  background: #6fa8c9;
  padding: 1.2rem 2.4rem;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.9px;
  display: flex;
  min-height: 7.6rem;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  position: relative;
}
@media (width <= 992px) {
  .c-choice__catch {
    padding: 1rem 1.6rem;
    font-size: 1.6rem;
  }
}
@media (width <= 768px) {
  .c-choice__catch {
    padding: 1rem 2rem;
    min-height: 6.4rem;
  }
}
.c-choice__catch::after {
  content: "";
  position: absolute;
  bottom: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.4rem;
  height: 1.2rem;
  background: #6fa8c9;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.c-choice__panel {
  border-radius: 24px;
  border: 2px solid #6fa8c9;
  background: #fff;
  box-shadow: 4px 4px 0 0 rgba(111, 168, 201, 0.25);
  display: flex;
  padding: 1.6rem 2.4rem 2.4rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
  flex: 1;
  margin-top: 1.2rem;
}
@media (width <= 992px) {
  .c-choice__panel {
    padding: 1.6rem 1.6rem;
  }
}
@media (width <= 768px) {
  .c-choice__panel {
    padding: 2.4rem 2rem;
  }
}
.c-choice__title {
  width: 100%;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #4a4a4a;
  margin: 0;
  letter-spacing: 1.2px;
  padding-bottom: 0.8rem;
  margin: 0;
  position: relative;
}
@media (width <= 992px) {
  .c-choice__title {
    font-size: 2rem;
  }
}
@media (width <= 768px) {
  .c-choice__title {
    font-size: 2rem;
  }
}
.c-choice__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.3rem;
  background: #6fa8c9;
}
.c-choice__img {
  width: 100%;
}
.c-choice__img img {
  display: block;
  width: 100%;
  height: auto;
}
.c-choice__label {
  width: 100%;
  background: #4c5a6a;
  color: #fff;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.4rem 0;
  margin: 0;
  border-radius: 4px;
}
.c-choice__features {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-choice__features li {
  padding-left: 2rem;
  position: relative;
  font-size: 1.4rem;
  color: #4a4a4a;
  line-height: 1.6;
}
.c-choice__features li::before {
  content: "";
  background: url(../img/icon-chk.svg) no-repeat center center/contain;
  position: absolute;
  left: 0;
  width: 1.4rem;
  height: 1.4rem;
  top: 0.2em;
}
.c-choice__actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: auto;
}

.c-desc {
  width: min(100%, 72rem);
  margin: 0 auto;
  text-align: left;
}

.c-box2-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}
@media (width <= 768px) {
  .c-box2-list {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
}

.c-box2-list:has(> .c-box2:only-of-type) > .c-box2 {
  grid-column: 1 / -1;
  max-width: 54rem;
  margin: 0 auto;
}

.c-box2 {
  border-radius: 24px;
  border: 2px solid #6fa8c9;
  background: #fff;
  filter: drop-shadow(4px 4px 0 rgba(111, 168, 201, 0.25));
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
}
.c-box2__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
  margin: 0;
  padding-left: 1.6rem;
  position: relative;
}
@media (width <= 768px) {
  .c-box2__title {
    font-size: 1.8rem;
    letter-spacing: 0.75px;
  }
}
.c-box2__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0.4rem;
  border-radius: 4px;
  background: #6fa8c9;
}
.c-box2__body {
  display: flex;
  gap: 2.4rem;
  align-items: flex-start;
  margin-top: 2.4rem;
}
@media (width <= 768px) {
  .c-box2__body {
    flex-direction: column;
    align-items: center;
    margin-top: 3.2rem;
    gap: 3.2rem;
  }
}
.c-box2__icon {
  flex-shrink: 0;
}
.c-box2__icon img {
  display: block;
  width: auto;
  height: auto;
}
.c-box2__text {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.3px;
  margin: 0;
}
.c-box2__link {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1.6rem;
  color: #4f7fad;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.75px;
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-underline-offset: auto;
}
@media (width <= 768px) {
  .c-box2__link {
    margin-top: 2.4rem;
  }
}
.c-box2__link img {
  display: block;
  width: 2rem;
  height: auto;
}

.u-mt40 {
  margin-top: 4rem !important;
}

.u-mt60 {
  margin-top: 6rem !important;
}

.u-mt80 {
  margin-top: 8rem !important;
}

.c-table__wrap {
  margin-top: 4rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.c-table {
  width: 100%;
  min-width: 102rem;
  border-collapse: collapse;
  table-layout: fixed;
}

.c-table th,
.c-table td {
  border: 1px solid #e9e3d1;
  background: #fff;
  color: #4a4a4a;
  text-align: center;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.32px;
  vertical-align: middle;
  padding: 0.8rem;
}

.c-table__blank,
.c-table__head {
  border-top: 1px solid #e9e3d1;
  border-left: 1px solid #e9e3d1;
  background: #e77e84;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.75px;
  height: 8.2rem;
}

.c-table th.c-table__head {
  background: #e77e84;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.75px;
}

.c-table th.c-table__blank {
  background: #e77e84;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.75px;
}

.c-table__blank,
.c-table__company {
  width: 20.4rem;
}

.c-table__head {
  width: 10.2rem;
}

.c-table th.c-table__company {
  text-align: left;
  padding: 1.6rem 1.6rem 1.6rem 2rem;
}

.c-table__company-link,
.c-table__company-text {
  color: #4f7fad;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.32px;
}

.c-table .c-table__company-link {
  text-decoration: underline;
}

.c-table__note-mark,
.c-table__note-text {
  display: block;
}

.c-table__note-text {
  font-size: 1.4rem;
  line-height: 1.4;
}

.c-table2__wrap {
  margin-top: 4rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.c-table2 {
  width: 100%;
  min-width: 64rem;
  border-collapse: collapse;
  table-layout: fixed;
  max-width: 72rem;
  margin: 0 auto;
}
@media (width <= 768px) {
  .c-table2 {
    min-width: auto;
  }
}

.c-table2__col-head {
  width: 24rem;
}
@media (width <= 768px) {
  .c-table2__col-head {
    width: 34%;
  }
}

.c-table2__col-data {
  width: 48rem;
}
@media (width <= 768px) {
  .c-table2__col-data {
    width: 66%;
  }
}

.c-table2__head,
.c-table2__data {
  padding: 0;
  vertical-align: middle;
}

.c-table2__head {
  border: 1px solid #e9e3d1;
  background: #6fa8c9;
}

.c-table2__data {
  border-top: 1px solid #e9e3d1;
  border-right: 1px solid #e9e3d1;
  border-bottom: 1px solid #e9e3d1;
  background: #fff;
}

.c-table2__head-in,
.c-table2__data-in {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 0 1.6rem 4rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.32px;
}

.c-table2__head-in {
  color: #fff;
}

.c-table2__data-in {
  color: #4a4a4a;
}

.c-table2 .c-link__text {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.32px;
}

@media (width <= 768px) {
  .c-table2__head-in,
  .c-table2__data-in {
    padding-left: 2rem;
  }
}
.c-link {
  color: #4f7fad;
  gap: 0.8rem;
  text-align: right;
  margin-left: auto;
  display: flex;
}

.c-link--center {
  text-align: center;
  margin: 0 auto;
  justify-content: center;
}

.c-link--left {
  margin-left: 0;
}

.c-link__text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.75px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.c-link__icon {
  display: flex;
}

.c-article__content {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}
@media (width <= 992px) {
  .c-article__content {
    gap: 2.4rem;
  }
}
@media (width <= 768px) {
  .c-article__content {
    gap: 3.2rem;
    align-items: center;
    flex-direction: column-reverse;
  }
}

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

.c-article__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media (width <= 768px) {
  .c-article__body {
    gap: 2.4rem;
  }
}

.c-article__text {
  margin: 0;
  flex: 1;
  color: #4a4a4a;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.32px;
}

.c-article__img {
  max-width: 36rem;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.c-article__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-article-list {
  display: flex;
  flex-direction: column;
  gap: 5.6rem;
}

.c-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}
.c-cards--2col {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3.2rem;
}
.c-cards--2col .c-card {
  padding: 0;
}
@media (width <= 992px) {
  .c-cards {
    gap: 1.6rem;
  }
}
@media (width <= 768px) {
  .c-cards {
    grid-template-columns: 1fr;
    gap: 3.2rem;
    padding: 0 1rem;
  }
}

.c-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (width <= 992px) {
  .c-card {
    padding: 0;
  }
}

.c-card__img {
  aspect-ratio: 3/2;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.c-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

a.c-card__img:hover {
  opacity: 0.8;
}
a.c-card__img:hover img {
  transform: scale(1.05);
}

.c-card__body {
  display: flex;
  gap: 0.8rem;
  flex-direction: column;
}

.c-card__time {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.c-card__time-icon {
  width: 1.6rem;
  height: 1.6rem;
  aspect-ratio: 1;
}

.c-card__time-text {
  color: #9f9c95;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.7px;
  line-height: 1;
}

.c-card__title {
  color: #6fa8c9;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.c-card__title a {
  color: inherit;
  display: block;
}

.c-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.c-tag {
  border-radius: 4px;
  border: 1px solid #75b98c;
  background: #fff;
  height: 2.3rem;
  padding: 0 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #75b98c;
}
@media (width <= 768px) {
  .c-tag {
    font-size: 1.4rem;
  }
}

.c-tag2 {
  color: #6fa8c9;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.65px;
}

.c-bg {
  background: #faf6e4;
}

.c-pr {
  display: inline-flex;
  height: 3.4rem;
  min-width: 4.5rem;
  padding: 0 1.2rem;
  align-items: center;
  justify-content: center;
  background: #4c5a6a;
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
}
@media (width <= 768px) {
  .c-pr {
    right: 0.8rem;
    top: 0.8rem;
  }
}
.c-pr span {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.6;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.64px;
}
@media (width <= 768px) {
  .c-pr span {
    font-size: 1.4rem;
  }
}
@media (width <= 768px) {
  .c-pr {
    padding: 0 0.6rem;
    height: 2.4rem;
  }
}

.c-spacer {
  height: 4rem;
}

.c-media-box {
  display: flex;
  gap: 2.4rem;
  margin: 3.2rem 0;
  width: 100%;
}
@media (width <= 768px) {
  .c-media-box {
    flex-direction: column;
    gap: 2.4rem;
  }
}
.c-media-box--reverse {
  flex-direction: row-reverse;
}
@media (width <= 768px) {
  .c-media-box--reverse {
    flex-direction: column;
    gap: 2.4rem;
  }
}

.c-media-box__img {
  flex: 1;
  margin: 0;
}

.c-media-box__body {
  flex: 0 0 60%;
  flex-shrink: 0;
}
.c-media-box__body p:first-child {
  margin-top: 0;
}

.c-related-posts {
  margin-top: 5.6rem;
  margin-bottom: 3.2rem;
}
.c-related-posts .c-card {
  padding: 0;
}

.p-blogParts:has(> .c-share) {
  margin: 3.2rem 0;
}

.c-share {
  margin: 3.2rem auto 3.2rem auto !important;
  max-width: 53.2rem;
  width: 100%;
  border-radius: 12px;
  border: 2px solid #e77e84;
  padding: 1.8rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  justify-content: center;
}
@media (width <= 768px) {
  .c-share {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 1.6rem;
  }
}

.c-share .c-share__title {
  color: #e77e84;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.75px;
}
.c-share .c-share__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
@media (width <= 768px) {
  .c-share .c-share__list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
}

.c-share .c-share__item {
  width: 2.8rem;
  height: 2.8rem;
  aspect-ratio: 1;
  flex-shrink: 0;
}

[class*="page-numbers"].current,
[class*="page-numbers"]:hover {
  border-radius: 5px;
  background: #e77e84;
}

.page-numbers {
  border-radius: 5px;
  background: #fff;
  border: 1px solid #e77e84;
  color: #e77e84;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 100%;
  height: 4.8rem;
  border-radius: 8px;
  padding: 0 1.6rem;
  position: relative;
  text-decoration: none;
}
.c-btn--pry {
  background: #e77e84;
}
.c-btn--sec {
  background: #75b98c;
}
.c-btn--lg {
  max-width: 32rem;
  height: 6.4rem;
  width: 100%;
}
.c-btn--sm {
  max-width: 22.5rem;
  width: 100%;
  height: 5.2rem;
}

.c-btn__text {
  color: #fff;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.9px;
}
@media (width <= 768px) {
  .c-btn__text {
    font-size: 1.6rem;
    letter-spacing: 0.6px;
  }
}

.c-btn__arrow {
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}
.c-btn__arrow img {
  display: block;
  width: 2rem;
  height: auto;
}

.c-btn__wrap {
  width: 100%;
  margin: 0 auto;
  max-width: 45.8rem;
}
@media (width <= 768px) {
  .c-btn__wrap {
    max-width: 32rem;
  }
}
.c-btn__wrap--lg {
  max-width: 68.7rem;
}
@media (width <= 768px) {
  .c-btn__wrap--lg {
    max-width: 40rem;
  }
}
.c-btn__wrap--lg .c-btn {
  height: 6.4rem;
}

/*==================================
  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 >= 375px) {
  .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 >= 680px) {
  .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 >= 375px) {
  .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 >= 680px) {
  .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 >= 375px) {
  .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 >= 680px) {
  .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 >= 375px) {
  .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 >= 680px) {
  .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 {
  position: relative;
  background: url(../img/img-fv.jpg) no-repeat center center/cover;
  height: 54rem;
}
@media (width <= 768px) {
  .p-fv {
    height: 52.6rem;
    background: url(../img/img-fv-sp.jpg) no-repeat center top/cover;
  }
}
.p-fv .p-fv__inner {
  margin: 0 auto;
  max-width: 106rem;
  padding: 0 2rem;
  height: 100%;
}
.p-fv .p-fv__title {
  position: absolute;
  top: 28.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 10.8rem;
  margin: 0 auto;
  padding: 1.3rem 0.8rem 1.2rem 4rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0.8rem 0.8rem 0 rgba(231, 126, 132, 0.5);
  line-height: 1;
}
@media (width <= 1200px) {
  .p-fv .p-fv__title {
    gap: 0;
    min-height: auto;
  }
}
@media (width <= 992px) {
  .p-fv .p-fv__title {
    top: 31.4rem;
  }
}
@media (width <= 768px) {
  .p-fv .p-fv__title {
    box-shadow: 0.4rem 0.4rem 0 0 rgba(231, 126, 132, 0.5);
    display: flex;
    top: 28rem;
    padding: 1.4rem 3rem 1.8rem 3rem;
  }
}
@media (width <= 680px) {
  .p-fv .p-fv__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
    top: 22.4rem;
    padding: 1.4rem 3rem 2.8rem 3rem;
    max-width: 95% s;
  }
}
@media (width <= 375px) {
  .p-fv .p-fv__title {
    padding: 1.4rem clamp(12px, 12px + (30 - 12) * (100vw - 340px) / 35, 30px)
      2.8rem clamp(12px, 12px + (30 - 12) * (100vw - 340px) / 35, 30px);
  }
}
.p-fv .p-fv__title-line {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
@media (width <= 768px) {
  .p-fv .p-fv__title-line {
    width: 100%;
  }
}
.p-fv .p-fv__title-emphasis,
.p-fv .p-fv__title-dot,
.p-fv .p-fv__title-text,
.p-fv .p-fv__title-comparison {
  flex-shrink: 0;
}
.p-fv .p-fv__title-emphasis {
  color: #4d8aae;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media (width <= 1200px) {
  .p-fv .p-fv__title-emphasis {
    font-size: clamp(32px, 32px + (52 - 32) * (100vw - 768px) / 432, 52px);
  }
}
@media (width <= 768px) {
  .p-fv .p-fv__title-emphasis {
    font-size: 3.6rem;
  }
}
@media (width <= 680px) {
  .p-fv .p-fv__title-emphasis {
    font-size: 3.6rem;
  }
}
@media (width <= 375px) {
  .p-fv .p-fv__title-emphasis {
    font-size: clamp(32px, 32px + (36 - 32) * (100vw - 340px) / 35, 36px);
  }
}
.p-fv .p-fv__title-emphasis--underline {
  position: relative;
  display: inline-block;
  z-index: 0;
}
@media (width <= 768px) {
  .p-fv .p-fv__title-emphasis--underline {
    line-height: 1.4;
  }
}
@media (width <= 768px) {
  .p-fv .p-fv__title-col {
    display: flex;
    flex-direction: column;
  }
}
.p-fv .p-fv__title-emphasis--underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.22em;
  width: 100%;
  height: 1.1rem;
  border-radius: 0.8rem;
  background: rgba(242, 166, 90, 0.75);
  z-index: -1;
}
@media (width <= 768px) {
  .p-fv .p-fv__title-emphasis--underline::after {
    bottom: 0;
  }
}
.p-fv .p-fv__title-dot {
  color: #4d8aae;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media (width <= 1200px) {
  .p-fv .p-fv__title-dot {
    font-size: clamp(32px, 32px + (52 - 32) * (100vw - 768px) / 432, 52px);
  }
}
@media (width <= 768px) {
  .p-fv .p-fv__title-dot {
    display: none;
  }
}
.p-fv .p-fv__title-text {
  color: #4c5a6a;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.6;
  padding-top: 1.2rem;
  letter-spacing: 0.05em;
}
@media (width <= 1200px) {
  .p-fv .p-fv__title-text {
    font-size: clamp(24px, 24px + (36 - 24) * (100vw - 768px) / 432, 36px);
  }
}
@media (width <= 768px) {
  .p-fv .p-fv__title-text {
    font-size: 3rem;
    padding-top: 0;
  }
}
@media (width <= 680px) {
  .p-fv .p-fv__title-text {
    padding-top: 0.8rem;
    padding-left: 2rem;
  }
}
@media (width <= 375px) {
  .p-fv .p-fv__title-text {
    font-size: clamp(28px, 28px + (30 - 28) * (100vw - 340px) / 35, 30px);
    padding-left: clamp(16px, 16px + (20 - 16) * (100vw - 340px) / 35, 20px);
  }
}
.p-fv .p-fv__title-comparison {
  display: block;
  flex-shrink: 0;
  padding-right: 1rem;
  width: 31rem;
}
@media (width <= 1200px) {
  .p-fv .p-fv__title-comparison {
    width: clamp(240px, 240px + (310 - 240) * (100vw - 768px) / 432, 310px);
  }
}
@media (width <= 768px) {
  .p-fv .p-fv__title-comparison {
    width: 30.2rem;
  }
}
@media (width <= 375px) {
  .p-fv .p-fv__title-comparison {
    width: clamp(280px, 280px + (300 - 280) * (100vw - 340px) / 35, 300px);
  }
}
.p-fv .p-fv__lead {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0 2.4rem;
  background: #e77e84;
  box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 40.8rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (width <= 1200px) {
  .p-fv .p-fv__lead {
    padding: 0 clamp(16px, 16px + (24 - 16) * (100vw - 768px) / 432, 24px);
  }
}
@media (width <= 768px) {
  .p-fv .p-fv__lead {
    text-align: center;
    top: auto;
    bottom: 0;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.p-fv .p-fv__lead::before,
.p-fv .p-fv__lead::after {
  content: "";
  display: block;
  width: 3.6rem;
  height: 0.2rem;
  background: #fff;
  flex-shrink: 0;
}
@media (width <= 1200px) {
  .p-fv .p-fv__lead::before,
  .p-fv .p-fv__lead::after {
    width: clamp(24px, 24px + (36 - 24) * (100vw - 992px) / 208, 36px);
  }
}
@media (width <= 768px) {
  .p-fv .p-fv__lead::before,
  .p-fv .p-fv__lead::after {
    display: none;
  }
}
.p-fv .p-fv__lead-text {
  color: #fff;
  text-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.5);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media (width <= 1200px) {
  .p-fv .p-fv__lead-text {
    font-size: clamp(22px, 22px + (32 - 22) * (100vw - 768px) / 432, 32px);
  }
}
@media (width <= 768px) {
  .p-fv .p-fv__lead-text {
    font-size: 2rem;
    line-height: 1.4;
    padding: 0.5rem 0;
  }
}
@media (width <= 375px) {
  .p-fv .p-fv__lead-text {
    font-size: clamp(16px, 16px + (20 - 16) * (100vw - 340px) / 35, 20px);
  }
}

.p-reason {
  background: #faf6e4;
}
.p-reason .p-reason__content {
  display: flex;
  align-items: center;
  gap: 5.6rem;
}
@media (width <= 992px) {
  .p-reason .p-reason__content {
    gap: 2.4rem;
  }
}
@media (width <= 768px) {
  .p-reason .p-reason__content {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.p-reason .p-reason__img {
  flex: 1;
  max-width: 29rem;
  width: 100%;
}
@media (width <= 768px) {
  .p-reason .p-reason__img {
    flex: none;
    max-width: 100%;
  }
}
.p-reason .p-reason__desc {
  flex: 1;
  flex-shrink: 0;
}
.p-reason__desc > p + p {
  margin-top: 1em;
}

.p-reason__desc > p:last-child {
  margin-bottom: 0;
}

.p-comparison .p-comparison__choice-list {
  margin-top: 4rem;
}

.p-importance {
  background: #faf6e4;
}

.p-service {
  background: #faf6e4;
}
.p-service .p-service__box {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.p-knowledge {
  background: #faf6e4;
}

.p-sub-fv {
  position: relative;
  min-height: 20rem;
  display: flex;
  align-items: center;
  background: url(../img/img-sub-fv.jpg) no-repeat center center/cover;
}
.p-sub-fv .p-sub-fv__inner {
  max-width: 106rem;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width <= 768px) {
  .p-sub-fv .p-sub-fv__inner {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }
}
.p-sub-fv .p-sub-fv__title {
  margin: 0;
  display: inline-flex;
  padding: 0.5rem 3.2rem;
  background: #fff;
  box-shadow: 8px 8px 0 0 rgba(231, 126, 132, 0.5);
  align-items: baseline;
  font-family: "Zen Maru Gothic", sans-serif;
  gap: 1rem;
}
@media (width <= 768px) {
  .p-sub-fv .p-sub-fv__title {
    min-width: 100%;
    align-items: center;
    padding: 1.6rem 1.6rem;
    flex-direction: column;
    gap: 0.6rem;
  }
}
.p-sub-fv .p-sub-fv__main {
  color: #4d8aae;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 2.4px;
}
@media (width <= 992px) {
  .p-sub-fv .p-sub-fv__main {
    font-size: 4rem;
  }
}
@media (width <= 768px) {
  .p-sub-fv .p-sub-fv__main {
    font-size: 2.4rem;
    line-height: 1.3;
    letter-spacing: 0.8px;
  }
}
.p-sub-fv .p-sub-fv__sub {
  color: #4c5a6a;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.6px;
}
@media (width <= 992px) {
  .p-sub-fv .p-sub-fv__sub {
    font-size: 2.8rem;
  }
}
@media (width <= 768px) {
  .p-sub-fv .p-sub-fv__sub {
    font-size: 2rem;
    line-height: 1.1;
    letter-spacing: 0.6px;
  }
}
.p-sub-fv .p-sub-fv__accent {
  color: #e77e84;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 2.4px;
}
@media (width <= 992px) {
  .p-sub-fv .p-sub-fv__accent {
    font-size: 4rem;
  }
}
@media (width <= 768px) {
  .p-sub-fv .p-sub-fv__accent {
    font-size: 2.4rem;
    line-height: 1.3;
    letter-spacing: 0.8px;
  }
}

.p-2col-layout.l-section {
  padding-top: 2.4rem;
}
.p-2col-layout .p-2col-layout__inner {
  display: flex;
  gap: 4.8rem;
}
@media (width <= 1200px) {
  .p-2col-layout .p-2col-layout__inner {
    gap: 3.2rem;
  }
}
@media (width <= 992px) {
  .p-2col-layout .p-2col-layout__inner {
    flex-direction: column-reverse;
  }
}

.p-side {
  flex: 0 0 27%;
  align-self: flex-start;
  padding: 0.8rem 1.6rem;
  border-radius: 2.4rem;
  background: #fff;
}
@media (width >= 992px) {
  .p-side {
    position: sticky;
    top: 2.4rem;
    max-height: calc(100vh - 4.8rem);
    overflow-y: auto;
  }
}
@media (width <= 992px) {
  .p-side {
    flex: none;
    width: 100%;
  }
}
.p-side .p-side__nav li {
  border-top: 1px solid #e9e3d1;
}
.p-side .p-side__nav li:first-child {
  border-top: none;
}
.p-side .p-side__nav li:first-child a {
  padding-top: 1rem;
}
.p-side .p-side__nav li a {
  padding: 1.8rem 0;
  display: block;
  color: #4f7fad;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.75px;
}
.p-side .p-side__nav .sub-menu {
  margin-left: 0.8rem;
}
.p-side .p-side__nav .sub-menu li {
  border-top: 1px dashed #e9e3d1;
  border-bottom: none;
  position: relative;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.p-side .p-side__nav .sub-menu li:first-child a {
  padding-top: 1.8rem;
  font-size: 1.5rem;
}
.p-side .p-side__nav .sub-menu li::before {
  display: inline-block;
  font: var(--fa-font-solid);
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  content: "\f0da";
  margin-right: 0.8rem;
  color: rgb(231, 126, 132);
}

.p-entry {
  flex: 1;
  flex-shrink: 0;
  min-width: 0;
  border-radius: 2.4rem;
  background: #fff;
  padding: 2.4rem 0;
}
@media (width <= 992px) {
  .p-entry {
    flex: none;
    width: 100%;
  }
}
.p-entry .p-entry__body {
  min-width: 0;
}
.p-entry .p-entry__body p {
  line-height: 1.6;
  letter-spacing: 0.32px;
}
.p-entry
  .p-entry__body
  p:not(.c-cta p):not(ul p):not(ol p):not(blockquote p):not(
    .c-media-box__body p
  ):not(.c-share p) {
  margin: 3.2rem 0;
}
.p-entry .p-entry__body h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding-bottom: 0.8rem;
  position: relative;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media (width <= 768px) {
  .p-entry .p-entry__body h2 {
    font-size: 2.2rem;
  }
}
.p-entry .p-entry__body h2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.4rem;
  background: #6fa8c9;
  bottom: 0;
  left: 0;
}
.p-entry .p-entry__body .c-cta__title {
  margin: 0;
}
.p-entry .p-entry__body h3:not(.c-card__title):not(.c-cta__title) {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  padding: 0.5em 0 0.5em 1em;
  margin: 3.2rem 0;
}
@media (width <= 768px) {
  .p-entry .p-entry__body h3:not(.c-card__title):not(.c-cta__title) {
    font-size: 1.8rem;
  }
}
.p-entry .p-entry__body h3:not(.c-card__title):not(.c-cta__title)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 4px;
  background: #6fa8c9;
  width: 0.4rem;
  height: 100%;
}
.p-entry .p-entry__body .c-media-box__body h3 {
  margin: 0 0 1.6rem 0 !important;
}
.p-entry .p-entry__body .c-media-box__body h4 {
  margin: 0 0 1.6rem 0 !important;
}
.p-entry .p-entry__body .c-media-box__body h2 {
  margin: 0 0 1.6rem 0 !important;
}
.p-entry .p-entry__body h4 {
  margin: 3.2rem 0;
  background: #6fa8c9;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.9px;
  display: inline-flex;
  padding: 0.4rem 1.6rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (width <= 768px) {
  .p-entry .p-entry__body .c-link__text {
    font-size: 1.4rem;
  }
}
.p-entry
  .p-entry__body
  a:not(.c-link):not(.c-btn):not(.c-card a):not(.c-pagination a) {
  color: #4f7fad;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.32px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.p-entry .p-entry__body table:not(.c-table) {
  width: 100%;
  border-collapse: collapse;
  margin: 3.2rem 0;
}
.p-entry .p-entry__body table:not(.c-table) caption {
  text-align: left;
  color: #6fa8c9;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.9px;
  margin-bottom: 0.8rem;
}
.p-entry .p-entry__body table:not(.c-table) th,
.p-entry .p-entry__body table:not(.c-table) td {
  border: 1px solid #e9e3d1;
  padding: 1.6rem;
}
.p-entry .p-entry__body table:not(.c-table) th {
  background: #6fa8c9;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.32px;
  border-color: #fff;
}
.p-entry .p-entry__body table:not(.c-table) td {
  background: #fff;
  color: #4c5a6a;
}
.p-entry .p-entry__body ul:not(#ez-toc-container ul):not(.c-share ul) {
  list-style: none;
  margin: 3.2rem 0;
  padding: 0 1.6rem;
}
.p-entry .p-entry__body ul:not(#ez-toc-container ul):not(.c-share ul) li {
  position: relative;
}
.p-entry
  .p-entry__body
  ul:not(#ez-toc-container ul):not(.c-share ul)
  li::before {
  content: "・";
  font-weight: 700;
  color: #e77e84;
  margin-right: 0.2em;
  font-size: 1.2em;
}
.p-entry ol {
  counter-reset: item;
  list-style: none;
  margin: 3.2rem 0;
  padding: 0 1.6rem;
}
.p-entry ol li {
  position: relative;
  padding-left: 3.2rem;
  counter-increment: item;
}
.p-entry ol li::before {
  content: counters(item, "-") ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #e77e84;
  font-weight: 700;
}
.p-entry ol ol {
  margin: 0.4rem 0 0.4rem -1.6rem;
}
.p-entry blockquote {
  position: relative;
  margin: 4.8rem 0 3.2rem 0;
  padding: 2.4rem 3.2rem;
  border: 2px solid #6fa8c9;
  border-radius: 2.4rem;
  background: #fff;
  position: relative;
}
.p-entry blockquote::before {
  content: "";
  position: absolute;
  left: -0.4rem;
  width: 4rem;
  height: 4rem;
  aspect-ratio: 1;
  background: #6fa8c9 url("../img/icon-quote.svg") no-repeat center
    center/2.4rem auto;
  border-radius: 0.4rem;
  transform: translateY(-50%);
  top: 0%;
}
.p-entry blockquote P {
  margin: 0;
}
.p-entry #ez-toc-container {
  padding: 2.4rem;
  border-radius: 12px;
  border: 1px solid #e9e3d1;
  margin: 3.2rem 0;
}
@media (width <= 768px) {
  .p-entry #ez-toc-container {
    padding: 1.6rem;
  }
}
.p-entry #ez-toc-container li {
  margin-top: 0.4rem;
}
.p-entry #ez-toc-container .ez-toc-link {
  color: #4f7fad;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.32px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.p-entry #ez-toc-container .ez-toc-link::before {
  color: #e77e84;
  text-decoration: none;
}
.p-entry #ez-toc-container .ez-toc-title {
  color: #2f2f2f;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  padding-left: 1em !important;
  position: relative;
  display: block;
  margin-bottom: 1rem !important;
}
.p-entry #ez-toc-container .ez-toc-title::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 0.4rem;
  height: 100%;
  background: #e77e84;
  border-radius: 4px;
}
.p-entry .c-btns {
  margin: 3.2rem 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  width: 100%;
  align-items: center;
}
.p-entry .c-cta {
  background: url(../img/img-cta-bg.jpg) no-repeat center center/cover;
  border-radius: 16px;
  border: 1px solid #e9e3d1;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  margin-top: 8rem;
  margin-bottom: 1.6rem;
  padding: 3.2rem 0;
}
.p-entry .c-cta .c-cta__inner {
  max-width: 54rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.p-entry .c-cta .c-cta__balloon-warp {
  text-align: center;
}
.p-entry .c-cta .c-cta__balloon {
  background: #75b98c;
  color: #fff;
  display: inline-flex;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 32px;
  border-radius: 8px;
  position: relative;
}
@media (width <= 768px) {
  .p-entry .c-cta .c-cta__balloon {
    font-size: 1.6rem;
  }
}
.p-entry .c-cta .c-cta__balloon::after {
  content: "";
  position: absolute;
  background: #75b98c;
  bottom: -1.5rem;
  left: 3.5rem;
  width: 1.95rem;
  height: 1.8rem;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
@media (width <= 768px) {
  .p-entry .c-cta .c-cta__balloon::after {
    width: 1.5rem;
    height: 1.5rem;
    bottom: -1.3rem;
  }
}
.p-entry .c-cta .c-cta__title {
  color: #4c5a6a;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.5px;
  padding-bottom: 0;
  margin: 0;
  text-align: center;
}
@media (width <= 768px) {
  .p-entry .c-cta .c-cta__title {
    font-size: 2rem;
  }
}
.p-entry .c-cta .c-cta__title::after {
  content: "";
  display: none;
}
.p-entry .c-cta .c-cta__title-line {
  display: block;
}
.p-entry .c-cta .c-cta__title-line--bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-entry .c-cta .c-cta__highlight {
  max-width: 18.6rem;
}
@media (width <= 768px) {
  .p-entry .c-cta .c-cta__highlight {
    max-width: 14rem;
  }
}
.p-entry .c-cta .c-cta__text {
  margin: 0;
  text-align: center;
  text-shadow: 0 0 4px #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1.4;
}
@media (width <= 768px) {
  .p-entry .c-cta .c-cta__text {
    font-size: 1.4rem;
  }
}
.p-entry .c-cta .c-cta__btn {
  margin: 0.8rem auto 0 auto;
  max-width: 48rem;
  width: 100%;
}
@media (width <= 768px) {
  .p-entry .c-cta .c-cta__btn {
    max-width: 40rem;
  }
}
.p-entry .c-cta .c-cta__btn .c-btn {
  height: 6.4rem;
}
@media (width <= 768px) {
  .p-entry .c-cta .c-cta__btn .c-btn {
    height: 4.8rem;
  }
}
.p-entry .c-cta .c-cta__btn .c-btn__text {
  font-size: 2rem;
}
@media (width <= 768px) {
  .p-entry .c-cta .c-cta__btn .c-btn__text {
    font-size: 1.4rem;
  }
}

.p-single .p-single__meta {
  display: flex;
  gap: 1.6rem;
  justify-content: flex-end;
  align-items: center;
  margin-top: 3.5rem;
}
.p-single .p-single__meta-time {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.p-single .p-single__meta-text,
.p-single .p-single__meta-day {
  color: #9f9c95;
  leading-trim: both;
  text-edge: cap;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.7px;
}
.p-single .p-single__meta-icon {
  width: 1.6rem;
  height: 1.6rem;
  aspect-ratio: 1;
}
.p-single .p-single__category {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (width <= 768px) {
  .p-single .p-single__category {
    margin-top: 1.6rem;
  }
}
.p-single .p-single__category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.p-single .c-tag {
  font-size: 1.3rem;
}
.p-single .p-single__tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-left: 0.8rem;
}
.p-single .p-single__thumbnail {
  margin: 5.6rem auto 3.2rem auto;
  max-width: 90%;
}
@media (width <= 768px) {
  .p-single .p-single__thumbnail {
    max-width: 100%;
  }
}

.p-entry__body img {
	width: auto;
	margin: 0 20px;
}