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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

img {
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Zen Old Mincho", serif;
  color: #252525;
  font-size: 1.6rem;
}

input,
textarea,
select,
button {
  font-family: "Zen Old Mincho", serif;
}

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

a:hover {
  opacity: 0.6;
}

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

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

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

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

.no-scroll {
  overflow: hidden !important;
  height: 100vh;
  touch-action: none;
  overscroll-behavior: none;
}

.l-header {
  width: 100%;
  height: 72px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: #fff;
}
@media (width <= 768px) {
  .l-header {
    height: 60px;
  }
}

.l-header__inner {
  max-width: 75%;
  padding: 0 20px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}
@media (width <= 1400px) {
  .l-header__inner {
    max-width: 90%;
  }
}
@media (width <= 1200px) {
  .l-header__inner {
    max-width: 95%;
  }
}
@media (width <= 992px) {
  .l-header__inner {
    max-width: 100%;
    padding: 0 0 0 20px;
  }
}
@media (width <= 340px) {
  .l-header__inner {
    padding: 0 0 0 10px;
  }
}

.l-header__logo {
  max-width: 180px;
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
}
@media (width <= 768px) {
  .l-header__logo {
    width: 140px;
    margin-left: 20px;
    height: 100%;
  }
}
@media (width <= 768px) {
  .l-header__logo a {
    height: 100%;
  }
}

.l-header__content {
  display: flex;
  align-items: center;
  height: 100%;
  gap: clamp(24px, 24px + (40 - 24) * (100vw - 992px) / 928, 40px);
}

.l-header__nav {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (width <= 992px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav ul {
  display: flex;
  align-items: center;
}
.l-header__nav li {
  color: #465152;
  font-weight: 600;
}
.l-header__nav .sub-menu {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  position: absolute;
  display: block;
  padding: 0 16px 8px 16px;
  margin-top: 24px;
  width: 200px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (width <= 992px) {
  .l-header__nav .sub-menu {
    box-shadow: none;
  }
}
.l-header__nav .sub-menu li {
  padding: 8px 0;
}
.l-header__nav .sub-menu.sub-menu--plan {
  width: 100%;
  left: 0;
  padding: 40px 0;
  position: fixed;
}
.l-header__nav .sub-menu.sub-menu--plan .sub-menu-left {
  flex: 0 0 20%;
}
.l-header__nav .sub-menu.sub-menu--plan ul {
  flex: 1;
}
.l-header__nav .sub-menu-items {
  gap: clamp(16px, 16px + (24 - 16) * (100vw - 992px) / 928, 24px);
  flex-wrap: wrap;
  align-items: flex-start;
}
.l-header__nav .sub-menu-items li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  width: 114px;
  text-align: center;
}
.l-header__nav .sub-menu-items img {
  border-radius: 24px;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-header__nav .menu-item-has-children.open > .sub-menu {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  position: absolute;
  background: #fff;
}
.l-header__nav .menu-item-has-children.open > .sub-menu--plan {
  position: fixed;
}

.menu-item-has-children {
  position: relative;
  padding: 20px;
}
.menu-item-has-children::after {
  content: "";
  position: absolute;
  background: url(../img/icon-arrow-down.svg) no-repeat center center/cover;
  top: 40%;
  right: 2px;
  width: 10px;
  height: 14px;
  transition: all 0.3s;
}
.menu-item-has-children.open::after {
  rotate: -180deg;
}

.l-header__hamburger {
  height: 20px;
  width: 20px;
  cursor: pointer;
}
.l-header__hamburger .l-header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
}
.l-header__hamburger span {
  height: 2px;
  width: 100%;
  background: #000;
  transition: all 0.3s;
  position: absolute;
}
.l-header__hamburger span:nth-of-type(1) {
  top: 0;
}
.l-header__hamburger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.l-header__hamburger span:nth-of-type(3) {
  top: 100%;
  transform: translateY(-100%);
}
.l-header__hamburger.active span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.l-header__hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.l-header__hamburger.active span:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.l-header__contact-btn {
  display: flex;
  background: #73abb7;
  height: 72px;
}
@media (width <= 768px) {
  .l-header__contact-btn {
    height: 60px;
  }
}

.l-header__contact-icon {
  display: flex;
  padding: 0 12px;
  align-items: center;
  height: 100%;
}
.l-header__contact-icon img {
  width: 28px;
}
.l-header__contact-icon span {
  color: #fff;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.6px;
}

.l-hamb {
  opacity: 0;
  visibility: hidden;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  z-index: 998;
  overflow-y: auto;
}
.l-hamb.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.l-hamb__inner {
  padding: 0 20px;
  margin-top: 72px;
  width: 100%;
  min-height: calc(100vh - 72px);
}
@media (width <= 768px) {
  .l-hamb__inner {
    margin-top: 60px;
    min-height: calc(100vh - 60px);
  }
}

.l-hamb__nav ul {
  display: flex;
  flex-direction: column;
}
.l-hamb__nav li {
  padding: 24px 0;
  border-bottom: 1px solid #fef2ea;
  font-weight: 600;
  color: #465152;
}
.l-hamb__nav li a {
  width: 100%;
}
.l-hamb__nav .sub-menu {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.l-hamb__nav .sub-menu li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.l-hamb__nav .menu-item-has-children::after {
  top: 24px;
}
.l-hamb__nav .menu-item-has-children.open > .sub-menu {
  max-height: 800px;
  visibility: visible;
  margin-top:8px;
}
.l-hamb__nav .menu-item-has-children li {
  font-size: 14px;
  padding: 24px 16px;
}
.l-hamb__nav .menu-item-has-children a {
  display: block;
  width: 100%;
}
.l-hamb__nav .menu-item-has-children--plan.open {
  padding-bottom: 0;
}
.l-hamb__nav .sub-menu--plansp li {
  padding: 24px 24px 24px 0px;
}
.l-hamb__nav .sub-menu--plansp li:nth-child(odd) {
  border-right: 1px solid #fef2ea;
}
.l-hamb__nav .sub-menu--plansp li:last-child {
  padding-bottom: 24px;
  border-bottom: 1px solid #fef2ea;
}
.l-hamb__nav .sub-menu--plansp a {
  display: flex;
}

.l-hamb__nav .sub-menu--plansp span{
  line-height:1.4;
}

.sub-menu--plansp ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.sub-menu--plansp li {
  position: relative;
  height: 100%;
}
.sub-menu--plansp li::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
  background: url(../img/icon-arrow-right.svg) no-repeat center center/cover;
  width: 12px;
  height: 14px;
}
.sub-menu--plansp li a {
  display: flex;
  gap: 8px;
  align-items: center;
  height: 100%;
}
.sub-menu--plansp li img {
  aspect-ratio: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-hamb__sns {
  margin-top: 32px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.l-hamb__sns-item {
  width: 28px;
  height: 28px;
  aspect-ratio: 1;
}

.l-footer {
  background: #9e9182;
  padding: 68px 0 8px 0;
  margin-bottom: 72px;
}
@media (width <= 768px) {
  .l-footer {
    padding: 60px 0 8px 0;
    margin-bottom: 60px;
  }
}
.l-footer .menu-item-has-children::after {
  display: none;
}
.l-footer .menu-item-has-children {
  padding: 0;
}

.l-footer__inner {
  max-width: 1140px;
  padding: 0px 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width <= 768px) {
  .l-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.l-footer__logo {
  max-width: 190px;
  width: 100%;
}

.l-footer__sns {
  margin-top: 40px;
  display: flex;
  gap: 12px;
}

.l-footer__desc {
  margin-top: 32px;
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.75px;
}
.l-footer__desc--bottom {
  margin-top: 14px;
}

.l-footer__more {
  max-width: 260px;
}
@media (width <= 768px) {
  .l-footer__more {
    display: none;
  }
}
.l-footer__more.c-more {
  margin: 18px 0 0 0;
}
.l-footer__more .c-btn {
  justify-content: space-between;
  padding: 20px 16px 20px 40px;
  height: 50px;
}

.l-footer__nav {
  padding-top: 24px;
  flex: 0 0 38%;
  display: flex;
  justify-content: space-between;
}
@media (width <= 768px) {
  .l-footer__nav {
    display: none;
  }
}
.l-footer__nav > ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  margin: 0;
}
.l-footer__nav li {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}
.l-footer__nav .sub-menu {
  margin-top: 4px;
  margin-left: 12px;
}
.l-footer__nav .sub-menu li {
  padding: 1.5px 0;
  position: relative;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  padding-left: 8px;
  margin-left: 8px;
  letter-spacing: 0.65px;
}
.l-footer__nav .sub-menu li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 1px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}

.l-footer__copy {
  margin-top: 80px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-family: "Vollkorn", serif;
}
@media (width <= 768px) {
  .l-footer__copy {
    margin-top: 40px;
  }
}

.l-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.l-inner--lg {
  max-width: 1360px;
}

.l-section {
  padding: 80px 0 120px 0;
}
@media (width <= 768px) {
  .l-section {
    padding: 60px 0 80px 0;
  }
}
@media (width <= 768px) {
  .l-section--fst {
    padding-top: 16px;
  }
}

.l-main {
  margin-top: 72px;
}
@media (width <= 768px) {
  .l-main {
    margin-top: 60px;
  }
}

.l-section__content {
  margin-top: 40px;
}
@media (width <= 768px) {
  .l-section__content {
    margin-top: 24px;
  }
}

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

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

.c-grid-8 {
  grid-template-columns: repeat(8, 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: 768px) {
  .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: 998px) {
  .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%);
  }
}
/* Flexbox Grid */
.c-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 600px) {
  .c-lh-sm-tight {
    line-height: 1.2;
  }
  .c-lh-sm-normal {
    line-height: 1.5;
  }
  .c-lh-sm-relaxed {
    line-height: 1.75;
  }
}
@media (min-width: 900px) {
  .c-lh-md-tight {
    line-height: 1.2;
  }
  .c-lh-md-normal {
    line-height: 1.5;
  }
  .c-lh-md-relaxed {
    line-height: 1.75;
  }
}
@media (min-width: 1200px) {
  .c-lh-lg-tight {
    line-height: 1.2;
  }
  .c-lh-lg-normal {
    line-height: 1.5;
  }
  .c-lh-lg-relaxed {
    line-height: 1.75;
  }
}
.c-text {
  font-weight: 500;
  line-height: 1.8;
  font-size: 16px;
}
.c-text--lg {
  font-size: 24px;
  letter-spacing: 0.8px;
}
@media (width <= 768px) {
  .c-text--lg {
    font-size: 20px;
  }
}
.c-text--red {
  color: #8d0000;
}

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

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

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

@media (min-width: 600px) {
  .c-text-sm-left {
    text-align: left;
  }
  .c-text-sm-center {
    text-align: center;
  }
  .c-text-sm-right {
    text-align: right;
  }
}
@media (min-width: 900px) {
  .c-text-md-left {
    text-align: left;
  }
  .c-text-md-center {
    text-align: center;
  }
  .c-text-md-right {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .c-text-lg-left {
    text-align: left;
  }
  .c-text-lg-center {
    text-align: center;
  }
  .c-text-lg-right {
    text-align: right;
  }
}
.c-card {
  padding: 2rem;
}
.c-card:hover {
  opacity: 0.9;
}
.c-card:hover .c-card__img img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.c-card__img {
  aspect-ratio: 2/1;
  width: 100%;
  overflow: hidden;
}
.c-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.c-entitle {
  color: #555;
  font-family: "Vollkorn", serif;
  font-size: 54px;
  margin: 0;
  font-weight: 400;
}
.c-entitle--sm {
  font-size: 42px;
}
@media (width <= 768px) {
  .c-entitle {
    font-size: 32px;
  }
}

.c-title {
  margin: 0;
  color: #d0a67c;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.8px;
}
@media (width <= 768px) {
  .c-title {
    font-size: 14px;
    line-height: 1.2;
  }
}

.c-title2 {
  text-align: center;
  color: #bfaf9f;
  font-family: "Vollkorn", serif;
  font-size: 54px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0px 24px 0;
}
@media (width <= 768px) {
  .c-title2 {
    font-size: 32px;
  }
}

.c-pagetitle {
  color: #fff;
   font-size: clamp(36px, 36px + (46 - 36) * (100vw - 992px) / 448, 46px);
  font-weight: 500;
  line-height: normal;
  letter-spacing: clamp(3.6px, 3.6px + (4.8 - 3.6) * (100vw - 992px) / 448, 4.8px);
}
@media (width <= 992px) {
  .c-pagetitle {
    font-size: 36px;
  }
}
@media (width <= 768px) {
  .c-pagetitle {
    font-size: clamp(18px, 18px + (24 - 18) * (100vw - 365px) / 403, 24px);
  }
}

.c-lead {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 1.4px;
  margin: 0 0 24px 0;
}
@media (width <= 768px) {
  .c-lead {
    font-size: 20px;
  }
}

.c-title-line {
  color: rgb(124, 105, 86);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.8px;
  position: relative;
  padding: 0.3em 0px 0.3em 1.4em;
  margin: 1em 0px 1em;
  border-bottom: 1px solid rgb(200, 163, 127);
}
@media (width <= 768px) {
.c-title-line {
 margin: .5em 0px .5em;
}
}
.c-title-line::after {
  content: "";
  position: absolute;
  width: 0.5em;
  height: 100%;
  top: 0px;
  left: 0px;
  background: rgb(200, 163, 127);
}

@media (width <= 768px) {
.c-title-line--arrow{
  display:flex;
  justify-content:space-between;
  }
}

.p-product__item-toggle{
  width: 1.5rem;
  height: auto;
}
  .p-product__item-toggle img {
    transition: transform 0.3s ease;
    transform: rotate(180deg);
  }
  .p-product__item-toggle.is-open img {
    transform: rotate(0);
  }

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

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

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

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

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

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

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

.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-modal.js-modal--2 {
  z-index: 1001;
}
.c-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.c-modal .c-modal__content {
  width: 90%;
  max-width: 70vw;
  max-height: 80vh;
  padding: 48px 0 0 0;
  position: absolute;
  overflow-y: auto;
}
@media (width <= 768px) {
  .c-modal .c-modal__content {
    max-width: 85vw;
    padding: 32px 0 0 0;
  }
}
.c-modal .c-modal__content__inner {
  background: #fff;
  padding: 80px;
  overflow-y: auto;
  max-height: 800px;
  border-radius: 4px;
  width: 100%;
}
@media (width <= 768px) {
  .c-modal .c-modal__content__inner {
    padding: 24px;
  }
}
.c-modal .c-mocal__close {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 1002;
}
@media (width <= 768px) {
  .c-modal .c-mocal__close {
    width: 20px;
    height: 20px;
  }
}

.c-modal.c-modal--gallery .c-modal__content{
  width:auto;
}

.c-modal.c-modal--gallery .p-gallery__img{
  height: 73vh;
}
@media (width <= 768px) {
  .c-modal.c-modal--gallery .p-gallery__img{
  height: 100%;
    max-height:73vh;
}
}

.c-modal.c-modal--gallery .p-gallery__img img{
  height: 100%;
  object-fit: contain;
  object-position: top;
}

.c-modal.c-modal--gallery .p-background__modal-img{
  height: auto;
  max-height:73vh;
}

.c-modal.c-modal--gallery .p-background__modal-img img{
  height:100%;
  object-fit: cover;
}

.c-product-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;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-product-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.c-product-modal.js-product-modal2 .c-product-modal__inner {
  padding: 16px;
  width: auto;
}
.c-product-modal.js-product-modal2 .c-product-modal__content {
  width: auto;
}
.c-product-modal.js-product-modal2 .c-product-modal__img {
  height: auto;
  width: 100%;
}
.c-product-modal.js-product-modal2 .c-product-modal__close {
  top: -5%;
}
.c-product-modal .c-product-modal__close {
  position: absolute;
  top: -5%;
  transform: translateY(-50%);
  right: 0px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 1002;
}
@media (width <= 992px) {
  .c-product-modal .c-product-modal__close {
    top: -5%;
    width: 20px;
    height: 20px;
  }
}
.c-product-modal .c-product-modal__content {
  width: 90%;
  max-width: 70vw;
  max-height: 80vh;
  position: absolute;
}
@media (width <= 768px) {
  .c-product-modal .c-product-modal__content {
    max-width: 85vw;
  }
}
.c-product-modal .c-product-modal__inner {
  background: #fff;
  padding: 80px;
  overflow-y: auto;
  max-height: 800px;
  border-radius: 4px;
  width: 100%;
  display: flex;
  gap: 24px;
}
@media (width <= 992px) {
  .c-product-modal .c-product-modal__inner {
    padding: 24px;
    flex-direction: column;
  }
}
.c-product-modal .p-costume__modal-title {
  margin: 0 0 16px 0;
  font-size: 24px;
}
.c-product-modal .c-product-modal__price {
  margin: 8px 0;
  font-size: 18px;
}
.c-product-modal .c-product-modal__left {
  flex: 0 0 50%;
}
@media (width <= 992px) {
  .c-product-modal .c-product-modal__left {
    flex: 0 0 100%;
  }
}
.c-product-modal .c-product-modal__right {
  flex: 1;
}

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

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

input[type=radio].c-radio-btn {
  display: none;
}

input[type=checkbox].c-radio-btn {
  display: none;
}

.c-radio-btn__wrap {
  display: inline-flex;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  border-radius: 100vw;
  border: 1px solid #c8a37f;
  background: #fff;
  cursor: pointer;
}
.c-radio-btn__wrap:hover {
  border: 1px solid #c8a37f;
  background: #c8a37f;
    transition: all 0.3s ease-in-out;
  color: #fff;
  opacity: 1;
}
@media (width <= 768px) {
  .c-radio-btn__wrap {
    min-width: 80px;
  }
}

.c-radio-btn__wrap:has(input[type=radio].c-radio-btn:checked) {
  border: 1px solid #8d7e6e;
  background: #8d7e6e;
  color: #fff;
  transition: none;
}

.c-radio-btn__wrap:has(input[type=checkbox].c-radio-btn:checked) {
  border: 1px solid #8d7e6e;
  background: #8d7e6e;
  color: #fff;
}

.c-radio-btn__wrap.active {
  border: 1px solid #c8a37f;
  background: #c8a37f;
  color: #fff;
}

.c-breadcrumb__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0px 20px;
  overflow-x: auto;
}

.c-breadcrumb__list {
  display: flex;
  padding: 0;
  list-style: none;
  align-items: center;
  white-space: nowrap;
}
.c-breadcrumb__list li {
  position: relative;
  margin-right: 16px;
  color: #6b5846;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.65px;
}
@media (width <= 768px) {
  .c-breadcrumb__list li {
    font-size: 12px;
    margin-right: 8px;
  }
}
.c-breadcrumb__list .c-breadcrumb__arrow {
  display: flex;
}
@media (width <= 768px) {
  .c-breadcrumb__list .c-breadcrumb__arrow {
    height: 0.8em;
    flex-shrink: 0;
  }
}

.c-side {
  background: #8d7e6e;
  border-radius: 6px 0px 0px 6px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  position: fixed;
  writing-mode: vertical-rl;
  right: -56px;
  color: #fff;
padding: 34px 16px 40px 16px;
  z-index: 99;
  top: 50%;
  width: 56px;
  min-height: 120px;
  transition: right 0.3s ease;
}
@media (width <= 768px) {
  .c-side {
    width: 40px;
    padding: 24px 8px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.c-side.is-visible {
  right: 0;
}

.c-side__list {
  display: flex;
  gap: 20px;
}

.c-side__item {
  width: 28px;
  height: 28px;
}
@media (width <= 768px) {
  .c-side__item {
    width: 24px;
    height: 24px;
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.c-scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.c-scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.c-scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.c-scroll-infinity__item {
  height: 600px;
  width: auto;
}
@media (width <= 768px) {
  .c-scroll-infinity__item {
    max-height: 400px;
  }
}
.c-scroll-infinity__item img {
  height: 100%;
  width: auto;
}

.scroll-infinity__item > img {
  width: 100%;
}

.c-more {
  margin: 56px auto 0 auto;
}

.c-searchbox {
  border-radius: 24px;
  border: 1px solid #bfaf9f;
  background: #faf6f3;
}

.c-searchbox__title {
  border-radius: 24px 24px 0px 0px;
  background: #9e9182;
  color: #fff;
  padding: 16px 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  margin: 0;
  text-align: center;
  font-size: 18px;
}

.c-searchbox__content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px 16px;
}

.c-filter-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
@media (width <= 768px) {
  .c-filter-group {
    flex-direction: column;
    gap: 16px;
  }
}

.c-filter-group__label {
  flex: 0 0 100px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.4;
}
@media (width <= 768px) {
  .c-filter-group__label {
    flex: auto;
  }
}

.c-filter-group__items {
  gap: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.c-filter-group__item-all{
  width:100%;
}

.c-filter-actions {
  display: flex;
  margin-top: 32px;
  justify-content: center;
  gap: 16px;
}
.c-filter-actions .c-btn {
  max-width: 200px;
}
@media (width <= 400px) {
  .c-filter-actions .c-btn {
    width: 100%;
    max-width: 400px;
  }
}
@media (width <= 400px) {
  .c-filter-actions {
    flex-direction: column;
  }
}

.c-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.c-pagination__list {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-pagination .nav-links {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-pagination__item.c-pagination__prev .c-pagination__link,
.c-pagination__item.c-pagination__next .c-pagination__link {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 12px 24px 12px 20px;
  border: 1px solid #c8a37f;
  border-radius: 30px;
  background: #fff;
  text-decoration: none;
  color: inherit;
}
@media (width <= 768px) {
  .c-pagination__item.c-pagination__prev .c-pagination__link,
  .c-pagination__item.c-pagination__next .c-pagination__link {
    padding: 8px 16px;
    height: 32px;
  }
}

.c-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border: 1px solid #c8a37f;
  border-radius: 30px;
  background: #fff;
  text-decoration: none;
  color: inherit;
}
@media (width <= 768px) {
  .c-pagination .page-numbers {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}
.c-pagination .page-numbers:hover {
  background: #c8a37f;
  color: #fff;
  opacity: 1;
}
.c-pagination .page-numbers.current {
  background: #c8a37f;
  color: #fff;
  opacity: 1;
}

.c-pagination .prev.page-numbers,
.c-pagination .next.page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100px;
  height: 40px;
  padding: 12px 24px 12px 20px;
  border: 1px solid #c8a37f;
  border-radius: 30px;
  background: #fff;
  text-decoration: none;
  color: inherit;
}
@media (width <= 768px) {
  .c-pagination .prev.page-numbers,
  .c-pagination .next.page-numbers {
    padding: 8px 16px;
    height: 32px;
  }
}
.c-pagination .prev.page-numbers:hover,
.c-pagination .next.page-numbers:hover {
  background: #c8a37f;
  color: #fff;
  opacity: 1;
}

.c-pagination__item:not(.c-pagination__prev):not(.c-pagination__next) .c-pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border: 1px solid #c8a37f;
  border-radius: 30px;
  background: #fff;
  text-decoration: none;
  color: inherit;
}
@media (width <= 768px) {
  .c-pagination__item:not(.c-pagination__prev):not(.c-pagination__next) .c-pagination__link {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

.next.page-numbers:hover .c-pagination__arrow {
  color: #fff;
}

.c-pagination__arrow {
  color: #d0a67c;
}
.c-pagination__arrow:hover {
  color: #fff;
}

.c-pagination__text {
  white-space: nowrap;
}

.c-pagination--space {
  gap: 8px;
}

/* カレントページ */
.c-pagination__item--active .c-pagination__link {
  background: #c8a37f;
  color: #fff;
}

.c-faq {
  border-bottom: 1px solid #e9e0d7;
  margin-bottom: 20px;
}
.c-faq .c-faq__q {
  display: flex;
  cursor: pointer;
  padding: 20px;
  align-items: center;
  justify-content: space-between;
}
@media (width <= 768px) {
  .c-faq .c-faq__q {
    padding: 8px;
  }
}
.c-faq .c-faq__q .c-faq__icon {
  flex-basis: 48px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background: #f5e7d9;
  flex-shrink: 0;
  color: #7c6956;
  font-size: 22px;
  font-weight: 900;
}
@media (width <= 768px) {
  .c-faq .c-faq__q .c-faq__icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
.c-faq .c-faq__q .c-faq__text {
  flex-grow: 1;
  color: #252525;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.c-faq .c-faq__q .c-faq__toggle {
  margin-left: 20px;
}
.c-faq .c-faq__a-warp {
  display: none;
  padding: 20px;
  margin-left: 20px;
  margin-bottom: 8px;
  background-color: #faf6f3;
}
@media (width <= 768px) {
  .c-faq .c-faq__a-warp {
    padding: 16px;
    margin-left: 8px;
    margin-bottom: 4px;
  }
}
.c-faq .c-faq__a-warp .c-faq__a {
  display: flex;
}
.c-faq .c-faq__a-warp .c-faq__a .c-faq__icon {
  flex-basis: 48px;
  margin-right: 20px;
  color: #7c6956;
  font-size: 22px;
  font-weight: 900;
}
@media (width <= 768px) {
  .c-faq .c-faq__a-warp .c-faq__a .c-faq__icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
.c-faq .c-faq__a-warp .c-faq__a .c-faq__text {
  flex-grow: 1;
  font-family: "Zen Old Mincho";
  font-size: 16px;
  font-weight: 500;
}
.c-faq.is-open .c-faq__a-warp {
  display: block;
}
.c-faq.is-open .c-faq__toggle i {
  transform: rotate(180deg);
}

.c-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100vw;
  padding: 0px 12px;
  height: 24px;
  border-radius: 24px;
  border: 1px solid #af9b87;
  background: #fff;
  color: #d0a67c;
  font-size: 13px;
  font-weight: 500;
}

.c-label {
  margin: 0;
  padding: 26px 24px;
  border-radius: 6px;
  background: #faf6f3;
  color: #7c6956;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.8px;
}
.c-label--brown {
  background: #bfaf9f;
  color: #fff;
}

.p-flow .c-label2 {
    margin: 0;
    padding: 26px 24px;
    border-radius: 6px;
    background: #faf6f3;
    color: #7c6956;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 1.8px;
  display:block;
}
@media (width <= 768px) {
.p-flow .c-label2 {
    padding: 18px 16px;
    border-radius: 6px;
    font-size: 16px;
    letter-spacing: 1.6px;
}
}

.p-flow h3{
  font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 1px;
    text-align: left;
}

@media (width <= 768px) {
.p-flow h3 {
        margin:16px 0;
}
}

.p-flow .c-tel{
  font-size: 24px;
    letter-spacing: 0.8px;
}

@media (width <= 768px) {
.p-flow .c-tel{
  display:block;
  font-size:20px;
  letter-spacing: 0.4px;
}
}

.c-form-wrap {
  max-width: 880px;
  margin: 40px auto 0 auto;
  border-radius: 24px;
  background: #faf6f3;
  padding: 80px 20px;
}
@media (width <= 768px) {
  .c-form-wrap {
    padding: 40px 16px;
  }
}

.c-form {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.c-form__item {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media (width <= 768px) {
.p-reservation-form .c-form__item {
  gap: 12px;
}
}

.c-form__label {
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.4px;
}

.c-form__required {
  border: 1px solid #e30000;
  display: inline-flex;
  padding: 0px 6px;
  justify-content: center;
  align-items: center;
  color: #e30000;
  font-size: 13px;
  margin-right: 8px;
}

.c-form__optional{
    border: 1px solid #7E7E7E;
  display: inline-flex;
  padding: 0px 6px;
  justify-content: center;
  align-items: center;
  color: #7E7E7E;
  font-size: 13px;
  margin-right: 8px;
}

.c-form input[type=text],
.c-form input[type=email],
.c-form input[type=tel],
.c-form input[type=number],
.c-form input[type=password],
.c-form select,
.c-form textarea {
  border-radius: 6px;
  border: 1px solid #a7a7a7;
  background: #fff;
  width: 100%;
  padding: 12px 20px;
}
@media (width <= 768px) {
.c-form input[type=text],
.c-form input[type=email],
.c-form input[type=tel],
.c-form input[type=number],
.c-form input[type=password],
.c-form select,
.c-form textarea {
  padding: 12px 12px;
}
}
.c-form__block{
  margin-left: 48px;
  display:flex;
    flex-direction: column;
    gap: 12px;
  width:100%;
}
@media (width <= 768px) {
.c-form__block{
  margin-left: 0px;
}
}

.mw_wp_form_confirm .c-form__block{
  margin-left: 0px;
}

.c-form__input {
  margin-left: 48px;
}
@media (width <= 768px) {
  .c-form__input {
    margin-left: 0;
  }
}

.c-form__input--sm {
  max-width: 260px;
}
@media (width <= 768px) {
  .c-form__input--sm {
    max-width: 100%;
  }
}

.c-form__input--xsm{
  max-width:200px;
}

@media (width <= 768px) {
  .c-form__input--xsm {
    max-width: 80%;
  }
}


.c-form__input--md {
  max-width: 400px;
}
@media (width <= 768px) {
  .c-form__input--md {
    max-width: 100%;
  }
}

.c-form__select--sm{
  max-width:17%;
}
@media (width <= 768px) {
.c-form select.c-form__select--sm{
  max-width:25%;
   padding: 12px 8px;
}
}


.c-form__select--xsm{
    max-width:14%;
}
@media (width <= 768px) {
.c-form select.c-form__select--xsm{
    max-width:20%;
  padding: 12px 8px;
}
}

.c-form__textarea{
  margin-top:8px;
}

.c-form__unit{
  margin:0px 12px 0px 6px;
}
@media (width <= 768px) {
.c-form__unit{
  margin:0px 6px 0px 4px;
}
}

.c-form__note {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}

.p-reservation-form .c-form__note{
        font-weight: 700;
    margin: 0;
}

.c-form__block .c-form__note{
  margin:0;
}

.c-form__btn {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}
.c-form__btn .c-btn {
  padding: 0px 20px 0px 40px;
  height: 50px;
}
@media (width <= 768px) {
  .c-form__btn .c-btn {
    padding: 0px 16px 0 32px;
    height: 40px;
  }
}

.c-form__radio[type=radio] {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  line-height: 1;
  cursor: pointer;
}

.c-form__radio:not(:last-of-type) {
  margin-right: 16px;
}

.c-form__radio {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #C8A37F;
  border-radius: 9999px;
  background: #fff;
  cursor: pointer;
  vertical-align: -4px;
}

.c-form__radio:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  border-radius: 9999px;
  background-color: #C8A37F;
}

.c-form__radio-group {
  display: flex;
  gap: 32px;
}

.p-reservation-form .c-form__radio-group{
  flex-wrap:wrap;
  row-gap:16px;
}

@media (width <= 768px) {
.p-reservation-form .c-form__radio-group{
  gap:16px;
}
}

.c-form__item:has(.error) .c-form__input[type=text],
.c-form__item:has(.error) .c-form__input[type=email],
.c-form__item:has(.error) .c-form__input[type=tel],
.c-form__item:has(.error) .c-form__input[type=number],
.c-form__item:has(.error) .c-form__input[type=password],
.c-form__item:has(.error) select,
.c-form__item:has(.error) textarea {
  border: 1px solid #e30000;
  background: #ffefef;
}

.c-form__item:has(.error) .c-form__bottom textarea {
    border: 1px solid #a7a7a7;
    background: #fff;
}
@media (width <= 768px) {
   .c-form__bottom{
     margin-top:8px;
  }
  .c-form__bottom .c-form__label{
    font-size:14px;
  }
}

.c-form__item:has(.error) .c-form__radio[type=radio] {
  background: #ffefef;
}

.c-form__item--message .error {
  margin-left: 48px;
}
@media (width <= 768px) {
  .c-form__item--message .error {
    margin-left: 0;
  }
}

.mw_wp_form_preview .c-form__radio-group {
  margin-left: 0;
}

.c-btn--outline {
  margin-top: 24px;
  text-decoration: underline;
}

.c-btn--link{
  margin-top:16px;
  border-radius: 30px;
    background: #73abb7;
    display: inline-flex;
    padding: 2px 20px;
    justify-content: center;
    align-items: center;
    color: #fff;
    leading-trim: both;
    text-edge: cap;
    font-weight: 900;
    line-height: 180%;
    letter-spacing: 0.65px;
}

.c-box {
  border: 1px solid #7c6956;
  padding: 12px 32px;
  margin: 12px 0;
}
@media (width <= 768px) {
  .c-box {
    padding: 8px 16px;
  }
}

@media (width <= 768px) {
  .p-flow .c-box p{
    margin:0;
    font-size: 14px;
  }
}


@media (width <= 768px) {
  .p-flow__block-desc p{
    font-size: 14px;
  }
}

@media (width <= 768px) {
.p-flow .l-section__headline p{
  font-size:14px;
  }
}
  

.c-plan-box {
  display: flex;
  padding: 16px 16px 16px 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  flex-shrink: 0;
  border-radius: 24px;
  border: 1px solid #E9E0D7;
  background: #faf6f3;
  max-width: 530px;
  width: 100%;
}
@media (width <= 992px) {
  .c-plan-box {
    max-width: none;
  }
}
@media (width <= 768px) {
  .c-plan-box {
    padding: 16px 12px;
  }
}

.c-plan-box__head {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-end;
  border-bottom: 1px solid #e9e0d7;
  padding-bottom: 16px;
}

.c-plan-box-title {
  color: #7c6956;
  leading-trim: both;
  text-edge: cap;
  font-family: "Zen Old Mincho";
  font-size: 22px;
  font-style: normal;
  margin: 0;
  font-weight: 900;
  line-height: 150%;
}
.p-page__plan-list .c-plan-box-title {
  position: relative;
  padding-right: 36px;        
  cursor: pointer;        
}
@media (width <= 768px) {
  .c-plan-box-title {
    font-size: 18px;
  }
}

.c-plan-box-price {
  color: #7c6956;
  text-align: right;
  margin: 0;
  leading-trim: both;
  text-edge: cap;
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}
@media (width <= 768px) {
  .c-plan-box-price {
    font-size: 24px;
    white-space:nowrap;
  }
}
.c-plan-box-price span {
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%;
}
@media (width <= 768px) {
  .c-plan-box-price span {
    font-size: 16px;
  }
}

.c-plan-box__label {
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #7c6956;
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: "Zen Old Mincho";
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
  line-height: 120%;
}
@media (width <= 768px) {
  .c-plan-box__label {
    font-size: 14px;
  }
}

.c-plan-box__desc {
  margin: 0;
  padding: 0 8px;
}
@media (width <= 768px) {
  .c-plan-box__desc {
    font-size: 14px;
    padding: 0;
  }
}

.c-plan-box__body {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #e9e0d7;
  background: #fff;
}

.c-plan-box__list {
  margin: 0;
  padding: 8px 0;
  list-style: none;
}
.c-plan-box__list .c-plan-box__text {
  display: inline;
}
.c-plan-box__list .js-modal-open3 .c-plan-box__text {
  text-decoration: underline;
  position: relative;
  margin-right: 2px;
  padding-right: 18px;
  cursor: pointer;
}
.c-plan-box__list .js-modal-open3 .c-plan-box__text::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/icon-link.svg) no-repeat center center/cover;
  width: 16px;
  height: 16px;
}
.c-plan-box__list li {
  color: #604e3c;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  padding: 8px 8px 8px 48px;
  position: relative;
  border-bottom: 1px solid #e9e0d7;
}
.c-plan-box__list li:last-child {
  border-bottom: none;
}
@media (width <= 768px) {
  .c-plan-box__list li {
    font-size: 14px;
    line-height: 1.8;
    padding: 8px 8px 8px 40px;
  }
}
.c-plan-box__list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 12px;
  width: 22px;
  height: 18px;
  background: url(../img/icon-plan-chk.svg) no-repeat center center/cover;
}
@media (width <= 768px) {
  .c-plan-box__list li::before {
    width: 18px;
    height: 16px;
  }
}
.c-plan-box__list span {
  border: 1px solid #E9E0D7;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.72px;
  padding: 2px 12px;
  margin-left: 8px;
  vertical-align: 2px;
  white-space: nowrap;
}

.c-plan-box__tags {
  display: inline;
}
@media (width <= 768px) {
  .c-plan-box__tags {
    display: block;
    margin-top:8px;
  }
}

.c-plan-box__note {
  padding: 8px;
  border-top: 1px solid #e9e0d7;
}

.c-plan-box__ul {
  padding: 0 8px;
  margin: 0;
  list-style: none;
}
.c-plan-box__ul li {
  position: relative;
}
@media (width <= 768px) {
  .c-plan-box__ul li {
    font-size: 14px;
  }
}
.c-plan-box__ul li::before {
  content: "・";
}
.c-plan-box__ul li.nonedots::before {
  content: "";
}
.c-plan-box__option-label {
  background: #c8a37f;
  color: #fff;
  padding: 4px 12px;
}
@media (width <= 768px) {
  .c-plan-box__option-label {
    font-size: 14px;
  }
}

.c-plan-box__option-list {
  list-style: none;
  margin: 4px 0 0 0;
  padding: 0;
}
.c-plan-box__option-list li {
  position: relative;
  padding: 4px 8px 4px 24px;
  font-size: 15px;
}
@media (width <= 768px) {
  .c-plan-box__option-list li {
    font-size: 14px;
  }
}
.c-plan-box__option-list li::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 22px;
  top: 4px;
  left: 0;
  background: url(../img/icon-option-chk.svg) no-repeat center center/cover;
}

.c-plan-box__bottom-img {
  max-width: 100%;
  max-height: 320px;
  margin: 8px auto;
}
.c-plan-box__bottom-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width <= 768px) {
  .c-plan-box__bottom-img {
    max-height: 240px;
  }
}

.c-plan-items {
  gap: 40px;
}

.c-plan-map {
  border-radius: 24px;
  border: 1px solid #e9e0d7;
  background: #faf6f3;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0;
}
@media (width <= 992px) {
  .c-plan-map {
    padding: 32px 20px;
    margin: 24px 0;
  }
}
@media (width <= 768px) {
  .c-plan-map {
    padding: 16px;
  }
}

.c-plan-map__title {
  text-align: center;
  color: #7c6956;
  font-size: 20px;
  font-weight: 900;
  line-height: 120%;
  position: relative;
  padding-bottom: 24px;
  margin: 16px 0 0 0;
}
@media (width <= 768px) {
  .c-plan-map__title {
    font-size: 18px;
  }
}
.c-plan-map__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  max-width: 500px;
  width: 100%;
  background: #7c6956;
}

.c-plan-map__desc {
  text-align: center;
  color: #604e3c;
  font-weight: 600;
  line-height: 150%;
}
@media (width <= 768px) {
  .c-plan-map__desc {
    font-size: 14px;
    margin: 16px 0;
  }
}

.c-plan-map__content {
  gap: 16px;
  margin-top: 24px;
  width: 100%;
  background: #fff;
  border-radius: 24px;
}
@media (width <= 768px) {
  .c-plan-map__content {
    margin-top: 16px;
  }
}

.c-plan-map__map {
  flex: 0 0 50%;
}
@media (width <= 992px) {
  .c-plan-map__map {
    flex: auto;
  }
}

body .is-layout-flex.c-plan-map__list {
  display: grid;
}

.c-plan-map__list {
  border-radius: 8px;
  border: #e9e0d7;
  width: 100%;
  max-width: 700px;
  padding: 24px 0;
  margin: 0 auto;
  gap: 40px;
  row-gap: 24px;
  justify-content: space-between;
}
@media (width <= 992px) {
  .c-plan-map__list {
    flex: auto;
  }
}

.c-plan-map__item {
  display: flex;
  padding: 12px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
  border-bottom: 1px dashed #e9e0d7;
}
.c-plan-map__item ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-plan-map__item li {
  position: relative;
  color: #604e3c;
  font-size: 15px;
  font-weight: 500;
  line-height: 160%;
}
.c-plan-map__item li::before {
  content: "・";
}
@media (width <= 768px) {
  .c-plan-map__item li {
    font-size: 14px;
  }
}

.c-plan-map__list-title {
  margin: 0;
  color: #604e3c;
  font-weight: 700;
  line-height: 150%;
  position: relative;
  padding-left: 28px;
}
@media (width <= 768px) {
  .c-plan-map__list-title {
    font-size: 14px;
  }
}
.c-plan-map__list-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 18px;
  background: url(../img/icon-plan-chk.svg) no-repeat center center/cover;
}
.c-plan-map__list-title span {
  display: inline-flex;
  padding: 0px 12px 0px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  border: 1px solid #7c6956;
  background: #fff;
  font-size: 12px;
  letter-spacing: -0.72px;
  margin-left: 8px;
}
@media (width <= 768px) {
  .c-plan-map__list-title span {
    font-size: 11px;
    padding: 0px 8px 0px 8px;
  }
}

.c-plan-map__note {
  max-width: 620px;
  width: 100%;
  display: block;
  margin: 32px auto 0 auto;
  color: #604e3c;
  leading-trim: both;
  text-edge: cap;
  font-weight: 600;
  line-height: 150%;
}
@media (width <= 768px) {
  .c-plan-map__note {
    font-size: 14px;
    margin-top: 24px;
  }
}

.c-plan-desc p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
}
@media (width <= 768px) {
.c-plan-desc p {
  font-size: 14px;
  line-height: 1.5;
}
}

.c-plan-desc ul{
list-style: none;
  padding: 0;
}
 

.c-plan-desc li{
position: relative;
}

.c-plan-desc li::before {
  content: "・";
}

@media (width <= 768px) {
.c-plan-desc li {
  font-size: 14px;
}
}

.c-plan-desc span {
  border-radius: 30px;
  background: #73abb7;
  display: inline-flex;
  padding: 2px 20px;
  justify-content: center;
  align-items: center;
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-size: 13px;
  font-weight: 900;
  line-height: 180%;
  letter-spacing: 0.65px;
  margin-left: 8px;
}

.c-chk {
  position: relative;
  padding-left: 24px;
}
.c-chk::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 22px;
  top: 2px;
  left: 0;
  background: url(../img/icon-option-chk.svg) no-repeat center center/cover;
}
.c-chk a {
  border-radius: 30px;
  background: #73abb7;
  display: inline-flex;
  padding: 2px 20px;
  justify-content: center;
  align-items: center;
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-size: 13px;
  font-weight: 900;
  line-height: 180%;
  letter-spacing: 0.65px;
  margin-left: 8px;
}

@media (width <= 496px) {
  .c-chk a {
    margin-top:8px;
  }
}

.c-title-line:has(+ .c-plan-map) {
  display: none;
}

.c-fixd-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -2px 1px rgba(0, 0, 0, 0.1);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  z-index: 99;
  height: 80px;
}
@media (width <= 768px) {
  .c-fixd-bottom {
    padding: 0;
    height: 60px;
  }
}

.c-fixd-bottom__inner {
  display: flex;
  height: 100%;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  max-width: 920px;
  margin: 0 auto;
}
@media (width <= 992px) {
  .c-fixd-bottom__inner {
    max-width: 992px;
    gap: 24px;
  }
}
@media (width <= 768px) {
  .c-fixd-bottom__inner {
    gap: 0;
  }
}

.c-fixd-bottom__item {
  font-weight: 700;
}
.c-fixd-bottom__item--left {
  flex: 0 0 68%;
}
@media (width <= 768px) {
  .c-fixd-bottom__item--left {
    flex: 0 0 50%;
  }
}
.c-fixd-bottom__item--right {
  flex: 0 0 32%;
}
@media (width <= 768px) {
  .c-fixd-bottom__item--right {
    flex: 0 0 50%;
  }
}
@media (width <= 992px) {
  .c-fixd-bottom__item {
    text-align: center;
  }
}
@media (width <= 768px) {
  .c-fixd-bottom__item {
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .c-fixd-bottom__item--left {
    background: #4CC764;
  }
  .c-fixd-bottom__item--right {
    background: #73abb7;
    color: #fff;
  }
  .c-fixd-bottom__item .c-btn {
    height: 100%;
    width: 100%;
    border-radius: 0;
  }
  .c-fixd-bottom__item .c-btn__arrow {
    display: none;
  }
}
.c-fixd-bottom__item p {
  margin: 0;
}
.c-fixd-bottom__item .c-btn {
  height: 60px;
  padding: 0 20px;
}
@media (width <= 768px) {
  .c-fixd-bottom__item .c-btn {
    height: 100%;
  }
}

.c-fixd-bottom__line {
  width: 100%;
  background: #4CC764;
  border-radius: 100vw;
  display: flex;
  padding: 0px 32px;
  height: 60px;
  align-items: center;
  text-decoration: none;
  color: #fff;
  justify-content: center;
  letter-spacing: 0.8px;
  font-size: 16px;
  gap: 16px;
}
@media (width <= 768px) {
  .c-fixd-bottom__line {
    padding: 0;
    gap: 0;
    height: 100%;
  }
}

.c-fixd-bottom__line-qr {
  width: 50px;
  height: 50px;
}
@media (width <= 768px) {
  .c-fixd-bottom__line-qr {
    display: none;
  }
}

.c-fixd-bottom__line-text {
  display: flex;
  flex-direction: column;
}
@media (width <= 768px) {
  .c-fixd-bottom__line-text--pc {
    display: none;
  }
}
.c-fixd-bottom__line-text--sp {
  display: none;
}
@media (width <= 768px) {
  .c-fixd-bottom__line-text--sp {
    display: flex;
        align-items: center;
        gap: 12px;
        flex-direction: row;
  }
}
.c-fixd-bottom__line-text span{
      text-align: left;
    line-height: 1.4;
}

.c-fixd-bottom__line-text span:last-child {
  font-size: 14px;
}
@media (width <= 768px) {
  .c-fixd-bottom__line-text span:last-child {
    font-size: 16px;
  }
}

.c-fixd-bottom__line-icon{
  width:40px;
  height:auto;
}

#fixed-footer {
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

#fixed-footer.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.c-line-box {
  margin: 24px 0;
  max-width: 650px;
  background: linear-gradient(135deg, #06c755 0%, #00a14b 100%);
  padding: 24px;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: block;
}

.c-line-box__flex {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}
@media (width <= 768px) {
  .c-line-box__flex {
    gap: 0;
    flex-direction: column-reverse;
  }
}

.c-line-box__qr {
  flex-shrink: 0;
  flex: 0 0 30%;
}
@media (width <= 768px) {
  .c-line-box__qr {
    flex: auto;
    max-width: 240px;
    margin: 0 auto;
    margin-bottom: 16px;
  }
}

.c-line-box__friend {
  font-weight: 600;
  font-size: 20px;
  border: 2px solid #fff;
  border-radius: 100vw;
  padding: 8px 16px;
  display: inline-flex;
  margin-left: auto;
}
@media (width <= 768px) {
  .c-line-box__friend {
    display: none;
  }
}

.c-line-box__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
@media (width <= 768px) {
  .c-line-box__text {
    text-align: center;
  }
}
.c-line-box__text .lg {
  font-size: 34px;
  letter-spacing: 1.2px;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (width <= 768px) {
  .c-line-box__text .lg {
    font-size: 24px;
    margin-bottom: 0;
    letter-spacing: 0.8px;
  }
}
.c-line-box__text .sm {
  font-size: 18px;
  font-weight: 600;
}
@media (width <= 768px) {
  .c-line-box__text .sm {
    font-size: 16px;
    letter-spacing: 0.6px;
  }
}

.c-line-box__bottom {
  margin: 16px 0 0 0;
}
@media (width <= 768px) {
  .c-line-box__bottom {
    margin: 8px 0 0 0;
    font-size: 14px;
    text-align: center;
  }
}

/* SR向け（そのまま流用OK） */
.u-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 1px, 1px);
  white-space: nowrap; border: 0;
}

/* 見出し右端のトグルボタン */
.c-plan-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

/* 開閉アニメーション（矢印の回転） */
.c-plan-toggle__icon { transition: transform 0.2s ease; }
.c-plan-toggle[aria-expanded="true"] .c-plan-toggle__icon { transform: rotate(180deg); }


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

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

.c-btn--contact {
  background: #73abb7;
  border-radius: 100vw;
  height: 34px;
  padding: 0 26px;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
}
.c-btn--contact.c-btn--icon {
  padding: 0 10px 0 26px;
}
.c-btn--contact .c-icon {
  display: flex;
  align-items: center;
  width: 14px;
}

.c-btn--pry {
  padding: 20px;
  border-radius: 100vw;
  background: #c8a37f;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  gap: 24px;
  border: 2px solid #c8a37f;
  letter-spacing: 0.8px;
  transition: all 0.3s ease-in-out;
}
.c-btn--pry .c-btn__arrow {
  background: #fff;
}
.c-btn--pry svg {
  fill: #c8a37f;
}
.c-btn--pry:hover {
  color: #c8a37f;
  background: #fff;
}
.c-btn--pry:hover .c-btn__arrow {
  border: 2px solid #c8a37f;
}
.c-btn--pry:hover svg:first-child {
  left: 200%;
}
.c-btn--pry:hover svg:last-child {
  left: 50%;
}

.c-btn--blue {
  padding: 20px;
  border-radius: 100vw;
  background: #73abb7;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  gap: 24px;
  border: 2px solid #73abb7;
  letter-spacing: 0.8px;
  transition: all 0.3s ease-in-out;
}
.c-btn--blue .c-btn__arrow {
  background: #fff;
}
.c-btn--blue .c-btn__arrow svg {
  fill: #73abb7;
}
.c-btn--blue:hover {
  color: #73abb7;
  background: #fff;
}
.c-btn--blue:hover .c-btn__arrow {
  border: 2px solid #73abb7;
}
.c-btn--blue:hover svg:first-child {
  left: 200%;
}
.c-btn--blue:hover svg:last-child {
  left: 50%;
}

.c-btn__arrow {
  display: inline-block;
  border-radius: 22px;
  position: relative;
  width: 58px;
  height: 20px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #fff;
}
@media (width <= 400px) {
  .c-btn__arrow {
    width: 50px;
  }
}
@media (width <= 340px) {
  .c-btn__arrow {
    width: 40px;
  }
}
.c-btn__arrow svg {
  transition-duration: 0.5s;
  fill: #c8a37f;
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  position: absolute;
}
.c-btn__arrow svg:first-child {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-btn__arrow svg:last-child {
  top: 50%;
  left: -100%;
  transform: translate(-50%, -50%);
}

.c-btn--green {
  height: 48px;
  padding: 0 20px;
  background: #73abb7;
  border-radius: 100vw;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid transparent;
}

.c-btn--white {
  height: 48px;
  padding: 0 20px;
  border-radius: 100vw;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid transparent;
  border-radius: 24px;
  border: 1px solid #c8a37f;
  background: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*==================================
  Visually Hidden
  (画面外表示だが読み上げ対象)
==================================*/
.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-main-fv {
  display: flex;
  overflow: hidden;
  max-height: 720px;
}
@media (width <= 992px) {
  .p-main-fv {
    height: auto;
    flex-direction: column-reverse;
    overflow: unset;
  }
}

@media (width <= 992px) {
  .p-main-fv__right {
    position: relative;
    z-index: 0;
  }
}

.p-main-fv__left {
  flex: 0 0 min(530px, 27.6041666667vw);
  min-width: 400px;
  display: flex;
  padding: 20px 24px min(230px, 11.9791666667vw) 24px;
  align-items: flex-end;
  justify-content: center;
}
@media (width <= 992px) {
  .p-main-fv__left {
    max-width: 380px;
    padding: 12px;
    min-width: auto;
    flex: auto;
    width: 76.9230769231vw;
    margin-top: -100px;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
  }
}
.p-main-fv__left h2 {
  margin: 0;
  margin-left: auto;
  color: #555;
  leading-trim: both;
  text-edge: cap;
  font-size: min(40px, 2.0833333333vw);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 3.2px;
}
@media (width <= 992px) {
  .p-main-fv__left h2 {
    color: #252525;
    font-size: 24px;
    letter-spacing: 1.92px;
    margin-left: 0;
  }
}
@media (width <= 400px) {
  .p-main-fv__left h2 {
    font-size: 5.8974358974vw;
  }
}

.p-campaign__items {
  gap: clamp(16px, 16px + (48 - 16) * (100vw - 992px) / 148, 48px);
}
@media (width <= 992px) {
  .p-campaign__items {
    gap: 32px;
  }
}
@media (width <= 768px) {
  .p-campaign__items {
    gap: 24px;
  }
}

.p-campaign__item {
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 24px;
  background: #fff;
}
.p-campaign__item:hover {
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
}

.p-campaign__more {
  max-width: 330px;
  width: 100%;
}
.p-campaign__more .c-btn {
  gap: 8px;
  padding: 12px 20px;
}

.p-campaign__item-title {
  position: relative;
  padding-left: 16px;
  display: flex;
  align-items: center;
  height: 2.8em;
  margin: 0;
  margin-top: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.p-campaign__item-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 8px;
  background: #d0a67c;
}

.p-about {
  background: url(../img/img-bg1.jpg) no-repeat center center/cover;
}
@media (width <= 768px) {
  .p-about .l-inner {
    padding: 0;
  }
}
@media (width <= 768px) {
  .p-about .l-section__headline {
    padding: 0 20px;
  }
}
@media (width <= 768px) {
  .p-about .p-about__block {
    padding: 0 20px;
  }
}

.p-about__img {
  position: relative;
  z-index: 0;
border-radius: 24px;
      overflow: hidden;
}
@media (width <= 768px) {
  .p-about__img {
    border-radius: 0px;
    margin-top: 28.7179487179vw;
    overflow: unset;
  }
}
.p-about__img .p-about__img-img {
  border-radius: 24px;
}
@media (width <= 768px) {
  .p-about__img .p-about__img-img {
    border-radius: 0;
    height: 92vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-about__img2 {
  position: absolute;
  z-index: 2;
  top: -30.2564102564vw;
  right: 0;
  border-radius: 24px 0px 0px 24px;
  overflow: hidden;
  width: 61.5384615385vw;
  box-shadow: 2px 2px 4px gray;
}

.p-about__img3 {
  position: absolute;
  z-index: 2;
  width: 55.3846153846vw;
  bottom: -17.4358974359vw;
  overflow: hidden;
  border-radius: 0px 24px 24px 0px;
  left: -30px;
  box-shadow: 2px 2px 4px gray;
}

.p-about__block {
  margin-top: 40px;
  gap: 24px;
}

.p-about__desc {
  flex: 0 0 67%;
  position: relative;
}
@media (width <= 768px) {
  .p-about__desc {
    flex: auto;
    width: 100%;
  }
}

.p-about__lead {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 1.4px;
}
@media (width <= 768px) {
  .p-about__lead {
    position: absolute;
    background: linear-gradient(180deg, #f8f2ed 0%, rgba(249, 245, 241, 0.9) 25%, rgba(255, 255, 255, 0) 100%);
    font-size: 20px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    right: -1.2820512821vw;
    top: -51.2820512821vw;
    line-height: 1.4;
    letter-spacing: 4px;
    padding: 28px 10px 28px 10px;
    z-index: 2;
  }
}
@media (width <= 768px) and (width <= 400px) {
  .p-about__lead {
    right: -5.1282051282vw;
    font-size: 5.1282051282vw;
    padding: 7.1794871795vw 2.5641025641vw 7.1794871795vw 2.5641025641vw;
  }
}
@media (width <= 768px) and (width <= 340px) {
  .p-about__lead {
    right: -6.4102564103vw;
  }
}

.p-about__text {
  margin-top: 24px;
}
@media (width <= 768px) {
  .p-about__text {
    margin-top: 14.8717948718vw;
  }
}

.p-about__more {
  margin-top: 56px;
  max-width: 280px;
}
@media (width <= 768px) {
  .p-about__more {
    max-width: 310px;
    margin: 53px auto 0 auto;
  }
}
.p-about__more .c-btn {
  height: 50px;
  justify-content: space-between;
  padding: 20px 16px 20px 48px;
}
@media (width <= 768px) {
  .p-about__more .c-btn {
    justify-content: center;
  }
}

.p-about__subimgs {
  flex: 1;
  display: flex;
  gap: 42px;
  flex-direction: column;
}
@media (width <= 768px) {
  .p-about__subimgs {
    display: none;
  }
}

.p-about__subimg{
  border-radius: 24px;
    overflow: hidden;
}

.p-plan__more {
  max-width: 540px;
}

.p-plan__items.p-plan__items--up {
  gap: clamp(24px, 24px + (48 - 24) * (100vw - 992px) / 148, 48px);
  row-gap: 98px;
}
@media (width <= 768px) {
  .p-plan__items.p-plan__items--up {
    gap: 20px;
    row-gap: 60px;
  }
}
.p-plan__items.p-plan__items--low {
  margin-top: 98px;
}
@media (width <= 768px) {
  .p-plan__items.p-plan__items--low {
    margin-top: 60px;
  }
}

.p-plan__item {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.p-plan__item:hover {
  opacity: 0.9;
}
.p-plan__item:hover img {
  transform: scale(1.05);
}

.p-plan__item-img {
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 1;
}
.p-plan__item-img img {
  transition: all 0.3s ease-in-out;
}

.p-plan__label {
  background: #f5e7d9;
  height: 48px;
  width: 98%;
  border-radius: 24px;
  position: absolute;
  transform: translate(-50%, -50%);
  bottom: -22%;
  left: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 0 8px;
}
@media (width <= 768px) {
  .p-plan__label {
    bottom: -60px;
    width: 95%;
  }
}
.p-plan__label span {
  color: #6b5846;
  text-align: center;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.75px;
}

.p-plan__items--low {
  gap: clamp(24px, 24px + (48 - 24) * (100vw - 992px) / 148, 48px);
}
@media (width <= 768px) {
  .p-plan__items--low {
    gap: 20px;
    row-gap: 60px;
  }
}
.p-plan__items--low .p-plan__label {
  width: 90%;
  bottom: -32%;
  height: 40px;
}
@media (width <= 768px) {
  .p-plan__items--low .p-plan__label {
    height: 48px;
    width: 95%;
    bottom: -60px;
  }
}
.p-plan__items--low .p-plan__label span {
  font-size: 13px;
}
@media (width <= 768px) {
  .p-plan__items--low .p-plan__label span {
    font-size: 15px;
  }
}

.p-plan__banner {
  border-radius: 24px;
  box-shadow: 0px 0px 16px 0px rgba(204, 185, 167, 0.25);
  max-width: 1100px;
  margin: 98px 0 0 0;
  position: relative;
  display: block;
}
.p-plan__banner picture {
  border-radius: 24px;
  max-width: 1100px;
  display: block;
  overflow: hidden;
}
.p-plan__banner img {
  transition: all 0.3s ease-in-out;
}
.p-plan__banner:hover {
  opacity: 1;
}
.p-plan__banner:hover img {
  transform: scale(1.05);
}
@media (width <= 768px) {
  .p-plan__banner {
    margin: 72px 0 0 0;
  }
}

.p-plan__banner-text {
  position: absolute;
  background: #f5e7d9;
  border-radius: 24px;
  transform: translate(-50%, -50%);
  bottom: -40%;
  left: 50%;
  max-width: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 48px;
}
@media (width <= 768px) {
  .p-plan__banner-text {
    bottom: -60px;
  }
}
.p-plan__banner-text span {
  color: #6b5846;
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 1.1px;
}

.p-plan__more {
  margin: 120px auto 0 auto;
}
@media (width <= 768px) {
  .p-plan__more {
    margin: 88px auto 0 auto;
  }
}
.p-plan__more .c-btn {
  font-size: 21px;
  height: 80px;
  position: relative;
}
@media (width <= 768px) {
  .p-plan__more .c-btn {
    height: clamp(50px, 50px + (80 - 50) * (100vw - 350px) / 418, 80px);
    padding: 20px clamp(80px, 80px + (60 - 80) * (100vw - 300px) / 90, 60px) 20px clamp(12px, 12px + (20 - 12) * (100vw - 300px) / 90, 20px);
    font-size: clamp(16px, 16px + (21 - 16) * (100vw - 375px) / 393, 21px);
  }
}
.p-plan__more .c-btn .c-btn__arrow {
  position: absolute;
  right: 30px;
}
@media (width <= 768px) {
  .p-plan__more .c-btn .c-btn__arrow {
    width: clamp(50px, 50px + (62 - 50) * (100vw - 375px) / 393, 62px);
  }
}

.p-access {
  background: #f9f6f3;
}

.p-access__content {
  gap: 80px;
}
@media (width <= 768px) {
  .p-access__content {
    gap: 24px;
  }
}

.p-access__left {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (width <= 768px) {
  .p-access__left {
    flex: auto;
    width: 100%;
    flex-direction: column-reverse;
    gap: 16px;
  }
}

.p-access__img {
  border-radius: 24px;
  overflow: hidden;
}
@media (width <= 768px) {
  .p-access__img {
    display: none;
  }
}

.p-access__map iframe {
  border-radius: 24px;
}

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

.p-access__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}
@media (width <= 768px) {
  .p-access__list {
    margin-top: 0px;
    gap: 8px;
  }
}
.p-access__list dt,
.p-access__list dd {
  line-height: 1.8;
  margin: 0;
  padding: 0;
}
@media (width <= 768px) {
  .p-access__list dt,
  .p-access__list dd {
    flex: auto;
    width: 100%;
  }
}
.p-access__list dt {
  flex: 0 0 100px;
  color: #7c6956;
  letter-spacing: 0.75px;
  font-weight: 500;
}
@media (width <= 768px) {
  .p-access__list dt {
    flex: auto;
    width: 100%;
  }
}
.p-access__list .p-access__item {
  display: flex;
  gap: 8px;
}
@media (width <= 768px) {
  .p-access__list .p-access__item {
    flex-wrap: wrap;
    gap: 0px;
  }
}

.p-access__more {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 280px;
  margin: 32px auto 0 0;
}
@media (width <= 768px) {
  .p-access__more {
    max-width: 300px;
  }
}
@media (width <= 400px) {
  .p-access__more {
    margin: 32px auto 0 auto;
  }
}
.p-access__more .c-btn {
  height: 50px;
  padding: 8px 60px 8px 20px;
  position: relative;
}
.p-access__more .c-btn .c-btn__arrow {
  position: absolute;
  right: 20px;
}

.p-news {
  padding-bottom: 200px;
}
@media (width <= 768px) {
  .p-news {
    padding-bottom: 120px;
  }
}

@media (width <= 768px) {
  .p-news__inner {
    flex-direction: column;
  }
}

.p-news__headline {
  flex: 0 0 20%;
  margin-top: 24px;
}
@media (width <= 768px) {
  .p-news__headline {
    margin-top: 0;
    flex: auto;
    width: 100%;
  }
}

.p-news__content {
  flex: 1;
  margin-top: 0;
}
@media (width <= 768px) {
  .p-news__content {
    width: 100%;
  }
}

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

.p-news__item {
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media (width <= 768px) {
  .p-news__item {
    flex-wrap: wrap;
    gap: 0;
    padding: 10px 0;
  }
}

.p-news__time {
  flex: 0 0 12%;
  color: #d0a67c;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.7px;
}
@media (width <= 768px) {
  .p-news__time {
    flex: auto;
    width: 100%;
  }
}

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

.p-news__more {
  max-width: 140px;
  margin: 20px 0 0 auto;
}
.p-news__more .c-btn {
  font-size: 14px;
  padding: 3px 6px 3px 10px;
  gap: 16px;
}
.p-news__more .c-btn .c-btn__arrow {
  width: 48px;
  height: 16px;
}

.p-pagefv {
  flex-wrap: nowrap;
  gap: 0;
  height: 240px;
}
@media (width <= 768px) {
  .p-pagefv {
    height: 160px;
  }
}

.p-pagefv__left {
  flex: 0 0 62.5%;
  background: #bfaf9f;
  height: 100%;
  padding-left: clamp(20px, 20px + (260 - 20) * (100vw - 1140px) / 780, 260px);
  display: flex;
  align-items: center;
  padding-right: 20px;
}
@media (width <= 1400px) {
  .p-pagefv__left {
    flex: 0 0 55%;
  }
}

@media (width <= 768px) {
  .p-pagefv__left {
    flex: 0 0 65%;
  }
}

.p-pagefv__right {
  flex: 1;
  overflow: hidden;
  height: 100%;
  background: #bfaf9f;
}
.p-pagefv__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-studio-intro {
  overflow: hidden;
}

.p-studio-intro__img {
  border-radius: 24px;
  overflow: hidden;
}

.p-studio-intro__body {
  position: relative;
  margin-top: 32px;
}

.p-studio-intro__bg1,
.p-studio-intro__bg2 {
  position: absolute;
border-radius: 24px;
    overflow: hidden;
  width: 20.8333333333vw;
}
@media (width <= 992px) {
  .p-studio-intro__bg1,
  .p-studio-intro__bg2 {
    display: none;
  }
}

.p-studio-intro__bg1 {
  right: 0;
  top: 0;
}
@media (width <= 1880px) {
  .p-studio-intro__bg1 {
    top: 20px;
  }
}
@media (width <= 1280px) {
  .p-studio-intro__bg1 {
    top: 96px;
  }
}

.p-studio-intro__bg2 {
  left: 0;
  bottom: 0;
}
@media (width <= 1280px) {
  .p-studio-intro__bg2 {
    bottom: 40px;
  }
}

.p-studio-intro__bottom-img{
    flex: 0 0 50%;
    border-radius: 24px;
    overflow: hidden;
aspect-ratio: 16 / 9;
}

.p-studio-intro__lead {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 1.4px;
}
@media (width <= 768px) {
  .p-studio-intro__lead {
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: .8px;
}
}

.p-studio-intro__text {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

@media (width <= 992px) {
  .p-studio-intro__bottom {
    display: flex;
    gap: 16px;
    margin-top: 40px;
  }
}

.p-photographer__content {
  max-width: 800px;
  margin: 60px auto 0 auto;
  justify-content: space-between;
}
@media (width <= 768px) {
  .p-photographer__content {
    gap: 40px;
    justify-content: center;
    margin: 32px auto 0 auto;
  }
}

.p-photographer__item {
  display: flex;
  flex-direction: column;
  max-width: 340px;
  justify-content: center;
  align-items: center;
}

.p-photographer__img {
  max-width: 220px;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  margin: 0 auto;
}

.p-photographer__name {
  margin-top: 12px;
  color: #6b5846;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
@media (width <= 768px) {
  .p-photographer__name {
    margin-top: 8px;
  }
}

.p-photographer__text {
  margin-top: 16px;
  line-height: 1.8;
}
@media (width <= 768px) {
  .p-photographer__text {
    margin-top: 8px;
  }
}

.p-studio-info__items {
  margin-top: 40px;
  gap: 40px;
}
@media (width <= 768px) {
  .p-studio-info__items {
    margin-top: 24px;
    gap: 24px;
  }
}

.p-studio-info__item {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 24px;
  transition: all 0.3s ease-in-out;
}
.p-studio-info__item img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}


.p-studio-info {
  background: url(../img/img-studio-info-bg.jpg) no-repeat center center/cover;
}

@media (width <= 768px) {
  .p-studio-info__text {
    text-align: left;
  }
}

.p-reservation__more {
  max-width: 280px;
}
.p-reservation__more .c-btn {
  height: 50px;
  padding: 0 20px 0 40px;
}
@media (width <= 768px) {
.p-reservation-form__head{
  font-size:14px;
  }
}
  

.p-reservation-form:has(.mw_wp_form_complete) .p-reservation-form__head {
    display: none !important;
  }

.p-studio__modal .c-modal__content {
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 24px;
}
.p-studio__modal img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 24px;
}

.p-contact-parts {
  background: #f8f8f8;
}

.p-contact-parts__inner {
  gap: 16px;
}
@media (width <= 768px) {
  .p-contact-parts__inner {
    gap: 24px;
  }
}

.p-contact-parts__left {
  flex: 0 0 48%;
}
@media (width <= 768px) {
  .p-contact-parts__left {
    flex: 0 0 100%;
  }
}

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

.p-contact-parts__btns {
  gap: 16px;
  display: flex;
  flex-direction: column;
}
@media (width <= 768px) {
  .p-contact-parts__btns {
    margin-top: 0;
  }
}
.p-contact-parts__btns .c-btn {
  position: relative;
  height: 86px;
  font-size: 21px;
  font-weight: 900;
}
@media (width <= 768px) {
  .p-contact-parts__btns .c-btn {
    max-width: 480px;
    height: 60px;
    font-size: 18px;
  }
}
.p-contact-parts__btns .c-btn .c-btn__arrow {
  position: absolute;
  right: 30px;
}
@media (width <= 768px) {
  .p-contact-parts__btns .c-btn .c-btn__arrow {
    position: relative;
    right: auto;
  }
}

.p-faq__title {
  margin-bottom: 24px;
}

.p-faq__block {
  margin-bottom: 130px;
}
@media (width <= 768px) {
  .p-faq__block {
    margin-bottom: 80px;
  }
}

.p-costume__result-item {
  overflow: hidden;
  cursor: pointer;
}
.p-costume__result-item img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}
.p-costume__result-item:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}

.p-costume__modal {
  width: 100%;
  height: 100%;
  max-height: 100%;
  display: flex;
  gap: 32px;
}
@media (width <= 768px) {
  .p-costume__modal {
    flex-direction: column;
    gap: 16px;
  }
}

.p-costume__modal-left {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (width <= 768px) {
  .p-costume__modal-left {
    flex: 0 0 100%;
  }
}

.p-costume__modal-low {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.p-costume__modal-low .p-costume__modal-img {
  width: calc(33.3333333333% - 10px);
  aspect-ratio: 79.88/105;
  flex-shrink: 0;
  overflow: hidden;
}
.p-costume__modal-low .p-costume__modal-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-costume__modal-title {
  text-align: left;
}

.p-costume__modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.p-costume__modal-desc {
  margin-top: 40px;
}

.p-costume__modal-left .c-slick {
  width: 100%;
  max-width: clamp(260px, 260px + (400 - 260) * (100vw - 992px) / 488, 400px);
}
.p-costume__modal-left .c-slick .slick-list {
  overflow: hidden;
  width: 100%;
}
.p-costume__modal-left .c-slick .slick-track {
  display: flex;
  align-items: center;
}
.p-costume__modal-left .c-slick .slick-slide {
  outline: none;
}
.p-costume__modal-left .c-slick .slick-slide > div {
  height: 100%;
}
.p-costume__modal-left .c-slick .slick-prev {
  left: 4px;
}
.p-costume__modal-left .c-slick .slick-next {
  right: 4px;
}
.p-costume__modal-left .c-slick .slick-next,
.p-costume__modal-left .c-slick .slick-prev {
  z-index: 1;
}

.p-costume__modal .c-slick .p-costume__modal-img {
  position: relative;
  aspect-ratio: 1;
  max-width: clamp(260px, 260px + (400 - 260) * (100vw - 992px) / 488, 400px);
  overflow: hidden;
}
.p-costume__modal .c-slick .p-costume__modal-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.p-product__items {
  gap: 20px;
  row-gap: 64px;
}

.p-page--plan .p-product__item-list{
  margin-bottom:0px;
}

@media (width <= 768px) {
.p-page--plan .p-product__item-list{
  display:none;
  }
.p-page--plan .p-product__item-list.is-open {
    display: block;
  }
}

.p-product__item-list dd,
.p-product__item-list dt {
  margin: 0;
  padding: 0;
}

.p-product__item-row {
  display: flex;
  border-bottom: 1px solid #e9e0d7;
  padding: 16px 0px 16px 8px;
  justify-content: space-between;
}
@media (width <= 768px) {
  .p-product__item-row {
    flex-direction: column;
  }
}
.p-product__item-row.js-modal-open2 {
  cursor: pointer;
}
.p-product__item-row.js-modal-open2 dt {
  text-decoration: underline;
  position: relative;
}
.p-product__item-row.js-modal-open2 dt::after {
  content: "";
  background: url(../img/icon-link.svg) no-repeat center center/cover;
  width: 16px;
  height: 16px;
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
}
@media (width <= 768px) {
  .p-product__item-row.js-modal-open2 dt::after {
    right: auto;
  }
}
.p-product__item-row dt {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}
@media (width <= 768px) {
  .p-product__item-row dt {
    flex: auto;
    justify-content: space-between;
  }
}
.p-product__item-row dd {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}
@media (width <= 992px) {
  .p-product__item-row dd {
    justify-content: flex-end;
  }
}
@media (width <= 768px) {
  .p-product__item-row dd {
    flex: auto;
    justify-content: space-between;
    margin-top: 8px;
  }
}
.p-product__item-row dd span {
  display: block;
  font-size: 12px;
  text-align: right;
  margin-left: auto;
}

.p-flow__content {
  margin-top: 60px;
}
@media (width <= 768px) {
  .p-flow__content .c-text {
    font-size: 14px;
  }
}
@media (width <= 768px) {
  .p-flow__content .c-box {
    font-size: 14px;
  }
}

.p-flow__block {
  padding-left: 160px;
  position: relative;
  margin-top: 80px;
}
@media (width <= 992px) {
  .p-flow__block {
    padding-left: 120px;
  }
}
@media (width <= 768px) {
  .p-flow__block {
    margin-top: 40px;
    padding-left: 50px;
  }
}
.p-flow__block:first-child {
  margin-top: 0;
}
@media (width <= 768px) {
  .p-flow__block:first-child {
    margin-top: 0;
  }
}
.p-flow__block:last-child::before {
  display: none;
}
.p-flow__block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  width: 1px;
  height: 140%;
  background: #e9e0d7;
}
@media (width <= 1200px) {
  .p-flow__block::before {
    left: 60px;
  }
}
@media (width <= 992px) {
  .p-flow__block::before {
    left: 50px;
  }
}
@media (width <= 768px) {
  .p-flow__block::before {
    left: 20px;
  }
}

.p-flow__block-flex {
  gap: 24px;
}
@media (width <= 768px) {
  .p-flow__block-flex {
    flex-direction: column-reverse;
    gap:0px;
  }
}

.p-flow .c-radius{
    border-radius: 24px;
    overflow: hidden;
}

.p-flow__block-left {
  flex: 0 0 60%;
}
@media (width <= 768px) {
  .p-flow__block-left {
    flex: 1;
  }
}

.p-flow__block-img {
  flex: 1;
}

.p-flow__block-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 1px;
  text-align: left;
}
@media (width <= 768px) {
  .p-flow__block-title {
    margin-bottom: 16px;
  }
}

.p-flow__block-label {
  margin-top: 60px;
}
.p-flow__block-label--fst {
  margin-top: 0;
}
@media (width <= 768px) {
  .p-flow__block-label {
    padding: 16px;
    font-size: 16px;
  }
}

.p-flow__num {
  position: absolute;
  top: 0;
  left: -40px;
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 100vw;
  background: #f5e7d9;
  align-items: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (width <= 1200px) {
  .p-flow__num {
    left: -20px;
  }
}
@media (width <= 992px) {
  .p-flow__num {
    width: 100px;
    height: 100px;
    left: 0;
  }
}
@media (width <= 768px) {
  .p-flow__num {
    width: 60px;
    height: 60px;
    left: -10px;
  }
}

.p-flow__num-num {
  color: #7c6956;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0;
  line-height: 1;
}
@media (width <= 992px) {
  .p-flow__num-num {
    font-size: 30px;
  }
}
@media (width <= 768px) {
  .p-flow__num-num {
    font-size: 20px;
  }
}

.p-flow__num-text {
  color: #7c6956;
  font-family: "Vollkorn", serif;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  line-height: 1;
}
@media (width <= 992px) {
  .p-flow__num-text {
    font-size: 16px;
  }
}
@media (width <= 768px) {
  .p-flow__num-text {
    font-size: 14px;
  }
}

.p-flow__block-desc {
  padding-top: 60px;
}

@media (width <= 768px) {
.p-blog .p-pagefv__right img{
  object-position: 80% 50%;
  }
}
  

.p-blog__container {
  display: flex;
  gap: 80px;
  padding-bottom: 80px;
}
@media (width <= 992px) {
  .p-blog__container {
    flex-direction: column;
  }
}

.p-blog__main {
  width: 760px;
  padding: 0 20px;
}
@media (width <= 768px) {
  .p-blog__main {
    max-width: 100%;
    padding: 0;
  }
}

.p-blog__main--archive {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-blog__article {
  padding-bottom: 80px;
  border-bottom: 1px solid #e9e0d7;
}

.p-blog__thumbnail {
  margin-bottom: 24px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.p-blog__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width <= 768px) {
  .p-blog__thumbnail {
    margin-bottom: 16px;
    aspect-ratio: 4/3;
  }
}

.p-blog__tags {
  margin-left: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 8px;
}

.p-blog__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.1px;
}

.p-blog__date {
  color: #bfaf9f;
  font-size: 13px;
  font-weight: 500;
  text-align: right;
}
.p-blog__date img {
  vertical-align: -2px;
  width: 14px;
  height: 14px;
  margin-right: 4px;
}

.p-blog__side {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 280px;
  width: 100%;
}
@media (width <= 992px) {
.p-blog__side {
  max-width: 480px;
}
}

.p-blog__side-title {
  color: #7c6956;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  display: flex;
  min-height: 36px;
  padding: 10px 0px 10px 8px;
  gap: 10px;
  align-self: stretch;
  border-top: 2px solid #e9e0d7;
  border-bottom: 2px solid #e9e0d7;
}

.p-blog__side-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-blog__side-list li {
  position: relative;
  padding: 16px 0;
  border-bottom: 1px solid #e9e0d7;
  font-size: 15px;
  font-weight: 500;
  text-indent: -1.25em;
    padding-left: 1.25em;
}
.p-blog__side-list li::before {
  content: "・";
  color: #c8a37f;
  margin-right: 4px;
}

.p-blog__body p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.p-blog__body strong {
  color: #a14300;
  font-size: 16px;
  font-weight: 900;
}

.p-blog__body h2 {
  color: #7c6956;
  leading-trim: both;
  text-edge: cap;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.8px;
  position: relative;
  padding: 0.3em 0 0.3em 1.4em;
  margin: 2.5em 0 1em;
  border-bottom: 1px solid #c8a37f;
}
.p-blog__body h2::before {
  content: "";
  position: absolute;
  width: 0.5em;
  height: 100%;
  background: #c8a37f;
  top: 0;
  left: 0;
}

.p-blog__body h3 {
  border-radius: 6px;
  background: #faf6f3;
  color: #7c6956;
  leading-trim: both;
  text-edge: cap;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.7px;
  padding: 24px;
  margin: 2.5em 0 1em;
}

.p-blog__body h4 {
  color: #8e4801;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.6px;
  position: relative;
  padding-left: 3.5em;
  margin: 2.5em 0 1em;
}
.p-blog__body h4::before {
  content: "";
  position: absolute;
  width: 3em;
  height: 1px;
  background: #8e4801;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}

.p-blog__body ul {
  padding: 0;
  list-style: none;
}
.p-blog__body ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}
.p-blog__body ul li::before {
  content: "";
  position: absolute;
  background: url(../img/icon-chk.svg) no-repeat center center/cover;
  width: 20px;
  height: 20px;
  top: 0.2em;
  left: 0;
}

.p-blog__body ol {
  padding: 0;
  counter-reset: item;
}
.p-blog__body ol li {
  list-style: none;
  padding-left: 24px;
  position: relative;
  counter-increment: item;
  margin-bottom: 8px;
}
.p-blog__body ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0.2em;
  font-size: 12px;
  color: #fff;
  background: #c8a37f;
  font-weight: 400;
  border-radius: 50%;
  aspect-ratio: 1;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.p-blog__body .wp-block-quote-is-layout-flow {
  color: #7c6956;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid #e9e0d7;
  background: #fffaf6;
  padding: 16px 20px;
  margin: 1.5em 0;
}

.p-blog__body table {
  margin: 1.5em 0;
}

.p-blog__body .wp-block-table th {
  border: 1px solid #cdc2b9;
  background: #e9e0d7;
}

.p-blog__body .wp-block-table td,
.p-blog__body .wp-block-table th {
  border: 1px solid #cdc2b9;
}

.p-blog__body .wp-block-table thead {
  border: 1px solid #cdc2b9;
}

.p-blog__body .wp-element-caption {
  color: #562e00;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.p-blog__body .wp-element-button {
  background: #c8a37f;
  padding: 15px 24px;
  min-width: 300px;
}
@media (width <= 768px) {
  .p-blog__body .wp-element-button {
    min-width: none;
  }
}

.p-blog__body .wp-block-button {
  margin: 1em 0;
}

.p-blog__body .is-style-outline .wp-element-button {
  background: #fff;
  color: #c8a37f;
}

.p-blog__link {
  max-width: 320px;
  margin: 16px auto 0 auto;
}
.p-blog__link .c-btn__arrow {
  margin-right: -16px;
}
@media (width <= 768px) {
  .p-blog__link {
    max-width: 300px;
  }
  .p-blog__link .c-btn {
    height: 50px;
  }
  .p-blog__link .c-btn__arrow {
    margin-right: -8px;
  }
}

.p-tokusho table {
  margin-top: 40px;
  width: 80%;
  max-width: 900px;
  margin: 0px auto;
  border-collapse: collapse;
  border-spacing: 0px;
}
.p-tokusho table a {
  text-decoration: underline;
}
@media (width <= 768px) {
  .p-tokusho table {
    max-width: 100%;
    width: 100%;
  }
}
.p-tokusho tbody {
  background-color: rgba(0, 0, 0, 0);
  margin: 0px;
  border-width: 0px;
  border-style: initial;
  border-color: initial;
  -o-border-image: initial;
     border-image: initial;
  outline: 0px;
  display: table-row-group;
  vertical-align: middle;
  unicode-bidi: isolate;
}
@media (width <= 768px) {
  .p-tokusho tbody {
    width: 100%;
  }
}
.p-tokusho tr {
  text-align: left;
  vertical-align: middle;
  border-top: 1px solid rgb(204, 204, 204);
}
@media (width <= 768px) {
  .p-tokusho tr {
    display: flex;
    flex-direction: column;
    border-top: none;
    border-bottom: 1px solid rgb(204, 204, 204);
  }
}
.p-tokusho th {
  width: 20%;
  padding: 0px 0px 0px 10px;
}
@media (width <= 768px) {
  .p-tokusho th {
    width: 100%;
    padding: 10px 0px 10px 10px;
    font-weight: 700;
  }
}
.p-tokusho td {
  width: 80%;
  padding: 25px 0px 25px 10px;
  overflow-wrap: anywhere;
}
@media (width <= 768px) {
  .p-tokusho td {
    width: 100%;
    padding: 10px 0px 10px 10px;
    border-bottom: 1px solid rgb(204, 204, 204);
  }
}

.p-page--plan .p-pagefv {
  position: relative;
}
@media (width <= 992px) {
  .p-page--plan .p-pagefv {
    flex-direction:column;
    height:auto;
  }
}
.p-page--plan .p-pagefv__left {
flex: 0 0 100%;
  padding-right:39%
}


@media (width <= 992px) {
  .p-page--plan .p-pagefv__left {
flex: auto;
        padding-right: 0;
        width: 100%;
    padding:35px 16px 24px 16px;
  }
}
.p-page--plan .p-pagefv__right {
  position: absolute;
  width: min(720px, 37.5vw);
  max-width: 720px;
  min-width: 400px;
  max-height: 340px;
  right: 0;
  top: 0;
  height: auto;
  flex: auto;
  overflow: hidden;
  border-radius: 0 0 0 24px;
  display: flex;
  align-items: center;
}
.p-page--plan .p-pagefv__right img {
  border-radius: 0 0 0 24px;
}
@media (width <= 992px) {
  .p-page--plan .p-pagefv__right img {
    border-radius: 0%;
  }
}
@media (width <= 992px) {
  .p-page--plan .p-pagefv__right {
    position: relative;
    width: 100%;
    flex:0 0 100%;
    min-width: auto;
    border-radius: 0;
    flex: auto;
    max-height: none;
    max-width: none;
    /*
    height:300px;
    */
    height: auto;
    aspect-ratio: 16/9;
  }
}
@media (width <= 768px) {
  .p-page--plan .p-pagefv__right {
    /.*
    height: clamp(180px, 180px + (300 - 180) * (100vw - 375px) / 393, 300px);
    */
    height: auto;
    aspect-ratio: 16/9;
  }
}
.p-page--plan .c-pagetitle {
  margin: 0;
}
@media (width <= 768px) {
 .p-page--plan .c-pagetitle {
   font-size: clamp(22px, 22px + (24 - 22) * (100vw - 365px) / 403, 24px);
  }
}
.p-page--plan .p-page__desc {
  width: 100%;
  max-width:800px;
  font-weight: 500;
  line-height: 1.8;
}


@media (width <= 992px) {
  .p-page--plan .p-page__desc {
    max-width: 100%;
    width: 100%;
    min-width: auto;
  }
}

@media (width <= 768px) {
  .p-page--plan .p-page__desc p{
    font-size:14px;
  }
}

.p-pagefv__left-content {
  display: flex;
  flex-direction: column;
}
.p-pagefv__left-content p {
  color: #fff;
}
@media (width <= 992px) {
 .p-pagefv__left-content p {
   margin:0;
   font-size:12px;
  }
}


.p-page__slider {
  background: #f9f6f3;
  padding: 32px 0 40px 0;
  margin-top: 40px;
}

.swiper-container {
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}
.swiper-container .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  border: 1px solid #c8a37f;
}
.swiper-container .swiper-pagination-bullet-active {
  background: #c8a37f;
}
.swiper-container .swiper-button-prev,
.swiper-container .swiper-button-next {
  top: 45%;
}

.swiper-slide img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-page__slider--top .swiper-slide img{
  object-fit: contain;
  background:#d4cdcd; 
  aspect-ratio: 16 / 9;
}

@media (width <= 768px) {
.p-page__slider--top .swiper-slide img{
aspect-ratio: 16 / 9;
}
}


.p-page__slider-more {
  max-width: 280px;
  margin: 40px auto 0 auto;
}
.p-page__slider-more .c-btn {
  height: 50px;
  letter-spacing: 0.8px;
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-button-next {
  color: #c8a37f;
}

.p-page__slider .swiper-pagination-bullet-active {
  background: #c8a37f;
}

.p-campaign__item-title {
  font-size: 16px;
}
@media (width <= 768px) {
  .p-campaign__item-title {
    font-size: 14px;
    height: auto;
  }
}

.p-page--plan .p-product__item-row {
  justify-content: space-between;
}
.p-page--plan .p-product__item-row.js-modal-open2 {
  cursor: pointer;
}
.p-page--plan .p-product__item-row.js-modal-open2 dt {
  text-decoration: underline;
  position: relative;
}
@media (width <= 768px) {
  .p-page--plan .p-product__item-row.js-modal-open2 dt {
  display:flex;
justify-content: space-between;
      gap:8px;
    width:100%;
}
}
.p-page--plan .p-product__item-row.js-modal-open2 dt::after {
  content: "";
  background: url(../img/icon-link.svg) no-repeat center center/cover;
  width: 16px;
  height: 16px;
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
}
@media (width <= 768px) {
  .p-page--plan .p-product__item-row.js-modal-open2 dt::after {
    right: auto;
    margin-top:.8em;
    position:relative;
  }
}
.p-page--plan .p-product__item-row dd {
  flex-basis: auto;
}
@media (width <= 768px) {
  .p-page--plan .p-product__item-row {
    align-items: flex-start;
  }
}
.p-page--plan .p-product__item-row p:first-child {
  flex: 0 0 80%;
}
@media (width <= 768px) {
  .p-page--plan .p-product__item-row p:first-child {
    flex: auto;
    width: 100%;
  }
}
.p-page--plan .p-product__item-row p:last-child {
  flex-basis: auto;
}
@media (width <= 768px) {
  .p-page--plan .p-product__item-row p {
    font-size: 14px;
  }
}
.p-page--plan .p-plan__items {
  gap: 40px;
  padding: 24px 0;
}

.p-page__plan-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 80px 0;
}
@media (width <= 768px) {
.p-page__plan-list {
  gap: 20px;
}
}

.p-page__plan-list:first-child {
  padding-top: 0;
}
.p-page__plan-list .p-product__items {
  gap: 40px;
  row-gap: 40px;
  grid-template-columns: repeat(2, 1fr);
}
@media (width <= 992px) {
  .p-page__plan-list .p-product__items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-page__plan-list .wp-block-heading.c-entitle {
  line-height: 1;
}
.p-page__plan-list .c-title--2 {
  line-height: 1;
}

.p-page__pbox {
  border-radius: 24px;
  border: 2px solid #af9b87;
  background: #fff;
  overflow: hidden;
  display: flex;
}
.p-page__pbox p {
  margin: 0;
}
@media (width <= 768px) {
  .p-page__pbox {
    flex-direction: column;
  }
}

.p-page__pbox-left {
  flex: 0 0 20%;
  padding: 24px;
  color: #fff;
  background: #af9b87;
}
@media (width <= 768px) {
  .p-page__pbox-left {
    flex: 0 0 100%;
    padding: 16px;
  }
}

.p-page__pbox-title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.3;
}
@media (width <= 768px) {
  .p-page__pbox-title {
    font-size: 20px;
  }
}
.p-page__pbox-title span {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}
@media (width <= 768px) {
  .p-page__pbox-title span {
    font-size: 16px;
  }
}

.p-page__pbox-price {
  margin-top: 32px;
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.5;
}
@media (width <= 768px) {
  .p-page__pbox-price {
    font-size: 24px;
  }
}
.p-page__pbox-price span {
  font-size: 20px;
}
@media (width <= 768px) {
  .p-page__pbox-price span {
    font-size: 16px;
  }
}

.p-page__pbox-tax {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
}
@media (width <= 768px) {
  .p-page__pbox-tax {
    font-size: 12px;
  }
}

.p-page__pbox-right {
  flex: 1;
  display: flex;
  padding: 20px;
}
@media (width <= 768px) {
  .p-page__pbox-right {
    flex: 0 0 100%;
    padding: 16px;
  }
}
@media (width <= 768px) {
  .p-page__pbox-right {
    flex-direction: column;
    gap: 8px;
  }
}

.p-page__pbox-sub {
  flex: 0 0 30%;
  padding-left: 20px;
}
@media (width <= 768px) {
  .p-page__pbox-sub {
    flex: 0 0 100%;
    padding-left: 0;
  }
}

.p-page__pbox-main {
  flex: 1;
  border-right: 1px solid #af9b87;
}
@media (width <= 768px) {
  .p-page__pbox-main {
    border-right: none;
  }
}

.p-page__pbox-desc {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.p-page__pbox-main ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.p-page__pbox-main ul p {
  margin-top: 12px;
  color: #433221;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}
@media (width <= 768px) {
  .p-page__pbox-main ul p {
    font-size: 12px;
    margin-top: 8px;
  }
}
.p-page__pbox-main li {
  width: 100px;
}
@media (width <= 768px) {
  .p-page__pbox-main li {
    width: 80px;
  }
}

.p-page__pbox-icon {
  width: 100px;
  height: 100px;
  aspect-ratio: 1;
}
@media (width <= 768px) {
  .p-page__pbox-icon {
    width: 80px;
    height: 80px;
  }
}

.p-page__pbox-subtitle {
  color: #433221;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.p-page__pbox-sub ul {
  margin: 0;
  margin-top: 8px;
  padding: 0;
  list-style: none;
}
.p-page__pbox-sub li {
  position: relative;
  color: #433221;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 4px;
}
@media (width <= 768px) {
  .p-page__pbox-sub li {
    font-size: 14px;
    line-height: 1.4;
  }
}
.p-page__pbox-sub li::before {
  content: "・";
}

.p-page__pbox-label {
  display: inline-flex;
  padding: 6px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #7c6956;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 8px;
}

.p-page__pbox-note {
  color: #433221;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 4px;
}

.p-page__other ul {
  margin: 32px 0;
  padding: 0;
  list-style: none;
}
@media (width <= 768px) {
  .p-page__other ul {
    margin: 24px 0;
  }
}
.p-page__other li {
  position: relative;
  margin-bottom: 4px;
}
.p-page__other li::before {
  content: "・";
}
.p-page__other p {
  font-weight: 500;
}
.p-page__other strong {
  color: #a14300;
  font-weight: 900;
}

.p-page__other-flex {
  margin-top: 32px;
}
@media (width <= 768px) {
  .p-page__other-flex {
    margin-top: 24px;
    flex-direction: column-reverse;
  }
}

.p-page__other-dl {
  display: flex;
  margin-top: 32px;
  flex-direction: column;
}
@media (width <= 768px) {
  .p-page__other-dl {
    margin-top: 24px;
  }
}
.p-page__other-dl dt,
.p-page__other-dl dd {
  margin: 0;
}
.p-page__other-dl dt {
  flex-basis: 0 0 20%;
  color: #a14300;
  font-weight: 900;
}
.p-page__other-dl dd {
  flex: 1;
  font-weight: 500;
}

.p-page__other-quote {
  color: #7c6956;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid #e9e0d7;
  background: #fffaf6;
  max-width: 500px;
  padding: 16px 20px;
  margin: 1.5em 0;
}

.p-page__costume {
  padding: 40px 0 80px 0;
}

.p-page__costume-list .swiper-container{
  padding-bottom:96px;
}
@media (width <= 768px) {
.p-page__costume-list .swiper-container{
  padding-bottom:116px;
}
}

.p-page__costume-list .swiper-container .swiper-button-prev, .p-page__costume-list .swiper-container .swiper-button-next{
  top:auto;
  bottom:0;
}

/*
.p-page__costume .swiper-slide {
  aspect-ratio: 3/4;
}
*/

.p-page__slider--top .swiper-slide {
  overflow: hidden;
  height: auto;
}

.p-background .slick-next {
  right: -40px;
  background: url(../img/icon-slick-right.svg) no-repeat center center/cover;
}
@media (width <= 768px) {
  .p-background .slick-next {
    right: -23px;
  }
}
.p-background .slick-next::before {
  content: "";
}
.p-background .slick-next:focus, .p-background .slick-next:hover {
  background: url(../img/icon-slick-right.svg) no-repeat center center/cover;
}
.p-background .slick-prev {
  left: -40px;
  background: url(../img/icon-slick-left.svg) no-repeat center center/cover;
}
@media (width <= 768px) {
  .p-background .slick-prev {
    left: -23px;
  }
}
.p-background .slick-prev::before {
  content: "";
}
.p-background .slick-prev:focus, .p-background .slick-prev:hover {
  background: url(../img/icon-slick-left.svg) no-repeat center center/cover;
}
.p-background .slick-next,
.p-background .slick-prev {
  z-index: 10;
  width: 50px;
  height: 50px;
  top: 50%;
}
@media (width <= 768px) {
  .p-background .slick-next,
  .p-background .slick-prev {
    width: 28px;
    height: 28px;
  }
}
.p-background .p-background__slick {
  height: 100%;
  margin: 0 40px;
}
@media (width <= 768px) {
  .p-background .p-background__slick {
    margin: 0 25px;
  }
}
.p-background .c-mocal__close {
  right: 0px;
}

.p-background .c-modal .c-slick .p-costume__modal-img {
  height: 100%;
  aspect-ratio: 16/9;
  opacity: hidden;
}
@media (width <= 768px) {
  .p-background .c-modal .c-slick .p-costume__modal-img {
    height: 320px;
  }
}
.p-background .c-modal .c-slick .p-costume__modal-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-reservations .p-reservations__bottom {
  margin-top: 48px;
}
.p-reservations .p-reservations__more {
  max-width: 320px;
  margin: 32px 0 0 0;
}

.p-contact .p-contact__headline {
  max-width: 880px;
  margin: 0 auto;
}

.p-costume__result-item {
  aspect-ratio: 1 / 1;
}

.p-gallery__result-body:not(:has(.p-costume__result-item)) {
  grid-template-columns: none; 
}

.p-costume__result-body:not(:has(.p-costume__result-item)) {
  grid-template-columns: none;
}