@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: 70%;
}
@media (width <= 768px) {
  html {
    font-size: 62.5%;
  }
}

img {
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Zen Kaku Gothic Antique", "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 1.6rem;
  background: var(--c-bg);
  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.7;
}

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

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

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

.l-header {
  width: 100%;
  height: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--c-bg);
}
@media screen and (min-width: 768px) {
  .l-header:not(:has(.l-header__low)) {
    height: 10rem;
  }
}
@media (width <= 768px) {
  .l-header {
    height: 8rem;
  }
  .l-header.is-login {
    height: 4.8rem;
  }
}
.l-header .l-header__inner {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
}
@media (width <= 768px) {
  .l-header .l-header__inner {
    padding: 0 1rem;
  }
}
.l-header .l-header__up {
  justify-content: space-between;
}
.l-header .l-heaedr__logo {
  margin: 0;
  font-size: 2.4rem;
  color: var(--c-main);
  max-width: 24rem;
}
@media (width <= 768px) {
  .l-header .l-heaedr__logo {
    font-size: 1.6rem;
    max-width: 19rem;
  }
}
.l-header .l-header__actions {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
@media (width <= 768px) {
  .l-header .l-header__actions {
    gap: 1rem;
  }
}
.l-header .c-header-pagehead {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  min-width: 0;
}
@media (width <= 768px) {
  .l-header .c-header-pagehead .fa-solid {
    font-size: 1.8rem;
  }
}
.l-header .c-header-back {
  color: var(--c-main);
  font-size: 2.4rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
}
.l-header .c-header-page-title {
  margin: 0;
  color: var(--c-main);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (width <= 768px) {
  .l-header .c-header-page-title {
    font-size: 1.5rem;
  }
}
@media (width <= 768px) {
  .l-header .l-header__howto {
    display: none;
  }
}
.l-header .l-header__btns {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.6rem;
}
@media (width <= 768px) {
  .l-header .l-header__btns {
    gap: 0.8rem;
  }
}
.l-header .l-header__btn .c-btn {
  width: 8rem;
  height: 3.2rem;
  font-weight: 700;
}
@media (width <= 768px) {
  .l-header .l-header__btn .c-btn {
    width: 5rem;
    font-size: 1.1rem;
  }
}
.l-header .l-header__btn svg {
  width: 3rem;
  height: 3rem;
  aspect-ratio: 1;
  flex-shrink: 0;
}
.l-header .l-header__low {
  justify-content: center;
  position: relative;
}
.l-header .l-header__low::after {
  content: "";
  position: absolute;
  height: 1px;
  background: var(--c-border);
  width: 100vw;
  top: 0;
}
@media (width <= 768px) {
  .l-header .l-header__low {
    display: none;
  }
}
.l-header .l-header__nav {
  display: flex;
  width: 100%;
  color: var(--c-main);
}
.l-header .l-header__nav > ul {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  gap: 2.4rem;
}
.l-header .l-header__nav > ul > li.current-menu-item {
  position: relative;
}
.l-header .l-header__nav > ul > li.current-menu-item::after {
  content: "";
  background: var(--c-btn);
  height: 0.3rem;
  width: 100%;
  position: absolute;
  bottom: -2.4rem;
  left: 0;
}
@media (width <= 768px) {
  .l-header .l-header__nav > ul > li.current-menu-item::after {
    direction: none;
  }
}
.l-header .l-header__nav .menu-item-has-children {
  position: relative;
  padding-right: 2.5rem;
}
.l-header .l-header__nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  flex-direction: column;
  padding: 0.5rem 0;
}
.l-header .l-header__nav .sub-menu li {
  width: 100%;
}
.l-header .l-header__nav .sub-menu li a {
  display: block;
  padding: 0.8rem 1.6rem;
}
.l-header .l-header__nav .sub-menu li a:hover {
  background: #f5f5f5;
}
.l-header .l-header__hamburger {
  display: none;
}
@media (width <= 768px) {
  .l-header .l-header__hamburger {
    display: block;
    cursor: pointer;
  }
}
.l-header .l-header__hamburger .l-header__toggle {
  width: 2.4rem;
  height: 2rem;
  position: relative;
}
.l-header .l-header__hamburger .l-header__toggle span {
  background-color: #333;
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.2rem;
  border-radius: 0.15rem;
  transition: all 0.3s ease;
}
.l-header .l-header__hamburger .l-header__toggle span:nth-child(1) {
  top: 0;
}
.l-header .l-header__hamburger .l-header__toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.l-header .l-header__hamburger .l-header__toggle span:nth-child(3) {
  bottom: 0;
}
.l-header .l-header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}
.l-header .l-header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.l-header .l-header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 50%;
}
.l-header .l-header__hamb-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  max-width: 32rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  background: #fff;
  height: 100vh;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow-y: auto;
}
.l-header .l-header__hamb-menu.active {
  transform: translateX(0);
}
.l-header .l-header__hamb-nav {
  padding: 8rem 2rem 2rem;
}
.l-header .l-header__hamb-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.l-header .l-header__hamb-nav ul li {
  border-bottom: 1px solid #eee;
}
.l-header .l-header__hamb-nav ul li a {
  display: block;
  padding: 1.6rem 0;
  color: #333;
  font-weight: 500;
  transition: color 0.2s ease;
}
.l-header .l-header__hamb-nav ul li a:hover {
  color: #666;
}
.l-header .l-header__hamb-nav .menu-item-has-children {
  position: relative;
}
.l-header .l-header__hamb-nav .menu-item-has-children > a {
  padding-right: 3rem;
}
.l-header .l-header__hamb-nav .menu-item-has-children > a::after {
  content: "";
  background: url(../img/icon-arrow-down.svg) no-repeat center center/cover;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  transition: transform 0.3s ease;
}
.l-header .l-header__hamb-nav .menu-item-has-children.is-active > a::after {
  transform: translateY(-50%) rotate(180deg);
}
.l-header .l-header__hamb-nav .sub-menu {
  display: none;
  padding-left: 1.6rem;
}
.l-header .l-header__hamb-nav .sub-menu li {
  border-bottom: none;
}
.l-header .l-header__hamb-nav .sub-menu li a {
  padding: 1.2rem 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: #666;
}
.l-header .l-header__news svg path {
  fill: var(--c-main);
}
.l-header .l-header__logout {
  width: 12rem;
  height: 4rem;
}
.l-header .l-header__other svg path {
  fill: var(--c-main);
}

.l-hederlow {
  background: var(--c-main);
  text-align: center;
  padding: 0.3rem 2rem 0.4rem;
}
.l-hederlow span {
  color: #fff;
}
@media (width <= 768px) {
  .l-hederlow span {
    font-size: 1.2rem;
  }
}

.l-footer {
  background: var(--c-main);
}
.l-footer .l-footer__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.8rem 2rem 4.8rem 2rem;
  text-align: center;
}
.l-footer .l-footer__logo {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  max-width: 24rem;
  margin: 0 auto;
}
@media (width <= 768px) {
  .l-footer .l-footer__logo {
    max-width: 20rem;
  }
}
.l-footer .l-footer__sns {
  margin: 3.2rem auto 3.2rem;
  display: flex;
  justify-content: center;
}
.l-footer .l-footer__sns ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 2.4rem;
}
.l-footer .l-footer__links {
  margin: 2.4rem auto 0 auto;
}
.l-footer .l-footer__links ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem 2.4rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
@media (width <= 992px) {
  .l-footer .l-footer__links ul {
    max-width: 72rem;
  }
}
.l-footer .l-footer__links li {
  line-height: 1;
}
.l-footer .l-footer__links a {
  display: inline-block;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.6;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.l-footer .l-footer__links a:hover {
  opacity: 0.75;
}
@media (width <= 768px) {
  .l-footer .l-footer__links ul {
    gap: 0.8rem 1.6rem;
    max-width: 40rem;
  }
  .l-footer .l-footer__links a {
    font-size: clamp(13px, 13px + (15 - 13) * (100vw - 375px) / 393, 15px);
  }
}
.l-footer .l-footer__copyright {
  text-align: center;
  color: #fff;
  padding-top: 2.4rem;
  padding-bottom: 1rem;
}
@media (width <= 768px) {
  .l-footer .l-footer__copyright {
    font-size: 1.4rem;
  }
}

.l-main {
  padding-bottom: 4rem;
}
@media (width <= 768px) {
  .l-main {
    padding-bottom: 6rem;
  }
}

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

.l-section__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (width <= 768px) {
  .l-section__inner {
    padding: 0 1.6rem;
  }
}
.l-section__inner--sm {
  max-width: 780px;
}
.l-section__inner--exsm {
  max-width: 600px;
}

.l-section__headline {
  margin-bottom: 4rem;
}
@media (width <= 768px) {
  .l-section__headline {
    margin-bottom: 3.2rem;
  }
}

.l-sp-menu {
  background: var(--c-main);
  padding: 0.8rem 3.2rem;
  display: none;
}
@media (width <= 768px) {
  .l-sp-menu {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.12);
  }
}

.l-sp-menu__inner {
  max-width: 48rem;
  margin: 0 auto;
}

.l-sp-menu__nav {
  display: flex;
  width: 100%;
  justify-content: center;
}
.l-sp-menu__nav ul {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: space-between;
  width: 100%;
}
.l-sp-menu__nav li a {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.1rem;
  gap: 0.4rem;
}
.l-sp-menu__nav .l-sp-menu__icon {
  width: 1.8rem;
  height: 1.8rem;
  aspect-ratio: 1;
}

.l-2columns {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
}
@media (width <= 1200px) {
  .l-2columns {
    gap: clamp(8px, 8px + (40 - 8) * (100vw - 992px) / 208, 40px);
  }
}
@media (width <= 992px) {
  .l-2columns {
    flex-direction: column;
    gap: 2rem;
  }
}

.l-2columns__main {
  flex: 1;
  width: 60%;
}
@media (width <= 992px) {
  .l-2columns__main {
    width: 100%;
  }
}

.l-2columns__side {
  padding: 4rem 1.6rem;
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (width <= 992px) {
  .l-2columns__side {
    display: none;
  }
}

/**
 * ------------------------------------------------
 * 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;
}

.c-mt24 {
  margin-top: 2.4rem;
}

.c-mt32 {
  margin-top: 3.2rem;
}

.c-mt40 {
  margin-top: 4rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 600px) {
  .c-text-sm-left {
    text-align: left;
  }
  .c-text-sm-center {
    text-align: center;
  }
  .c-text-sm-right {
    text-align: right;
  }
}
@media (min-width: 900px) {
  .c-text-md-left {
    text-align: left;
  }
  .c-text-md-center {
    text-align: center;
  }
  .c-text-md-right {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .c-text-lg-left {
    text-align: left;
  }
  .c-text-lg-center {
    text-align: center;
  }
  .c-text-lg-right {
    text-align: right;
  }
}
.c-text-md {
  font-size: 1.5rem;
  color: #333;
}

.c-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--c-main);
}
@media (width <= 1240px) {
  .c-card {
    min-width: 18.7rem;
  }
}
@media (width <= 992px) {
  .c-card {
    min-width: auto;
  }
}
.c-card:hover {
  opacity: 0.8;
}
.c-card:hover .c-card__img img {
  transform: scale(1.05);
}

.c-card-carousel {
  position: relative;
  padding-right: 4.2rem;
}
@media (width <= 768px) {
  .c-card-carousel {
    padding: 0;
  }
}

.c-card-carousel__viewport {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.c-card-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.c-card-carousel__track {
  display: flex;
  gap: 1.6rem;
}

.c-card-carousel__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
}
.c-card-carousel__item > .c-card {
  height: 100%;
}

.c-card-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid var(--c-main);
  background: #fff;
  color: var(--c-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.2s ease;
}
.c-card-carousel__nav:disabled {
  opacity: 0.35;
  cursor: default;
}
@media (width <= 768px) {
  .c-card-carousel__nav {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.2rem;
  }
}

.c-card-carousel__nav--prev {
  left: 0;
}

.c-card-carousel__nav--next {
  right: 0;
}

.c-card__fav {
  display: none;
  position: absolute;
  width: 3rem;
  height: 3rem;
  aspect-ratio: 1;
  border-radius: 50%;
  bottom: 0.8rem;
  right: 0.8rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--c-main);
}
@media (width <= 768px) {
  .c-card__fav {
    width: 2.2rem;
    height: 2.2rem;
  }
}
.c-card__fav .simplefavorite-button,
.c-card__fav button,
.c-card__fav a {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 1;
  z-index: 2;
  cursor: pointer;
}
.c-card__fav .simplefavorite-button * {
  display: none;
}
.c-card__fav .c-card__fav-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  border-radius: 50%;
}
.c-card__fav svg {
  width: 1.5rem;
  height: 1.5rem;
}
@media (width <= 768px) {
  .c-card__fav svg {
    width: auto;
    height: auto;
  }
}
.c-card__fav .simplefavorite-button.active + .c-card__fav-icon,
.c-card__fav .simplefavorite-button.favorited + .c-card__fav-icon, .c-card__fav.is-bookmarked .c-card__fav-icon,
.c-card__fav .simplefavorite-button[aria-pressed=true] + .c-card__fav-icon {
  background: var(--c-main);
}
.c-card__fav .simplefavorite-button.active + .c-card__fav-icon svg path,
.c-card__fav .simplefavorite-button.favorited + .c-card__fav-icon svg path, .c-card__fav.is-bookmarked .c-card__fav-icon svg path,
.c-card__fav .simplefavorite-button[aria-pressed=true] + .c-card__fav-icon svg path {
  fill: #f6d671;
}

.c-card__fav:has(.simplefavorite-button.active),
.c-card__fav.is-bookmarked {
  border: unset;
  background: unset;
}

.c-card--2 {
  background: #fff;
  border: 1px solid #333;
}
.c-card--2:hover {
  opacity: 0.8;
}
.c-card--2:hover .c-card__img img {
  transform: scale(1.05);
}
.c-card--2 .c-card__img {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 136/102;
}
@media (width <= 768px) {
  .c-card--2 .c-card__img {
    aspect-ratio: 136/102;
  }
}
.c-card--2 .c-card__img img {
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-card--2 .c-card__img img.contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.c-card--2 .c-card__body {
  padding: 1.2rem;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (width <= 768px) {
  .c-card--2 .c-card__body {
    padding: 0.8rem 0.8rem 1.2rem 0.8rem;
  }
}
.c-card--2 .c-card__title {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.4;
  min-height: 4.2em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  color: var(--c-main);
}
@media (width <= 768px) {
  .c-card--2 .c-card__title {
    font-size: 1.3rem;
    line-height: 1.4;
  }
}
.c-card--2 .c-card__tag {
  height: 2rem;
  min-width: 4.8rem;
  padding: 0 0.4rem;
}
.c-card--2 .c-card__tag span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.1rem;
  font-weight: 500;
}
@media (width <= 768px) {
  .c-card--2 .c-card__tag {
    max-width: 8rem;
  }
}
.c-card--2 .c-card__meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: space-between;
}
.c-card--2 .c-card__meta:has(> .c-card__status:only-child) > .c-card__status {
  margin-left: auto;
}
.c-card--2 .c-card__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  padding: 0 0.4rem;
  border-radius: 2px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.24px;
  line-height: 1;
}
.c-card--2 .c-card__status--new {
  background: #c96b4f;
}
.c-card--2 .c-card__status--update {
  background: #6e8fa8;
}

.c-card__img {
  aspect-ratio: 136/102;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.c-card__img img {
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-card__tag {
  bottom: 0;
  left: 0;
  padding: 0 0.4rem;
  min-width: 8rem;
  max-width: 10rem;
  height: 3.2rem;
  background: var(--c-main);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}
@media (width <= 768px) {
  .c-card__tag {
    max-width: 8rem;
  }
}
.c-card__tag span {
  color: #fff;
}

.c-card__tag--post {
  border-radius: 2px;
  border: 1px solid var(--c-main);
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
}
.c-card__tag--post span {
  color: var(--c-main);
}

.c-card__num-bg {
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (width <= 768px) {
  .c-card__num-bg {
    top: 0;
  }
}
.c-card__num-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.c-card__num {
  position: absolute;
  left: 0;
  top: -2px;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width <= 768px) {
  .c-card__num {
    width: 2.4rem;
    top: 0;
    height: 2.4rem;
  }
}
.c-card__num span {
  position: relative;
  z-index: 2;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
@media (width <= 768px) {
  .c-card__num span {
    font-size: 1.3rem;
    margin-top: -0.5rem;
  }
}
.c-card__num--rank2 .c-card__num-bg svg path {
  fill: #999893;
}
.c-card__num--rank3 .c-card__num-bg svg path {
  fill: #a07741;
}
.c-card__num--rank4 .c-card__num-bg svg path {
  fill: #5b6778;
}
.c-card__num--rank5 .c-card__num-bg svg path {
  fill: #667386;
}
.c-card__num--rank6 .c-card__num-bg svg path {
  fill: #717f93;
}
.c-card__num--rank7 .c-card__num-bg svg path {
  fill: #717f93;
}
.c-card__num--rank8 .c-card__num-bg svg path {
  fill: #717f93;
}
.c-card__num--rank10 .c-card__num-bg svg path {
  fill: #717f93;
}
.c-card__num--rank6 .c-card__num-bg svg path, .c-card__num--rank7 .c-card__num-bg svg path, .c-card__num--rank8 .c-card__num-bg svg path, .c-card__num--rank10 .c-card__num-bg svg path, .c-card__num--rank11 .c-card__num-bg svg path, .c-card__num--rank12 .c-card__num-bg svg path, .c-card__num--rank13 .c-card__num-bg svg path, .c-card__num--rank14 .c-card__num-bg svg path, .c-card__num--rank15 .c-card__num-bg svg path, .c-card__num--rank16 .c-card__num-bg svg path, .c-card__num--rank17 .c-card__num-bg svg path, .c-card__num--rank18 .c-card__num-bg svg path, .c-card__num--rank19 .c-card__num-bg svg path, .c-card__num--rank20 .c-card__num-bg svg path {
  fill: #717f93;
}

.c-card__date {
  margin: 0;
  color: var(--c-sub);
  font-size: 1.4rem;
  text-align: right;
}
@media (width <= 768px) {
  .c-card__date {
    font-size: 1.1rem;
  }
}

.c-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.c-card__title {
  margin: 0.8rem 0;
}

.c-card__text {
  color: var(--c-sub);
  margin: auto 0 0 0;
  font-size: 1.4rem;
}
@media (width <= 768px) {
  .c-card__text {
    font-size: 1.1rem;
  }
}

.c-card__info {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  display: none;
}

.c-card__like {
  color: #333;
  font-size: 1.4rem;
}
@media (width <= 768px) {
  .c-card__like {
    font-size: 1.1rem;
  }
}
.c-card__like svg {
  vertical-align: 0;
}

.c-card__favorite {
  margin: 0;
}
@media (width <= 768px) {
  .c-card__favorite {
    font-size: 1.1rem;
  }
}

.c-card__category {
  display: none;
  gap: 0.8rem;
  align-items: center;
  margin-top: 0.6rem;
  margin-bottom: 0.4rem;
}
@media (width <= 768px) {
  .c-card__category {
    gap: 0.6rem;
  }
}

.c-card__post {
  position: absolute;
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 4.8rem;
  border-radius: 2px;
  border: 1px solid var(--c-main);
  top: 0.8rem;
  right: 0.6rem;
  background: rgba(255, 255, 255, 0.9);
  height: 2rem;
  font-size: 1.2rem;
  padding: 0 1rem;
}
@media (width <= 768px) {
  .c-card__post {
    height: 1.6rem;
    padding: 0 0.8rem;
  }
}
.c-card__post span {
  color: var(--c-main);
  font-weight: 500;
  white-space: nowrap;
  font-size: 1.4rem;
}
@media (width <= 768px) {
  .c-card__post span {
    font-size: 1.1rem;
  }
}

.c-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-main);
  border-radius: 100vh;
  padding: 0.1rem 1rem;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--c-main);
}
@media (width <= 768px) {
  .c-tag {
    font-size: 1.1rem;
  }
}

.c-tag--2 {
  border-radius: 0;
  min-width: 5rem;
  padding: 0 1.6rem;
  color: #fff;
  font-weight: 500;
  font-size: 1.2rem;
  height: 2.4rem;
  background: var(--c-main);
}
@media (width <= 768px) {
  .c-tag--2 {
    height: 2.2rem;
    padding: 0 0.4rem;
    border-radius: 2px;
    font-size: 1.2rem;
  }
}

.c-title {
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--c-main);
}
@media (width <= 768px) {
  .c-title {
    font-size: 2rem;
  }
}

.c-page-title {
  text-align: center;
  font-size: 2.4rem;
  padding-bottom: 2.4rem;
  position: relative;
  color: var(--c-main);
}
.c-page-title::after {
  content: "";
  position: absolute;
  width: 6.4rem;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  height: 1px;
  background: var(--c-main);
}
@media (width <= 768px) {
  .c-page-title {
    font-size: 1.8rem;
  }
}

.c-page-title2 {
  color: var(--c-main);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.page-template-default h1.c-page-title {
  margin-top: 3.2rem;
  margin-bottom: 8rem;
}
@media (width <= 768px) {
  .page-template-default h1.c-page-title {
    margin-bottom: 6.4rem;
  }
}

.c-subtitle {
  background: #000;
  color: #fff;
  display: inline-block;
  padding: 0.4rem 0.8rem;
}

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

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

.c-decorator: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: 2rem;
}
@media (width <= 768px) {
  .c-modal {
    padding: 1rem;
  }
}
.c-modal .c-modal__content {
  background: #fff;
  width: min(90vw, 64rem);
  max-width: 64rem;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 12px;
  padding: 3.2rem 2.4rem;
  position: relative;
}
@media (width <= 768px) {
  .c-modal .c-modal__content {
    width: 100%;
    border-radius: 8px;
    padding: 2.4rem 1.6rem;
  }
}
.c-modal .c-modal__content h3 {
  font-size: 2.4rem;
  color: var(--c-main);
}
@media (width <= 768px) {
  .c-modal .c-modal__content h3 {
    font-size: 1.8rem;
  }
}
.c-modal .c-modal__close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: auto;
  border: none;
  background: unset;
}
@media (width <= 768px) {
  .c-modal .c-modal__close-btn {
    top: 0.8rem;
    right: 0.8rem;
  }
}
.c-modal .c-modal__close-btn svg g rect {
  fill: var(--c-main);
}
.c-modal .c-modal__submit {
  margin: 0 auto;
  max-width: 20rem;
  height: 3.6rem;
}
@media (width <= 768px) {
  .c-modal .c-modal__submit {
    height: 3rem;
    max-width: 16rem;
  }
}
.c-modal .c-modal__submit .c-btn {
  height: 100%;
  font-size: 1.5rem;
  font-weight: 700;
}
@media (width <= 768px) {
  .c-modal .c-modal__submit .c-btn {
    font-size: 1.4rem;
  }
}

.c-searchbox .c-checkbox-list {
  margin: 1.6rem auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1.6rem;
}
@media (width <= 768px) {
  .c-searchbox .c-checkbox-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}
.c-searchbox .c-checkbox-list li {
  border-radius: 8px;
  padding: 0.6rem 0;
}

.c-checkbox-groups {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.c-checkbox-group {
  border-top: 1px solid #ececec;
  padding-top: 1.2rem;
}
@media (width <= 768px) {
  .c-checkbox-group {
    padding-top: 0.6rem;
  }
}
.c-checkbox-group:first-child {
  border-top: none;
  padding-top: 0;
}

.c-checkbox-list--parent {
  margin: 0;
  grid-template-columns: 1fr !important;
}

.c-checkbox-list--child {
  margin: 0.6rem 0 0 1.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
@media (width <= 768px) {
  .c-checkbox-list--child {
    margin-left: 0.8rem;
  }
}

.c-checkbox-list__label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--c-main);
  text-overflow: ellipsis;
  white-space: normal;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 500;
}
@media (width <= 768px) {
  .c-checkbox-list__label {
    font-size: 1.3rem;
  }
}

.c-modal__icon {
  width: 4.2rem;
  height: 4.2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
@media (width <= 768px) {
  .c-modal__icon {
    width: 3.4rem;
    height: 3.4rem;
  }
}
.c-modal__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (width <= 768px) {
  .page-template-page-top .c-searchbox {
    padding: 2rem 1.6rem;
  }
}
@media (width <= 768px) {
  .page-template-page-top .c-searchbox .c-searchbox__bottom {
    display: none;
  }
}
@media (width <= 768px) {
  .page-template-page-top .c-searchbox .c-searchbox__submit {
    display: none;
  }
}

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

.c-box {
  border: 1px solid #333;
  padding: 2.4rem;
}

.c-box-white {
  border-radius: 12px;
  border: 1px solid var(--c-main);
  background: #fff;
}
.c-box-white .c-page-title {
  font-size: 2.4rem;
}
.c-box-white li {
  position: relative;
  padding-left: 2.4rem;
}
.c-box-white li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1.8rem;
  height: 1.8rem;
  background-color: var(--c-main);
  -webkit-mask: url("../img/icon-chk-circle.svg") no-repeat center/contain;
  mask: url("../img/icon-chk-circle.svg") no-repeat center/contain;
  pointer-events: none;
  font-weight: 500;
}
.c-box-white li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1.8rem;
  height: 1.8rem;
  background-color: #fff;
  -webkit-mask: url("../img/icon-chk-tick.svg") no-repeat center/contain;
  mask: url("../img/icon-chk-tick.svg") no-repeat center/contain;
  pointer-events: none;
}

.c-recipe__items {
  gap: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (width <= 768px) {
  .c-recipe__items {
    gap: 1.6rem;
  }
}
@media (width <= 550px) {
  .c-recipe__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-cta {
  border: 1px solid;
  padding: 2.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media (width <= 768px) {
  .c-cta {
    padding: 1rem;
  }
}

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

.c-cta__btn {
  margin: 0 auto;
  width: 100%;
  max-width: 40rem;
  height: 3.2rem;
}

@media (width <= 768px) {
  .c-cta__login-link {
    font-size: 1.4rem;
  }
}

.c-cta__login-anchor {
  text-decoration: underline;
}

.c-form {
  max-width: 90rem;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.c-form__input {
  border-radius: 8px;
  border: 1px solid var(--c-border);
  background: #fff;
}

.c-form__textarea {
  border-radius: 8px;
  border: 1px solid var(--c-border);
  background: #fff;
}

.c-form__label {
  color: var(--c-main);
  font-size: 1.5rem;
  font-weight: 700;
}

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

.c-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.8rem;
  height: 1.7rem;
  padding: 0 0.8rem 0.1rem 0.8rem;
  border-radius: 0.4rem;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  background: #b64a4a;
  color: #fff;
  margin-left: 0.4rem;
}

.c-form__optional {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.8rem;
  height: 1.7rem;
  padding: 0 0.8rem 0.1rem 0.8rem;
  border-radius: 0.4rem;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  background: #e1ded8;
  color: #333;
  margin-left: 0.4rem;
}

.c-searchbox ul {
  display: flex;
  flex-direction: column;
}

.c-searchbox {
  max-width: 48rem;
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--c-main);
  background: #fff;
  padding: 2.4rem 1.6rem;
  position: relative;
}

.c-searchbox__bottom {
  margin: 1.2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.c-searchbox__bottom .c-searchbox__field {
  display: flex;
  position: relative;
  align-items: center;
  gap: 1.6rem;
  padding: 0.8rem 1rem;
  cursor: pointer;
}
.c-searchbox__bottom .c-searchbox__field .c-btn {
  max-width: none;
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}

.c-searchbox__label {
  flex-basis: 8rem;
  font-weight: 700;
  color: var(--c-main);
  flex-shrink: 0;
  position: relative;
}
@media (width <= 768px) {
  .c-searchbox__label {
    font-size: 1.3rem;
    flex-basis: 6rem;
  }
}
.c-searchbox__label::after {
  content: "";
  position: absolute;
  right: 0;
  height: 100%;
  width: 1px;
  background: var(--c-main);
  top: 0;
}

.c-searchbox__field {
  border-radius: 8px;
  border: 1px solid var(--c-border);
  background: var(--c-bg);
}

.c-searchbox__keywordfield {
  position: relative;
}

.c-searchbox__keywordsubmit {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 2.3rem;
  height: 2.3rem;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.c-searchbox__input {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--c-border);
  background: var(--c-bg);
  font-size: 1.5rem;
  padding: 0.8rem 4.2rem 0.8rem 1.2rem;
  min-height: 3.8rem;
  font-weight: 500;
}

.c-searchbox__keywordicon {
  width: 2.3rem;
  height: 2.3rem;
}

.c-searchbox__keywordicon-frame {
  fill: none;
}

.c-searchbox__keywordicon-glass {
  fill: var(--c-main);
}

.c-searchbox__categorys,
.c-searchbox__tags,
.c-searchbox__ingredients {
  min-width: 0;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (width <= 768px) {
  .c-searchbox__categorys,
  .c-searchbox__tags,
  .c-searchbox__ingredients {
    font-size: 1.3rem;
    font-weight: 600;
  }
}

.c-searchbox__submit {
  max-width: 24rem;
  margin: 0 auto;
}
.c-searchbox__submit .c-btn {
  font-weight: 700;
}
@media (width <= 768px) {
  .c-searchbox__submit {
    max-width: 15rem;
  }
  .c-searchbox__submit .c-btn {
    font-size: 1.4rem;
  }
}

.c-more--sm {
  margin: 2.4rem 0 0 auto;
  max-width: 32rem;
}
.c-more--sm .c-btn {
  height: 3.2rem;
}
.c-more .c-btn {
  font-size: 1.5rem;
}
.c-more {
  max-width: 24rem;
  height: 4.4rem;
  margin: 4.8rem auto 0 auto;
}
@media (width <= 768px) {
  .c-more {
    margin: 3.2rem auto 0 auto;
  }
}

.c-desc {
  margin-bottom: 2.4rem;
  font-weight: 500;
}
@media (width <= 768px) {
  .c-desc {
    font-size: 1.5rem;
  }
}

.c-underline a {
  text-decoration: underline;
  color: var(-c--main);
}

.swpm-login-form-inner {
  border: none !important;
  background: unset !important;
  border-radius: 8px;
  background: #fff;
}

.swpm-login-widget-form .swpm-username-label .swpm-label {
  display: none;
}

.swpm-login-widget-form .swpm-password-label .swpm-label {
  display: none;
}

.swpm-pw-reset-email-label {
  display: none;
}

.swpm-text-field {
  background: #fff;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--c-border);
  background: #fff;
}

.swpm-password-input {
  position: relative;
}
.swpm-password-input .swpm-text-field {
  width: 100%;
  padding-right: 5.2rem;
}

.swpm-form-input-wrap.has-password-toggle,
.swpm-password-input.has-password-toggle,
.swpm-form-input.has-password-toggle {
  position: relative;
}

.swpm-form-input-wrap.has-password-toggle .swpm-form-field,
.swpm-password-input.has-password-toggle input[type=password],
.swpm-password-input.has-password-toggle input[type=text],
.swpm-form-input.has-password-toggle input[type=password],
.swpm-form-input.has-password-toggle input[type=text] {
  padding-right: 5.2rem;
}

.swpm-password-toggle {
  position: absolute;
  top: 50%;
  right: 1.4rem;
  transform: translateY(-50%);
  width: 3.2rem;
  height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  z-index: 2;
}
.swpm-password-toggle .swpm-password-toggle__icon {
  width: 3rem;
  height: 3rem;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.swpm-password-toggle:hover {
  opacity: 0.8;
}
.swpm-password-toggle:focus-visible {
  outline: 2px solid var(--c-main);
  outline-offset: 2px;
  border-radius: 4px;
}

.swpm-username-input .swpm-text-field {
  width: 100%;
}

.has-password-toggle:has(input[type=password]) .swpm-password-toggle {
  width: 2.8rem;
  height: 2.8rem;
}
.has-password-toggle:has(input[type=password]) .swpm-password-toggle .swpm-password-toggle__icon {
  width: 2.4em;
  height: 2.4rem;
}

.swpm-forgot-pass-link {
  margin-top: 4rem;
  position: relative;
  font-size: 1.4rem;
  text-align: right;
}
.swpm-forgot-pass-link::after {
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
  margin-left: 0.25em;
}
.swpm-forgot-pass-link .swpm-login-form-pw-reset-link {
  text-decoration: underline;
}

.swpm-rember-label {
  font-size: 1.4rem;
}

.swpm-remember-checkbox {
  vertical-align: -1px;
}

.swpm-login-action-msg {
  margin-top: 2.4rem;
  text-align: center;
  font-size: 1.4rem;
}

#swpm-registration-form {
  margin-top: 2.4rem;
}

.swpm-form-row.swpm-membership-level-row {
  display: none;
}

#swpm-registration-form .swpm-form-lastname-label-wrap,
#swpm-registration-form .swpm-form-firstname-label-wrap {
  display: none;
}

.swpm-name-group {
  margin-bottom: 0.8rem;
}

.swpm-name-group__label {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
}

.swpm-form-label-wrap label {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
}

.swpm-name-group__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.swpm-name-group__fields .swpm-form-row {
  margin-bottom: 0;
}

.swpm-name-group__fields .swpm-form-label-wrap {
  display: none;
}

.swpm-name-group__fields .swpm-form-field {
  width: 100%;
  box-sizing: border-box;
}

.swpm-name-group__fields .swpm-form-desc {
  display: none;
}

.swpm-registration-widget-form input[type=text],
.swpm-registration-widget-form input[type=password] {
  width: 100%;
}

.swpm-form-field {
  border-radius: 8px;
  border: 1px solid var(--c-border);
  background: #fff;
}

.swpm-form-desc {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-top: 1rem;
}

.swpm-form .swpm-form-row.error .swpm-helper-note.swpm-form-desc {
  color: #333 !important;
}

.swpm-form-label-wrap,
.swpm-name-group__label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.swpm-form-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.8rem;
  height: 1.7rem;
  padding: 0 0.8rem 0.1rem 0.8rem;
  border-radius: 0.4rem;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.swpm-form-badge.is-required {
  background: #b64a4a;
  color: #fff;
}

.swpm-form-badge.is-optional {
  background: #e1ded8;
  color: #333;
}

.swpm-registration-submit-section--bottom {
  margin-top: 4rem;
}

.swpm-agreement-row {
  margin-top: 2.4rem;
}
@media (width <= 768px) {
  .swpm-agreement-row {
    margin-top: 0.8rem;
  }
}

.swpm-agreement-label {
  display: flex;
  gap: 0.8rem;
  margin: 0 auto;
  font-size: 1.3rem;
  font-weight: 500;
  justify-content: center;
  color: #333;
}

.swpm-agreement-label a {
  text-decoration: underline;
  color: var(--c-main);
}

.swpm-form .swpm-registration-form-section .swpm-form-row {
  margin-bottom: 2rem;
}

.swpm-pw-reset-submit-button {
  margin: 2.4rem 0 4rem 0;
}

.p-registration__profile-form {
  margin-top: 10rem;
  margin-bottom: 8rem;
}
@media (width <= 768px) {
  .p-registration__profile-form {
    margin-top: 6.4rem;
    margin-bottom: 4rem;
  }
}

.acf-input-wrap input {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--c-border);
  background: #fff;
}

.p-registration__profile-form .acf-form-submit {
  margin-top: 2.4rem;
}

.acf-input textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--c-border);
  background: #fff;
}

.p-registration__lead {
  margin-bottom: 3.2rem;
  font-weight: 500;
  font-size: 1.8rem;
}
@media (width <= 768px) {
  .p-registration__lead {
    font-size: 1.6rem;
  }
}

.updated p {
  text-align: center;
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 2.4rem;
}

.p-registration__profile-form .acf-fields {
  border: 0;
  background: transparent;
}
.p-registration__profile-form .acf-label {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
}
.p-registration__profile-form .acf-field {
  padding: 0;
  border-top: 0;
  margin-top: 2.4rem;
}
.p-registration__profile-form .acf-field:first-child {
  margin-top: 0;
}
.p-registration__profile-form .acf-label {
  margin-bottom: 0.8rem;
}
.p-registration__profile-form .acf-label label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  color: #333;
}
.p-registration__profile-form .acf-required {
  display: none;
}
.p-registration__profile-form .acf-field[data-required="1"] .acf-label label::after {
  content: "必須";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.8rem;
  height: 1.7rem;
  padding: 0 0.8rem 0.1rem 0.8rem;
  border-radius: 0.4rem;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  background: #b64a4a;
  color: #fff;
  margin-left: 0.4rem;
}
.p-registration__profile-form .acf-field:not([data-required="1"]):not(.acf-field--validate-email) .acf-label label::after {
  content: "任意";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.8rem;
  height: 1.7rem;
  padding: 0 0.8rem 0.1rem 0.8rem;
  border-radius: 0.4rem;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  background: #e1ded8;
  color: #333;
  margin-left: 0.4rem;
}

.swpm-edit-profile-form .swpm-phone-row {
  display: none;
}

.swpm-edit-profile-form .swpm-street-row {
  display: none;
}

.swpm-edit-profile-form .swpm-city-row {
  display: none;
}

.swpm-edit-profile-form .swpm-state-row {
  display: none;
}

.swpm-edit-profile-form .swpm-zipcode-row {
  display: none;
}

.swpm-edit-profile-form .swpm-country-row {
  display: none;
}

.swpm-edit-profile-form .swpm-company-row {
  display: none;
}

.swpm-edit-profile-form .swpm-password-toggle {
  right: 3.2rem;
}
@media (width <= 550px) {
  .swpm-edit-profile-form .swpm-password-toggle {
    right: 2.4rem;
  }
}

.c-link-arrow {
  position: relative;
}

.c-link-arrow::after {
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
  margin-left: 0.25em;
}

.c-tokuten {
  max-width: 10.7rem;
  width: 100%;
  margin: 0 auto;
}

.c-price .u-fz-xl {
  font-size: 3.6rem !important;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

.c-back {
  margin-top: 3.2rem;
  text-align: center;
}

.c-menu-list {
  display: flex;
  flex-direction: column;
}
.c-menu-list li {
  border-top: 1px solid var(--c-main);
}
.c-menu-list li:last-child {
  border-bottom: 1px solid var(--c-main);
}
.c-menu-list li a {
  display: block;
  color: var(--c-main);
  padding: 1.6rem 1.6rem 1.6rem 0;
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
}
.c-menu-list li a::after {
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.c-side__block-content {
  margin-top: 3.2rem;
}

.c-faq {
  display: flex;
  flex-direction: column;
}

.c-faq__category {
  border-top: 1px solid var(--c-main);
  position: relative;
}
.c-faq__category:last-child {
  border-bottom: 1px solid var(--c-main);
}

.c-faq__category-item {
  padding: 1.6rem 1.6rem 1.6rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.c-faq__category-item[aria-expanded=true] .c-faq__category-icon {
  transform: rotate(180deg);
}

.c-faq__category-icon {
  transition: transform 0.18s ease;
  color: var(--c-main);
}

.c-faq__category-body {
  overflow: hidden;
}

.c-faq__category-title {
  color: var(--c-main);
  font-size: 1.5rem;
  font-weight: 700;
}

.c-faq__item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.6rem;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(-0.4rem);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.c-faq__category.is-open .c-faq__item {
  opacity: 1;
  transform: translateY(0);
}

.c-faq__q,
.c-faq__a {
  display: flex;
}

.c-faq__q-icon,
.c-faq__a-icon {
  width: 2.4rem;
  height: 2.4rem;
  aspect-ratio: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}

.c-faq__q-icon {
  background: var(--c-main);
  color: #fff;
}

.c-faq__a-icon {
  border: 1px solid var(--c-main);
  background: #fff;
  color: var(--c-main);
}

.c-faq__q,
.c-faq__a {
  gap: 1rem;
}

.c-faq__q-text,
.c-faq__a-text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--c-main);
}

.c-faq__q-text {
  font-weight: 700;
}

.c-pagetitle {
  color: var(--c-main);
  font-size: 3.2rem;
  font-weight: 500;
}
@media (width <= 768px) {
  .c-pagetitle {
    font-size: 2rem;
  }
}

.c-form-thanks__title {
  color: var(--c-main);
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 4.8rem;
}
@media (width <= 768px) {
  .c-form-thanks__title {
    margin-bottom: 3.2rem;
    font-size: 1.8rem;
  }
}

.c-form-thanks__text {
  font-size: 1.5rem;
  font-weight: 500;
}

.wpulike-notification {
  display: none;
}

.wpulike-notification {
  display: none;
}

.simplefavorite-button {
  display: none;
}

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

.c-btn--pry {
  border-radius: 8px;
  border: 1px solid var(--c-btn);
  background: var(--c-btn);
  color: #fff;
  font-weight: 700;
}

.c-btn--secondary {
  border-radius: 8px;
  border: 1px solid var(--c-btn2);
  background: var(--c-btn2);
  color: #fff;
  font-weight: 700;
}

.c-btn--submit {
  border-radius: 8px;
  background: var(--c-btn);
  color: #fff;
}

.c-btn--login {
  flex-direction: column;
  color: var(--c-main);
}
.c-btn--login svg path {
  fill: currentColor;
}

.c-btn--register {
  flex-direction: column;
  color: var(--c-main);
}
.c-btn--register svg path {
  fill: currentColor;
}

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

.swpm-login-submit {
  text-align: center;
}
.swpm-login-submit .swpm-submit-btn-default-style {
  background: var(--c-btn);
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 8px;
  border: 1px solid var(--c-btn);
  color: #fff;
  height: 4.8rem;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
@media (width <= 768px) {
  .swpm-login-submit .swpm-submit-btn-default-style {
    max-width: 23rem;
  }
}
.swpm-login-submit .swpm-submit-btn-default-style:hover {
  opacity: 0.7;
}

.swpm-pw-reset-submit-button,
.swpm-registration-submit-section,
.swpm-edit-profile-submit-section {
  text-align: center;
}
.swpm-pw-reset-submit-button .swpm-submit-btn-default-style,
.swpm-registration-submit-section .swpm-submit-btn-default-style,
.swpm-edit-profile-submit-section .swpm-submit-btn-default-style {
  background: var(--c-btn);
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 8px;
  border: 1px solid var(--c-btn);
  color: #fff;
  height: 4.8rem;
  width: 100%;
  max-width: 32rem;
  transition: all 0.3s ease-in-out;
}
@media (width <= 768px) {
  .swpm-pw-reset-submit-button .swpm-submit-btn-default-style,
  .swpm-registration-submit-section .swpm-submit-btn-default-style,
  .swpm-edit-profile-submit-section .swpm-submit-btn-default-style {
    max-width: 23rem;
  }
}
.swpm-pw-reset-submit-button .swpm-submit-btn-default-style:hover,
.swpm-registration-submit-section .swpm-submit-btn-default-style:hover,
.swpm-edit-profile-submit-section .swpm-submit-btn-default-style:hover {
  opacity: 0.7;
}

.swpm-form .swpm-edit-profile-submit-section {
  max-width: 24rem;
  height: 4.4rem;
  padding: 0;
  margin: 4rem auto 4rem auto !important;
}

.acf-form-submit {
  text-align: center;
}
.acf-form-submit .acf-button {
  background: var(--c-btn);
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 8px;
  border: 1px solid var(--c-btn);
  color: #fff;
  height: 4.8rem;
  width: 100%;
  max-width: 32rem;
  transition: all 0.3s ease-in-out;
}
@media (width <= 768px) {
  .acf-form-submit .acf-button {
    max-width: 23rem;
  }
}
.acf-form-submit .acf-button:hover {
  opacity: 0.7;
}

.c-form__submit {
  text-align: center;
  margin-top: 2.4rem;
}
.c-form__submit .c-form__button {
  background: var(--c-btn);
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 8px;
  border: 1px solid var(--c-btn);
  color: #fff;
  height: 4.8rem;
  width: 100%;
  max-width: 32rem;
  transition: all 0.3s ease-in-out;
}
@media (width <= 768px) {
  .c-form__submit .c-form__button {
    max-width: 23rem;
  }
}
.c-form__submit .c-form__button:hover {
  opacity: 0.7;
}

.c-btn--square {
  background: var(--c-main);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.swpm-payment-button {
  text-align: center;
}
.swpm-payment-button .stripe-button-el {
  box-shadow: unset;
  background: var(--c-btn);
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 8px;
  border: 1px solid var(--c-btn);
  color: #fff;
  height: 4.8rem;
  width: 100%;
  max-width: 32rem;
  transition: all 0.3s ease-in-out;
}
.swpm-payment-button .stripe-button-el span {
  line-height: 1;
  height: unset;
  background: unset;
  background-image: unset;
  font-size: unset;
  font-family: unset;
  box-shadow: unset;
  text-shadow: unset;
}
@media (width <= 768px) {
  .swpm-payment-button .stripe-button-el {
    max-width: 23rem;
  }
}
.swpm-payment-button .stripe-button-el:hover {
  opacity: 0.7;
}
.swpm-payment-button .stripe-button-el:not(:disabled):active, .swpm-payment-button .stripe-button-el.active {
  background: var(--c-btn) !important;
  background-image: none !important;
  border-color: var(--c-btn) !important;
  box-shadow: none !important;
}
.swpm-payment-button .stripe-button-el:not(:disabled):active span, .swpm-payment-button .stripe-button-el.active span, .swpm-payment-button .stripe-button-el:hover span, .swpm-payment-button .stripe-button-el:focus span {
  color: #fff !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--- ブレークポイント別 ---*/
@media (width >= 340px) {
  .u-ta-exsm-left {
    text-align: left !important;
  }
  .u-ta-exsm-center {
    text-align: center !important;
  }
  .u-ta-exsm-right {
    text-align: right !important;
  }
}
@media (width >= 550px) {
  .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 {
  width: 100%;
  background: #ccc;
  min-height: 20rem;
  aspect-ratio: 35/24;
  max-height: 72rem;
  position: relative;
}
@media (width <= 768px) {
  .p-fv {
    min-height: 20rem;
    aspect-ratio: 35/24;
  }
}
.p-fv .p-fv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-fv .p-fv__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-fv .p-fv__img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-fv .p-fv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-fv .p-fv__inner {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-fv .p-fv__title {
  font-size: 2.4rem;
  text-align: center;
}
@media (width <= 768px) {
  .p-fv .p-fv__title {
    font-size: 1.6rem;
  }
}
.p-fv .p-fv__text {
  text-align: center;
}
@media (width <= 768px) {
  .p-fv .p-fv__text {
    font-size: 1.4rem;
  }
}

.p-live .l-section__inner {
  background: #fff;
  padding-bottom: 4rem;
}
.p-live .p-live__title {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 2.4rem;
  position: relative;
  top: -1.5rem;
}
@media (width <= 1200px) {
  .p-live .p-live__title {
    font-size: clamp(20px, 20px + (24 - 20) * (100vw - 992px) / 148, 24px);
  }
}
@media (width <= 768px) {
  .p-live .p-live__title {
    font-size: 2rem;
  }
}
.p-live .p-live__title-icon {
  width: 3rem;
  height: auto;
  margin-top: -0.5rem;
}
.p-live .l-section__headline {
  margin-bottom: 0;
}
.p-live .p-live__list {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.6rem;
  display: flex;
  flex-direction: column;
}
.p-live .p-live__list li {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  position: relative;
  padding-left: 1.6rem;
}
.p-live .p-live__list li::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.45rem solid transparent;
  border-bottom: 0.45rem solid transparent;
  border-left: 0.7rem solid var(--c-main);
  border-right: 0;
  top: 0.8rem;
  left: 0;
}
.p-live .p-live__time {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 600;
  color: var(--c-main);
}
.p-live .p-live__tag {
  margin-left: 0.8rem;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 600;
  color: var(--c-main);
}
.p-live .p-live__title {
  margin: 0;
}
.p-live .p-live__item-title {
  font-size: 1.4rem;
  text-decoration: underline;
}

.p-top-recipes__gridWrap {
  position: relative;
}
.p-top-recipes.is-locked .c-recipe__items {
  filter: blur(8px);
  opacity: 0.45;
  transform: scale(1.02);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.p-top-recipes.is-locked .p-top-recipes__gridWrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.p-top-recipes.is-locked .p-top-recipes__lock-label {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: #fff;
  border: 1px solid #111;
  padding: 1rem 3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
}

.p-welcome .p-welcome__text {
  text-align: center;
}
@media (width <= 768px) {
  .p-welcome .p-welcome__text {
    text-align: left;
    font-size: 1.4rem;
  }
}
.p-welcome .p-welcome__img {
  max-width: 60rem;
  margin: 0 auto;
}
.p-welcome .p-welcome__btn {
  max-width: 40rem;
  height: 4rem;
  margin: 3.2rem auto;
}
.p-welcome .p-welcome__banner {
  max-width: 48rem;
  height: 20rem;
  margin: 4rem auto;
  border: 1px solid;
}

.p-login .p-login__title {
  text-align: center;
  color: var(--c-main);
}

.swpm-login-form-inner {
  border: 1px solid #ccc;
  padding: 2.4rem;
  max-width: 40rem;
  margin: 0 auto;
}
@media (width <= 768px) {
  .swpm-login-form-inner {
    padding: 1rem;
  }
}

.swpm-login-form-inner {
  max-width: 40rem;
  margin: 0 auto;
  padding: 2.4rem;
  border: 1px solid #ccc;
  border-radius: 0.6rem;
  background: #fff;
}
@media (width <= 768px) {
  .swpm-login-form-inner {
    padding: 1.2rem;
  }
}

.swpm-join-us-link {
  display: none;
}

@media (width <= 768px) {
  .p-signup {
    padding-top: 4rem;
  }
}
.p-signup .p-signup__title {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--c-main);
}
@media (width <= 768px) {
  .p-signup .p-signup__title {
    font-size: 2.3rem;
  }
}
.p-signup .p-signup__btn {
  height: 4.8rem;
  max-width: 35.2rem;
  margin: 3.2rem auto 0 auto;
}
@media (width <= 768px) {
  .p-signup .p-signup__btn {
    max-width: 23rem;
  }
}

@media (width <= 768px) {
  .p-top-login {
    padding-top: 0rem;
  }
}
.p-top-login .p-top-login__title {
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  padding-bottom: 1.6rem;
  position: relative;
  color: var(--c-main);
}
.p-top-login .p-top-login__title::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 6.4rem;
  background: var(--c-main);
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
}
@media (width <= 768px) {
  .p-top-login .p-top-login__title {
    font-size: 1.8rem;
    letter-spacing: 0.9px;
  }
}

.p-top-news .p-top-news__item {
  flex: 0 0 calc((100% - 4.8rem) / 3.25);
}
@media (width <= 992px) {
  .p-top-news .p-top-news__item {
    flex-basis: calc((100% - 2.4rem) / 2.5);
  }
}
@media (width <= 768px) {
  .p-top-news .p-top-news__item {
    flex-basis: clamp(161px, 161px + (214 - 161) * (100vw - 530px) / 238, 214px);
  }
}
@media (width <= 550px) {
  .p-top-news .p-top-news__item {
    flex-basis: clamp(126px, 126px + (230 - 126) * (100vw - 320px) / 230, 230px);
  }
}

.p-popular-categories .p-popular-categories__content {
  border: 1px solid var(--c-main);
}
.p-popular-categories .p-popular-categories__root,
.p-popular-categories .p-popular-categories__level,
.p-popular-categories .p-popular-categories__children {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-popular-categories .p-popular-categories__item {
  display: flex;
  gap: 2.4rem;
  align-items: center;
  padding: 1.6rem 2.4rem;
  transition: all 0.3s ease-in-out;
  color: var(--c-main);
  border-bottom: 1px solid var(--c-main);
}
@media (width <= 768px) {
  .p-popular-categories .p-popular-categories__item {
    padding: 1rem 1.6rem;
  }
}
.p-popular-categories .p-popular-categories__item:hover {
  background-color: #ccc;
}
.p-popular-categories .p-popular-categories__item p {
  font-weight: 700;
  margin: 0;
}
.p-popular-categories .p-popular-categories__root > .p-popular-categories__root-item:last-child > .p-popular-categories__item {
  border-bottom: none;
}
.p-popular-categories .p-popular-categories__item-toggle {
  margin-left: auto;
  transition: transform 0.3s ease;
}
.p-popular-categories .p-popular-categories__item.is-open {
  background-color: var(--c-sub2);
}
.p-popular-categories .p-popular-categories__item.is-open .p-popular-categories__item-toggle {
  transform: rotate(180deg);
}
.p-popular-categories .p-popular-categories__level,
.p-popular-categories .p-popular-categories__children {
  border-top: 1px solid var(--c-main);
}
.p-popular-categories .p-popular-categories__children .p-popular-categories__item {
  padding-left: 4.8rem;
}
@media (width <= 768px) {
  .p-popular-categories .p-popular-categories__children .p-popular-categories__item {
    padding-left: 3.2rem;
  }
}
.p-popular-categories .p-popular-categories__item-left {
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  overflow: hidden;
  aspect-ratio: 1;
  flex-shrink: 0;
}
.p-popular-categories .p-popular-categories__item-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-popular-categories .p-popular-categories__item-left--small {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-main);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.p-page-fv {
  background: #ccc;
  aspect-ratio: 35/24;
  max-height: 72rem;
}
@media (width <= 992px) {
  .p-page-fv {
    height: 32rem;
  }
}
@media (width <= 768px) {
  .p-page-fv {
    height: 24rem;
  }
}
.p-page-fv .p-page-fv__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-page-fv .p-page-fv__inner .c-searchbox {
  display: none;
}
@media (width <= 992px) {
  .p-page-fv .p-page-fv__inner .c-searchbox {
    display: block;
  }
}

.p-archive .p-archive__headline {
  display: flex;
  align-items: flex-end;
  gap: 2.4rem;
}
@media (width <= 768px) {
  .p-archive .p-archive__headline {
    justify-content: space-between;
  }
}
.p-archive .p-archive__title {
  margin: 0;
  font-size: 2.4rem;
}
@media (width <= 768px) {
  .p-archive .p-archive__title {
    font-size: 2rem;
  }
}
.p-archive .p-archive__inner {
  max-width: 780px;
}
@media (width <= 768px) {
  .p-archive .p-archive__inner {
    padding: 0;
  }
}
.p-archive .p-archive__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-archive .p-archive__count {
  color: var(--c-main);
  font-size: 1.6rem;
}
@media (width <= 768px) {
  .p-archive .p-archive__count {
    font-size: 1.4rem;
  }
}
.p-archive .p-archive__sort {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  justify-content: flex-end;
  font-size: 1.6rem;
  color: var(--c-main);
}
@media (width <= 768px) {
  .p-archive .p-archive__sort {
    font-size: 1.4rem;
  }
}
.p-archive .p-archive__sort select {
  font-size: 1.3rem;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #e1ded8;
}
@media (width <= 768px) {
  .p-archive .p-archive__sort select {
    max-width: 10.5rem;
    font-size: 1.4rem;
  }
}
.p-archive .p-archive__items {
  margin: 4rem 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media (width <= 550px) {
  .p-archive .p-archive__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-archive .p-page-fv {
  position: relative;
}
@media (width <= 768px) {
  .p-archive .c-searchbox {
    position: absolute;
    width: 90%;
    top: 4.5rem;
    background: rgba(255, 255, 255, 0.8);
  }
}
.p-archive .p-archive__list {
  display: flex;
  flex-direction: column;
}
.p-archive .p-archive__list-item {
  border-bottom: 1px solid;
  padding: 1.6rem 0;
}
@media (width <= 768px) {
  .p-archive .p-archive__list-item {
    padding: 0.8rem 1.6rem;
  }
}
.p-archive .p-archive__list-item:first-child {
  border-top: 1px solid;
}
.p-archive .p-archive__list-item a {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media (width <= 768px) {
  .p-archive .p-archive__list-item a {
    gap: 0.8rem;
  }
}
.p-archive .p-archive__list-body {
  display: flex;
  gap: 1.6rem;
  justify-content: space-between;
}
.p-archive .p-archive__list-body:hover .p-archive__list-right img {
  transform: scale(1.05);
}
.p-archive .p-archive__list-title {
  font-weight: 500;
  font-size: 1.6rem;
}
@media (width <= 768px) {
  .p-archive .p-archive__list-title {
    font-size: 1.4rem;
  }
}
.p-archive .p-archive__list-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  justify-content: space-between;
}
.p-archive .p-archive__list-head {
  gap: 1.2rem;
  display: flex;
  flex-direction: column;
}
@media (width <= 768px) {
  .p-archive .p-archive__list-head {
    gap: 0.8rem;
  }
}
.p-archive .p-archive__list-right {
  max-width: 20rem;
  aspect-ratio: 1/1;
  width: 100%;
  overflow: hidden;
}
@media (width <= 768px) {
  .p-archive .p-archive__list-right {
    max-width: 8.6rem;
  }
}
.p-archive .p-archive__list-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.p-archive .p-archive__list-time {
  font-size: 1.4rem;
  color: var(--c-sub);
}
@media (width <= 768px) {
  .p-archive .p-archive__list-time {
    font-size: 1.1rem;
  }
}
.p-archive .p-archive__empty {
  margin: 3.2rem 0;
  font-size: 1.5rem;
}
@media (width <= 768px) {
  .p-archive .p-archive__empty {
    text-align: center;
  }
}

.p-archive__pagination {
  display: flex;
  justify-content: center;
}

@media (width <= 992px) {
  .p-recipe-archive__fst {
    padding-top: 8.8rem;
  }
}

.p-post .p-post__header {
  margin: 0 auto;
  max-width: 78rem;
}
.p-post .p-post__video {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
}
.p-post .p-post__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
.p-post .p-post__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  border: 3px solid #fff;
  color: #fff;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.p-post .p-post__video-play:hover {
  background-color: rgba(0, 0, 0, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}
@media (width <= 768px) {
  .p-post .p-post__video-play {
    width: 6rem;
    height: 6rem;
    font-size: 2.4rem;
  }
}
.p-post .p-post__slider {
  position: relative;
}
.p-post .p-post__slider .swiper-slide {
  aspect-ratio: 4/3;
}
.p-post .p-post__slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}
.p-post .p-post__slider .swiper-slide img.contain {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
.p-post .p-post__slider .swiper-slide:has(img.contain) {
  background-color: #e4e2dd;
}
.p-post .p-post__slider .swiper-button-prev,
.p-post .p-post__slider .swiper-button-next {
  width: auto;
  height: auto;
  background: transparent;
  box-shadow: none;
  border: none;
  z-index: 3;
}
.p-post .p-post__slider .swiper-button-prev::after,
.p-post .p-post__slider .swiper-button-next::after {
  display: none;
}
.p-post .p-post__slider .swiper-button-prev img,
.p-post .p-post__slider .swiper-button-next img {
  width: 4rem;
  height: 4rem;
}
.p-post .p-post__slider .swiper-button-prev {
  left: 0.6rem;
}
.p-post .p-post__slider .swiper-button-next {
  right: 0.6rem;
}
@media (width <= 768px) {
  .p-post .p-post__slider .swiper-button-prev img,
  .p-post .p-post__slider .swiper-button-next img {
    width: 3.2rem;
    height: 3.2rem;
  }
  .p-post .p-post__slider .swiper-button-prev {
    left: 0.4rem;
  }
  .p-post .p-post__slider .swiper-button-next {
    right: 0.4rem;
  }
}
.p-post .p-post__youtube {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}
.p-post .p-post__youtube iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.p-post .p-post__title {
  margin-top: 0.8rem;
  font-weight: 700;
  font-size: 3.2rem;
  color: var(--c-main);
}
@media (width <= 768px) {
  .p-post .p-post__title {
    font-size: 2.6rem;
  }
}
.p-post .p-post__actions {
  border: 1px solid;
  padding: 1rem;
  gap: 1rem;
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin: 0 auto;
}
@media (width <= 768px) {
  .p-post .p-post__actions {
    justify-content: center;
  }
}
.p-post .p-post__actions--blogfv {
  border-color: var(--c-main);
  padding: 0.8rem 1.6rem;
  align-items: center;
}
.p-post .p-post__actions--blogfv .p-post__actions-left {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.p-post .p-post__actions--blogfv .p-post__action {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--c-main);
}
.p-post .p-post__actions--blogfv .p-post__action-circle {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 1px solid var(--c-main);
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.p-post .p-post__actions--blogfv .p-post__action-heart {
  width: 1.6rem;
  height: 1.6rem;
}
.p-post .p-post__actions--blogfv .p-post__action--bookmark .p-post__action-circle > svg {
  width: 1.6rem;
  height: 1.5rem;
}
.p-post .p-post__actions--blogfv .p-post__action--like .p-post__action-heart path {
  transition: fill 0.2s ease, stroke 0.2s ease;
}
.p-post .p-post__actions--blogfv .p-post__action--like.is-liked .p-post__action-heart path {
  fill: #ef2285;
  stroke: #ef2285;
}
.p-post .p-post__actions--blogfv .p-post__action--bookmark svg path {
  transition: fill 0.2s ease, stroke 0.2s ease;
}
.p-post .p-post__actions--blogfv .p-post__action--bookmark.is-bookmarked .p-post__action-circle {
  background: var(--c-main);
}
.p-post .p-post__actions--blogfv .p-post__action--bookmark.is-bookmarked svg path {
  fill: rgb(246, 214, 113);
  stroke: #4e5e34;
}
.p-post .p-post__actions--blogfv .p-post__action-like-shortcode {
  position: absolute;
  inset: 0;
  z-index: 2;
  font-size: 0;
}
.p-post .p-post__actions--blogfv .p-post__action-like-shortcode .wpulike,
.p-post .p-post__actions--blogfv .p-post__action-like-shortcode .wp_ulike_general_class {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.p-post .p-post__actions--blogfv .p-post__action-like-shortcode .count-box,
.p-post .p-post__actions--blogfv .p-post__action-like-shortcode .wp_ulike_counter_up {
  display: none !important;
}
.p-post .p-post__actions--blogfv .p-post__action-like-shortcode .wp_ulike_btn {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: transparent !important;
  box-shadow: none !important;
  opacity: 0;
  cursor: pointer;
}
.p-post .p-post__actions--blogfv .p-post__action-like-shortcode .wp_ulike_btn::before,
.p-post .p-post__actions--blogfv .p-post__action-like-shortcode .wp_ulike_btn::after {
  display: none !important;
}
.p-post .p-post__actions--blogfv .p-post__action-bookmark-shortcode {
  position: absolute;
  inset: 0;
  z-index: 2;
  font-size: 0;
}
.p-post .p-post__actions--blogfv .p-post__action-bookmark-shortcode .simplefavorite-button,
.p-post .p-post__actions--blogfv .p-post__action-bookmark-shortcode button,
.p-post .p-post__actions--blogfv .p-post__action-bookmark-shortcode a {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: transparent !important;
  color: transparent !important;
  box-shadow: none !important;
  font-size: 0 !important;
  line-height: 1 !important;
  opacity: 0;
  cursor: pointer;
}
.p-post .p-post__actions--blogfv .p-post__action-bookmark-shortcode .simplefavorite-button * {
  display: none;
}
.p-post .p-post__actions--blogfv .p-post__action-count {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}
.p-post .p-post__actions--blogfv .p-post__download {
  margin-left: auto;
  max-width: 15rem;
}
.p-post .p-post__actions--blogfv .p-post__download .c-btn {
  background: var(--c-main);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  min-height: 3.2rem;
  border-color: var(--c-main);
}
@media (width <= 768px) {
  .p-post .p-post__actions--blogfv .p-post__download .c-btn {
    font-size: 1.3rem;
  }
}
@media (width <= 768px) {
  .p-post .p-post__actions--blogfv {
    padding: 0.8rem 1rem;
    justify-content: space-between;
  }
  .p-post .p-post__actions--blogfv .p-post__action-circle {
    width: 3rem;
    height: 3rem;
  }
  .p-post .p-post__actions--blogfv .p-post__action-heart {
    width: 2rem;
    height: 2rem;
  }
  .p-post .p-post__actions--blogfv .p-post__action--bookmark .p-post__action-circle > svg {
    width: 2rem;
    height: 1.9rem;
  }
  .p-post .p-post__actions--blogfv .p-post__actions-left {
    gap: 1.2rem;
  }
  .p-post .p-post__actions--blogfv .p-post__download {
    max-width: 12rem;
  }
}
.p-post .p-post__action-count {
  font-size: 1.5rem;
}
.p-post .p-post__download {
  margin-left: 1rem;
  max-width: 24rem;
  width: 100%;
}
@media (width <= 768px) {
  .p-post .p-post__download {
    max-width: 14rem;
  }
}
.p-post .p-post__download .c-btn {
  gap: 0.8rem;
  font-size: 1.4rem;
}
.p-post .p-post__body {
  padding: 6rem 0;
}
.p-post .p-post__body .wp-block-table table th,
.p-post .p-post__body .wp-block-table table td {
  border-color: var(--c-main);
  padding: 1.2rem;
}
.p-post .p-post__headline {
  margin-bottom: 4rem;
}
.p-post .p-post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  color: var(--c-sub);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
}
.p-post .p-post__date {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.p-post .p-post__date time {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.p-post .p-post__recipe {
  margin-bottom: 4rem;
}
.p-post .p-post__recipe .c-title {
  margin-bottom: 2.4rem;
}
.p-post .p-post__recipe-list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.p-post .p-post__recipe-subtitle {
  margin-bottom: 1.6rem;
}
.p-post .p-post__complete {
  margin: 2.4rem 0;
}
.p-post .p-post__ingredients-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.6rem;
}
.p-post .p-post__ingredients-table th,
.p-post .p-post__ingredients-table td {
  padding: 1.2rem 1.6rem;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}
.p-post .p-post__ingredients-table th {
  background-color: #f5f5f5;
  font-weight: 600;
  width: 30%;
}
@media (width <= 768px) {
  .p-post .p-post__ingredients-table th {
    width: 40%;
  }
}
.p-post .p-post__ingredients-table td {
  background-color: #fff;
}
.p-post .p-post__step-list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.p-post .p-post__step-number {
  font-size: 1.2em;
}
.p-post .p-post__step-body {
  padding: 0 1.6rem;
}
.p-post .p-post__step-image {
  margin: 1.6rem auto;
}
.p-post .p-post__nav {
  margin: 8rem auto 2.4rem auto;
  display: flex;
  justify-content: space-between;
}
@media (width <= 768px) {
  .p-post .p-post__nav {
    margin: 7.2rem auto 2.4rem auto;
  }
}
.p-post .p-post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.p-post .p-post__tags .c-tag {
  display: inline-flex;
  align-items: center;
  height: 2.6rem;
  padding: 0 0.8rem;
  border-radius: 4px;
  font-size: 1.2rem;
  background: var(--c-sub);
  color: #fff;
  font-weight: 700;
}
@media (width <= 768px) {
  .p-post .p-post__tags .c-tag {
    font-size: 1.1rem;
    height: 2.4rem;
  }
}
@media (width <= 768px) {
  .p-post .p-post__meta {
    font-size: 1.4rem;
    font-weight: 400;
    gap: 1.6rem;
  }
  .p-post .p-post__tags {
    gap: 0.8rem;
  }
}
.p-post .p-post__content .wp-block-image:not(.alignwide):not(.alignfull) {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}
.p-post .p-post__content .wp-block-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto !important;
  margin: 0 auto;
}
.p-post--manual {
  padding-top: 4rem;
}
.p-post--manual .p-post__header {
  padding: 1.6rem;
}
.p-post--manual .p-post__meta {
  display: flex;
  gap: 1em;
}
.p-post--manual .p-post__date {
  color: var(--c-sub);
  font-size: 1.4rem;
  font-weight: 400;
}
.p-post--manual .p-post__title {
  color: var(--c-main);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
.p-post--manual .p-post__headline {
  margin-bottom: 3.2rem;
}
.p-post--manual .p-post__body {
  padding-top: 0.8rem;
}
.p-post--manual .p-post__nav {
  justify-content: center;
}

.p-instagram .p-instagram__main {
  margin-top: 2.4rem;
}
.p-instagram #sb_instagram {
  display: flex;
  flex-direction: column;
}
.p-instagram #sbi_load {
  order: 1;
  width: 100%;
  margin: 0 0 1.2rem;
  text-align: left;
}
.p-instagram #sbi_images {
  order: 2;
  width: 100%;
}
.p-instagram #sb_instagram svg:not(:root).svg-inline--fa {
  display: none;
}
.p-instagram .sbi_follow_btn {
  max-width: 18rem;
  width: 100%;
}
.p-instagram .sbi_follow_btn a {
  width: 100% !important;
  border-radius: 25px !important;
  background: linear-gradient(92deg, #a935cc 0%, #e83d85 49.52%, #ffab1b 100%) !important;
  color: #fff;
  text-align: center;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 1.5rem !important;
  font-weight: 700;
}

.p-recipe-search {
  display: none;
}
@media (width <= 992px) {
  .p-recipe-search {
    display: block;
  }
}
.p-recipe-search .l-section__headline {
  margin-bottom: 1.6rem;
}
@media (width <= 992px) {
  .p-recipe-search .c-searchbox {
    max-width: 100%;
  }
}

.p-register__head {
  color: #333;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 4rem;
}

.p-register__note-title {
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 3.2rem;
}

.p-register__note {
  margin-top: 0.8rem;
  font-size: 1.2rem;
  color: #333;
}

.p-profile .p-profile-title {
  color: var(--c-main);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0;
}
.p-profile .p-profile__header {
  width: 100%;
  margin: 0 auto;
  padding: 0.8rem;
  gap: 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--c-main);
  background: #fff;
}
.p-profile .p-profile__icon {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  width: 7.4rem;
  height: 7.4rem;
}
.p-profile .p-profile__icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-profile .p-profile__icon-pen {
  position: absolute;
  bottom: 0;
  right: 0;
}
.p-profile .p-profile__header-name {
  margin: 0;
  text-align: center;
  color: var(--c-sub);
  font-size: 1rem;
}
.p-profile .p-profile__header-cap {
  text-align: right;
  color: var(--c-btn);
  font-size: 0.8rem;
  margin-top: 0.4rem;
}
.p-profile .acf-fields > .acf-field {
  border: none;
  padding: 1rem 0;
}
.p-profile .acf-field .acf-label {
  margin-bottom: 0.4rem;
}
.p-profile .p-profile__submit {
  max-width: 24rem;
  margin: 4rem auto 4rem auto;
  height: 4.4rem;
}
.p-profile .p-profile__submit .c-btn {
  height: 100%;
}
.p-profile .acf-label {
  font-size: 1.5rem;
  color: var(--c-main);
  font-weight: 700;
}
.p-profile .swpm_profile_not_logged_in_msg {
  text-align: center;
}
.p-profile .swpm-username-row {
  display: none;
}
.p-profile .p-profile__member-section {
  margin-top: 4rem;
}
.p-profile .swpm-form-label-wrap label {
  font-size: 1.5rem;
  color: var(--c-main);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.p-profile .swpm-form-field {
  font-size: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.p-setting .p-setting__profile {
  border: 1px solid var(--c-main);
  background: #fff;
  padding: 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
}
.p-setting .p-setting__profile-title {
  margin: 0;
  color: var(--c-main);
  font-weight: 700;
}
.p-setting .p-setting__profile-content {
  display: flex;
  gap: 0.8rem;
  height: 100%;
}
.p-setting .p-setting__profile-icon {
  aspect-ratio: 1;
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.p-setting .p-setting__profile-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-setting .p-setting__profile-desc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.p-setting .p-setting__profile-name {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 0.4rem 0;
  line-height: 1.4;
}
.p-setting .p-setting__profile-id {
  color: var(--c-sub);
  font-size: 1.1rem;
  margin: 0;
  margin-top: auto;
}
.p-setting .p-setting__profile-pen {
  position: absolute;
  bottom: 0.4rem;
  right: 0.4rem;
}
.p-setting .p-setting__profile-pen svg path {
  fill: var(--c-main);
}
.p-setting .p-setting__menu {
  margin-top: 2.4rem;
}
.p-setting .p-setting__help {
  margin-top: 6.8rem;
}
.p-setting .p-setting__help-title {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0;
}
.p-setting .p-setting__logout {
  color: var(--c-main);
  font-weight: 400;
  text-decoration-line: underline;
  text-align: center;
}
.p-setting .p-setting__help-list {
  margin-top: 1.6rem;
}
.p-setting .p-setting__back {
  margin-top: 5.6rem;
}
.p-setting .p-setting__pay {
  margin-top: 2.4rem;
}
.p-setting .swpm-payment-button {
  margin-top: 2.4rem;
}

.p-billing .p-billing__box {
  border: 1px solid var(--c-main);
  background: #fff;
  padding: 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.p-billing .p-billing__box--2 {
  padding: 0;
}
.p-billing .p-billing__box--2 .p-billing__box-item dt {
  color: #333;
}
.p-billing .p-billing__box-head {
  padding: 1.4rem 1.2rem;
  border-bottom: 1px solid var(--c-main);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.p-billing .p-billing__box-title {
  min-width: 9rem;
  color: var(--c-main);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}
.p-billing .p-billing__box-text {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
}
.p-billing .p-billing__box-body {
  padding: 0.8rem 1.2rem 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.p-billing .p-billing__box-note {
  font-size: 1.1rem;
  font-weight: 400;
  text-align: right;
  margin-top: 0.4rem;
}
.p-billing .p-billing__box-list {
  display: flex;
  margin: 0;
  gap: 0.8rem;
  flex-direction: column;
}
.p-billing .p-billing__box-item {
  display: flex;
  gap: 1rem;
  width: 100%;
}
.p-billing .p-billing__box-item dt {
  min-width: 9rem;
  margin: 0;
  color: var(--c-main);
  font-size: 1.5rem;
  font-weight: 700;
}
.p-billing .p-billing__box-item dd {
  flex: 1;
  text-align: right;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
}
.p-billing .p-billing__box-form {
  text-align: right;
}
.p-billing .p-billing__box-link {
  text-align: right;
  color: var(--c-main);
  font-size: 1.5rem;
  font-weight: 400;
  position: relative;
  margin-top: 0.4rem;
  background: unset;
  border: unset;
  border-bottom: 1px solid var(--c-main);
  padding: 0;
}
.p-billing .swpm-payment-button .stripe-button-el {
  font-size: 1.4rem;
  height: 2.4rem;
}

.p-manual .p-manual__item > a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.p-manual .p-manual__list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.p-manual .p-manual__item {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--c-main);
  background: #fff;
}
.p-manual .p-manual__youtube {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}
.p-manual .p-manual__youtube iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.p-manual .p-manual__item-body {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
  border-top: 1px solid var(--c-main);
}
.p-manual .p-manual__item-title {
  color: var(--c-main);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
}
.p-manual .p-manual__item-exp {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.p-top-faq .p-top-faq__items {
  display: flex;
  flex-direction: column;
}
.p-top-faq .p-top-faq__item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--c-main);
  position: relative;
  padding: 1.6rem 1.6rem 1.6rem 0;
}
.p-top-faq .p-top-faq__q,
.p-top-faq .p-top-faq__a {
  display: flex;
}
.p-top-faq .p-top-faq__q {
  cursor: pointer;
}
.p-top-faq .p-top-faq__q i {
  color: var(--c-main);
}
.p-top-faq .p-top-faq__desc {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.p-top-faq .p-top-faq__desc .fa-angle-right,
.p-top-faq .p-top-faq__desc .fa-angle-down {
  transition: transform 0.25s ease;
  transform-origin: center;
  vertical-align: -6px;
}
.p-top-faq .p-top-faq__item.is-open .p-top-faq__desc .fa-angle-right,
.p-top-faq .p-top-faq__item.is-open .p-top-faq__desc .fa-angle-down {
  transform: rotate(180deg);
}
.p-top-faq .p-top-faq__text {
  color: var(--c-main);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}
.p-top-faq .p-top-faq__icon {
  width: 2.4rem;
  height: 2.4rem;
  aspect-ratio: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  margin-right: 1rem;
}
.p-top-faq .p-top-faq__icon--q {
  background: var(--c-main);
  color: #fff;
}
.p-top-faq .p-top-faq__icon--a {
  background: #ccc;
  color: var(--c-main);
  border: 1px solid var(--c-main);
}
.p-top-faq .p-top-faq__a-wrap {
  display: none;
}
.p-top-faq .p-top-faq__a {
  padding-top: 2rem;
}

@media (width <= 768px) {
  .p-favorite .l-section__inner {
    padding: 0;
  }
}
.p-favorite .p-favorite__tabs {
  display: flex;
  gap: 1.2rem;
  border-bottom: 1px solid var(--c-main);
  margin-bottom: 2.4rem;
  padding: 0 1rem;
}
@media (width <= 768px) {
  .p-favorite .p-favorite__panel {
    padding: 0 1.6rem;
  }
}
.p-favorite .p-favorite__tab {
  border: 1px solid var(--c-border);
  border-bottom: none;
  border-radius: 1.2rem 1.2rem 0 0;
  background: #f7f7f7;
  min-width: 14rem;
  min-height: 5.2rem;
  padding: 0.8rem 1.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--c-sub);
  transition: all 0.2s ease;
}
@media (width <= 768px) {
  .p-favorite .p-favorite__tab {
    min-width: 11rem;
    min-height: 4.8rem;
    font-size: 1.4rem;
    padding: 0.6rem 1.2rem;
  }
}
.p-favorite .p-favorite__tab.is-active {
  background: var(--c-main);
  color: #fff;
  border-color: var(--c-main);
}
.p-favorite .p-favorite__panel {
  display: none;
}
.p-favorite .p-favorite__panel.is-active {
  display: block;
}
.p-favorite .p-favorite__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  margin-bottom: 2.4rem;
}
@media (width <= 768px) {
  .p-favorite .p-favorite__bar {
    margin-bottom: 1.6rem;
  }
}
.p-favorite .p-favorite__count {
  margin: 0;
  color: var(--c-main);
  font-size: 1.6rem;
}
@media (width <= 768px) {
  .p-favorite .p-favorite__count {
    font-size: 1.3rem;
  }
}
.p-favorite .p-favorite__items {
  gap: 1.6rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (width <= 550px) {
  .p-favorite .p-favorite__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-empty {
  padding: 10rem 0;
}

@media (width <= 768px) {
  .p-top-ranking .l-section__inner {
    padding-right: 0;
  }
}
.p-top-ranking .p-top-ranking__item {
  flex: 0 0 calc((100% - 4.8rem) / 3.25);
}
@media (width <= 992px) {
  .p-top-ranking .p-top-ranking__item {
    flex-basis: calc((100% - 2.4rem) / 2.5);
  }
}
@media (width <= 768px) {
  .p-top-ranking .p-top-ranking__item {
    flex-basis: clamp(161px, 161px + (214 - 161) * (100vw - 530px) / 238, 214px);
  }
}
@media (width <= 550px) {
  .p-top-ranking .p-top-ranking__item {
    flex-basis: clamp(138px, 138px + (230 - 138) * (100vw - 320px) / 230, 230px);
  }
}/*# sourceMappingURL=style.css.map */