@charset "UTF-8";
@font-face {
  font-display: swap;
  font-weight: 700;
  font-style: normal;
  font-family: "sfpro";
  src: url("../../images/SF-Pro-Text-Bold.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-weight: 800;
  font-style: normal;
  font-family: "sfpro";
  src: url("../../images/SF-Pro-Text-Heavy.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-weight: 500;
  font-style: normal;
  font-family: "sfpro";
  src: url("../../images/SF-Pro-Text-Medium.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-weight: 300;
  font-style: normal;
  font-family: "sfpro";
  src: url("../../images/SF-Pro-Text-Light.woff") format("woff");
}
body {
  font-family: "Noto Sans JP", "Arial", "Helvetica Neue", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
  color: #333333;
  letter-spacing: 0;
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 1.2307692308vw;
  }
}
@media (min-width: 1300px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: all;
  }
}

a {
  text-decoration: none !important;
  color: inherit;
}

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

.hover-opacity {
  opacity: 1;
  -webkit-transition: 0.3s opacity ease-in-out;
  transition: 0.3s opacity ease-in-out;
}

.hover-opacity:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.arrow {
  position: relative;
  display: block;
}

.arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  aspect-ratio: 25/7;
  height: 7px;
  height: 0.4375rem;
  background-image: url("../../images/arrow-brown.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.base-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
}

.bread {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .bread {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.25rem 0;
  }
}

.bread__item {
  position: relative;
}

.bread__item:not(:first-of-type) {
  padding-left: 50px;
  padding-left: 3.125rem;
}
@media screen and (max-width: 767px) {
  .bread__item:not(:first-of-type) {
    padding-left: 1.375rem;
  }
}

.bread__item:not(:first-of-type)::after {
  content: "";
  display: block;
  position: absolute;
  left: 25px;
  left: 1.5625rem;
  top: 60%;
  aspect-ratio: 1;
  width: 10px;
  width: 0.625rem;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  border-right: 1px solid #6F6F6F;
  border-bottom: 1px solid #6F6F6F;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .bread__item:not(:first-of-type)::after {
    width: 0.4375rem;
    top: 65%;
    left: 0.6875rem;
  }
}

@media screen and (max-width: 767px) {
  _::-webkit-full-page-media, _:future, :root .bread__item:not(:first-of-type)::after {
    top: 50%;
    left: 0.8125rem;
  }
}

.bread__item a {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #6F6F6F;
}
@media screen and (max-width: 767px) {
  .bread__item a {
    font-size: 0.6875rem;
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #D4D4D4;
  -webkit-box-shadow: 0 0 1.875rem #D9D9D9;
          box-shadow: 0 0 1.875rem #D9D9D9;
  padding: 1px;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  padding: 17px 17px 30px;
  padding: 1.0625rem 1.0625rem 1.875rem;
}

.card__img {
  aspect-ratio: 293/160;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.card__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .card__body {
    overflow: unset;
  }
}

.card__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}

.card__icon {
  width: 65px;
  width: 4.0625rem;
  aspect-ratio: 65/29;
}

.card__name {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
}

.card__text {
  margin-bottom: 18px;
  margin-bottom: 1.125rem;
  word-break: break-all;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 767px) {
  .card__text {
    margin-bottom: 0.625rem;
  }
}

.card__arrow {
  -webkit-transform: translateX(calc(-100% + 1.625rem));
          transform: translateX(calc(-100% + 1.625rem));
  font-size: 16px;
  font-size: 1rem;
  color: #B09368;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 33px;
  padding-right: 2.0625rem;
  -webkit-transition: 0.7s -webkit-transform ease-out;
  transition: 0.7s -webkit-transform ease-out;
  transition: 0.7s transform ease-out;
  transition: 0.7s transform ease-out, 0.7s -webkit-transform ease-out;
}
@media screen and (max-width: 767px) {
  .card__arrow {
    width: 100%;
    -webkit-transform: unset;
            transform: unset;
    font-size: 0;
  }
}

.card:hover .card__arrow {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.card__arrow::after {
  right: 0;
  aspect-ratio: 25/5;
  height: 7px;
  height: 0.4375rem;
  width: 25px;
  width: 1.5625rem;
}
.drawer {
  background: #B09368;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: 375px;
  width: 23.4375rem;
  height: 100vh;
  overscroll-behavior: none;
  overflow: auto;
  -webkit-clip-path: inset(0% 0% 0% 20%);
          clip-path: inset(0% 0% 0% 20%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .drawer {
    width: 100%;
  }
}

.js-drawer.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-clip-path: inset(0% 0% 0% 0%);
          clip-path: inset(0% 0% 0% 0%);
}

.drawer__close {
  cursor: pointer;
  position: absolute;
  top: 28px;
  top: 1.75rem;
  right: 12px;
  right: 0.75rem;
  width: 56px;
  width: 3.5rem;
  height: 30px;
  height: 1.875rem;
}

.drawer__close-line {
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.drawer__close-line:nth-of-type(1) {
  -webkit-transform: translateY(-50%) rotate(-150deg);
          transform: translateY(-50%) rotate(-150deg);
}

.drawer__close-line:nth-of-type(2) {
  -webkit-transform: translateY(-50%) rotate(150deg);
          transform: translateY(-50%) rotate(150deg);
}

.drawer__inner {
  padding: 0 20px;
  padding: 0 1.25rem;
  min-height: calc(100% + 3.125rem);
}
@media screen and (max-width: 767px) {
  .drawer__inner {
    max-width: 31.25rem;
    margin-inline: auto;
  }
}

.drawer__container {
  padding: 138px 0 300px;
  padding: 8.625rem 0 18.75rem;
}

.drawer__menus {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}

.drawer__menu {
  display: block;
  border-bottom: 1px solid #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 300;
  padding: 16px 0;
  padding: 1rem 0;
  color: #fff;
  line-height: 1.6;
}

.drawer__user {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.drawer__user-info {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}

.drawer__button {
  display: block;
}

.drawer__button--card {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.drawer__menu-parent {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 300;
  color: #fff;
  position: relative;
  cursor: pointer;
}

.drawer__menu-parent::after {
  content: "";
  display: block;
  position: absolute;
  width: 24px;
  width: 1.5rem;
  height: 1px;
  background: #fff;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.drawer__menu-parent.is-close::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 24px;
  height: 1.5rem;
  background: #fff;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.drawer__menu-children {
  padding-top: 8px;
  padding-top: 0.5rem;
  padding-left: 22px;
  padding-left: 1.375rem;
}

.drawer__menu-child {
  display: block;
  padding: 8px;
  padding: 0.5rem;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 300;
  color: #fff;
  position: relative;
}

.drawer__menu-child::before {
  content: "";
  display: inline-block;
  aspect-ratio: 1;
  width: 15px;
  width: 0.9375rem;
  background: #fff;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  margin-right: 3px;
  margin-right: 0.1875rem;
}

.drawer__loguot {
  display: block;
  color: #fff;
  text-decoration: underline;
  font-size: 18px;
  font-size: 1.125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: 18px;
  margin-top: 1.125rem;
}

.drawer__buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  gap: 0.875rem;
}

.drawer .drawer__button {
  width: 100%;
  min-width: unset;
  background: #fff;
  color: #B09368;
  padding: 16px 10px;
  padding: 1rem 0.625rem;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.125rem;
}

.drawer .drawer__button:hover {
  border: 1px solid #fff;
}

.drawer .drawer__button--trans {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.drawer .drawer__button--trans:hover {
  background: #fff;
  color: #B09368;
}

.footer {
  background: #333333;
}

.footer__inner {
  max-width: calc(55.9375rem + 50px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    max-width: 85.5rem;
    padding-right: 24px;
    padding-left: 24px;
  }
}

.footer__container {
  padding: 30px 0;
  padding: 1.875rem 0;
}
@media screen and (max-width: 767px) {
  .footer__container {
    padding: 2.5rem 0;
  }
}

.footer__menus {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  gap: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .footer__menus {
    grid-template-columns: 1fr;
    gap: 0.375rem;
  }
}

.footer__menu {
  display: block;
  padding: 10px;
  padding: 0.625rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .footer__menu {
    padding: 0.3125rem 0;
  }
}

.footer__copy {
  font-family: "sfpro", "Noto Sans JP";
  padding: 16px 0;
  padding: 1rem 0;
  color: #fff;
  text-align: center;
  border-top: 1px solid #B09368;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  text-transform: uppercase;
}
.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
}

.header__inner {
  padding-left: 70px;
  padding-left: 4.375rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding-left: 1.5rem;
  }
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  gap: 1.875rem;
}
/*--
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-right: 186px;
  margin-right: 11.625rem;
}
@media screen and (max-width: 767px) {
  .header__right {
    gap: 1.5rem;
    margin-right: 5.75rem;
  }
}

.header__title {
  padding: 10px 0;
  padding: 0.625rem 0;
}
@media screen and (max-width: 767px) {
  .header__title {
    padding: 0.25rem 0;
  }
}

.header__logo {
  display: block;
  aspect-ratio: 152/42;
  width: 152px;
  width: 9.5rem;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 7.1875rem;
  }
}

.header__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px;
  padding: 0.5rem;
}
@media screen and (max-width: 767px) {
  .header__menus {
    padding: 0.375rem 0;
    gap: 1.5rem;
  }
}

.header__menu {
  margin-right: 20px;
  margin-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .header__menu {
    display: none;
  }
}

.header__menu a {
  padding: 10px;
  padding: 0.625rem;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  display: block;
}

.header__button {
  margin: 0 12px;
  margin: 0 0.75rem;
}
@media screen and (max-width: 767px) {
  .header__button {
    margin: unset;
  }
}

.header__button-a {
  display: block;
}

.header__button-icon {
  max-width: 24px;
  max-width: 1.5rem;
  margin-inline: auto;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .header__button-icon {
    aspect-ratio: 24/28;
    width: 1.5rem;
    max-width: unset;
    margin-bottom: unset;
  }
}

.header__button-icon img {
  -o-object-fit: contain;
     object-fit: contain;
}

.header__button-text {
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #B09368;
}
@media screen and (max-width: 767px) {
  .header__button-text {
    display: none;
  }
}

.header__hamburger {
  position: fixed;
  cursor: pointer;
  top: 0;
  right: 0;
  margin-left: 12px;
  margin-left: 0.75rem;
  width: 180px;
  width: 11.25rem;
  aspect-ratio: 180/100;
  background: #B09368;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  gap: 0.5rem;
  z-index: 150;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    margin-left: unset;
    width: 4.25rem;
    aspect-ratio: 68/64;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0.5rem;
  }
}

.header__hamburger-text {
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "sfpro", "Noto Sans JP";
  color: #fff;
}

.header__hamburger-lines {
  position: relative;
  aspect-ratio: 40/8;
  width: 40px;
  width: 2.5rem;
}
@media screen and (max-width: 767px) {
  .header__hamburger-lines {
    width: 1.1875rem;
    aspect-ratio: 19/8;
  }
}

.hamburger__hamburger-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  left: 0;
  top: 50%;
}

.hamburger__hamburger-line:nth-of-type(1) {
  -webkit-transform: translateY(calc(-50% - 0.3125rem));
          transform: translateY(calc(-50% - 0.3125rem));
}
@media screen and (max-width: 767px) {
  .hamburger__hamburger-line:nth-of-type(1) {
    -webkit-transform: translateY(calc(-50% - 0.25rem));
            transform: translateY(calc(-50% - 0.25rem));
  }
}

.hamburger__hamburger-line:nth-of-type(2) {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.hamburger__hamburger-line:nth-of-type(3) {
  -webkit-transform: translateY(calc(-50% + 0.3125rem));
          transform: translateY(calc(-50% + 0.3125rem));
}
@media screen and (max-width: 767px) {
  .hamburger__hamburger-line:nth-of-type(3) {
    -webkit-transform: translateY(calc(-50% + 0.25rem));
            transform: translateY(calc(-50% + 0.25rem));
  }
}
--*/
.inner {
  width: 100%;
  max-width: 1350px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 37.5rem;
    padding-right: 24px;
    padding-left: 24px;
  }
}

.link__container {
  border-top: 1px solid #D4D4D4;
  padding: 60px 0 40px;
  padding: 3.75rem 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .link__container {
    padding: 4rem 0 2.5rem;
  }
}

.link__title {
  text-align: center;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  color: #B09368;
}
@media screen and (max-width: 767px) {
  .link__title {
    margin-left: -0.3125rem;
    width: calc(100% + 0.3125rem);
    margin-bottom: 2rem;
    font-size: 1.125rem;
  }
}

.link__items {
  max-width: 958px;
  max-width: 59.875rem;
  margin-inline: auto;
  display: grid;
  gap: 32px;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .link__items {
    max-width: 18.625rem;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 7.5rem;
    place-content: center;
  }
}

.link__item {
  aspect-ratio: 298/65;
}

.link__img {
  max-width: 450px;
  max-width: 28.125rem;
  margin-inline: auto;
  aspect-ratio: 450/275;
}
@media screen and (max-width: 767px) {
  .link__img {
    max-width: 14.375rem;
  }
}

.menus {
  background: #fff;
}

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

.menus__item {
  -webkit-box-shadow: 0 -0.625rem 1.25rem #E3E3E3;
          box-shadow: 0 -0.625rem 1.25rem #E3E3E3;
  background: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 23px 10px 15px;
  padding: 1.4375rem 0.625rem 0.9375rem;
  -webkit-transition: 0.4s background ease-in-out;
  transition: 0.4s background ease-in-out;
}
@media screen and (max-width: 767px) {
  .menus__item {
    padding: 0.6875rem 0.1875rem 0.25rem;
  }
}

.menus__item:hover {
  background: #B09368;
}

.menus__item-icon {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: 69px;
  width: 4.3125rem;
  height: 50px;
  height: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 11px;
  margin-bottom: 0.6875rem;
  -webkit-transition: 0.4s -webkit-filter ease-in-out;
  transition: 0.4s -webkit-filter ease-in-out;
  transition: 0.4s filter ease-in-out;
  transition: 0.4s filter ease-in-out, 0.4s -webkit-filter ease-in-out;
}
@media screen and (max-width: 767px) {
  .menus__item-icon {
    width: 1.875rem;
    height: 1.875rem;
    margin-bottom: unset;
  }
}

.menus__item:hover .menus__item-icon {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="2" /><feFuncG type="linear" slope="2" /><feFuncB type="linear" slope="2" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(2);
          filter: brightness(2);
}

.menus__item-icon img {
  -o-object-fit: contain;
     object-fit: contain;
}

.menus__item:nth-of-type(1) .menus__item-icon img {
  aspect-ratio: 39/50;
  width: 39px;
  width: 2.4375rem;
}
@media screen and (max-width: 767px) {
  .menus__item:nth-of-type(1) .menus__item-icon img {
    width: 1.5rem;
  }
}

.menus__item:nth-of-type(2) .menus__item-icon img {
  aspect-ratio: 56/50;
  width: 56px;
  width: 3.5rem;
}
@media screen and (max-width: 767px) {
  .menus__item:nth-of-type(2) .menus__item-icon img {
    width: 1.875rem;
  }
}

.menus__item:nth-of-type(3) .menus__item-icon img {
  aspect-ratio: 1;
  width: 50px;
  width: 3.125rem;
}
@media screen and (max-width: 767px) {
  .menus__item:nth-of-type(3) .menus__item-icon img {
    width: 1.5rem;
  }
}

.menus__item:nth-of-type(4) .menus__item-icon img {
  aspect-ratio: 69/50;
  width: 69px;
  width: 4.3125rem;
}
@media screen and (max-width: 767px) {
  .menus__item:nth-of-type(4) .menus__item-icon img {
    width: 1.875rem;
  }
}

.menus__item:nth-of-type(5) .menus__item-icon img {
  aspect-ratio: 64/50;
  width: 64px;
  width: 4rem;
}
@media screen and (max-width: 767px) {
  .menus__item:nth-of-type(5) .menus__item-icon img {
    width: 1.875rem;
  }
}

.menus__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  color: #B09368;
  font-weight: 500;
  padding-right: 32px;
  padding-right: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  -webkit-transition: 0.4s -webkit-filter ease-in-out;
  transition: 0.4s -webkit-filter ease-in-out;
  transition: 0.4s filter ease-in-out;
  transition: 0.4s filter ease-in-out, 0.4s -webkit-filter ease-in-out;
}
@media screen and (max-width: 767px) {
  .menus__item-text {
    font-size: 0.5625rem;
    padding-right: unset;
  }
}

.menus__item-text::after {
  right: 0;
}
@media screen and (max-width: 767px) {
  .menus__item-text::after {
    display: none;
  }
}

.menus__item:hover .menus__item-text {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="2" /><feFuncG type="linear" slope="2" /><feFuncB type="linear" slope="2" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(2);
          filter: brightness(2);
}

@media screen and (max-width: 767px) {
  .menus__item-text--sp-small {
    line-height: 1.1;
    margin-top: 2px;
  }
}

.more-button {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 360px;
  min-width: 22.5rem;
  margin-inline: auto;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #B09368;
  padding: 30px;
  padding: 1.875rem;
  border: 1px solid #B09368;
  -webkit-transition: all ease-out 0.4s;
  transition: all ease-out 0.4s;
}
@media screen and (max-width: 767px) {
  .more-button {
    /*--min-width: 20rem;--*/
    min-width: 100%;
    font-size: 0.8rem;
    padding: 1rem 1.875rem;
    font-weight: 500;
    width: 100%;
  }
}

.more-button:hover {
  background: #B09368;
  color: #fff;
}

.more-button:hover::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="2" /><feFuncG type="linear" slope="2" /><feFuncB type="linear" slope="2" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(2);
          filter: brightness(2);
}

.more-button::after {
  -webkit-transition: all ease-out 0.4s;
  transition: all ease-out 0.4s;
  aspect-ratio: 25/5;
  right: 16px;
  right: 1rem;
}

.more {
  font-size: 16px;
  font-size: 1rem;
  color: #B09368;
  line-height: 1.7;
  display: block;
  padding-right: 32px;
  padding-right: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.more::after {
  right: 0;
  aspect-ratio: 25/5;
}

.p-fv {
  overflow: hidden;
  margin-bottom: 112px;
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .p-fv {
    margin-bottom: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .p-fv__inner {
    max-width: unset;
    padding: unset;
  }
}

.p-fv__container {
  /*--padding: 60px 0 0;
  padding: 3.75rem 0 0;--*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-fv__container {
   /*-- padding: 2.8125rem 0 0;--*/
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-fv__body {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-fv__body {
    position: relative;
    z-index: 2;
    width: calc(100% - 1.5625rem);
    margin-top: -1.25rem;
    max-width: 37.5rem;
    background: #fff;
    padding: 1rem 24px 0;
    display: block;
  }
}

.p-fv__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-fv__wrap {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .p-fv__top {
    margin-bottom: 0.875rem;
  }
}

.p-fv__img {
  width: 60%;
  max-height: 400px;
  max-height: 25rem;
}
@media screen and (max-width: 767px) {
  .p-fv__img {
    max-height: unset;
    width: 100%;
    position: relative;
    z-index: 1;
    aspect-ratio: 375/128;
  }
}

.p-fv__img img {
  max-width: unset;
  width: 70vw;
}
@media screen and (max-width: 767px) {
  .p-fv__img img {
    max-width: 100%;
    width: 100%;
  }
}

.preferential-card {
  position: relative;
}

.preferential-card:nth-of-type(2n - 1)::after {
  content: "";
  display: block;
  position: absolute;
  left: calc(100% + 1.6875rem);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  width: 1px;
  height: 100%;
  background: #E3E3E3;
}
@media screen and (max-width: 767px) {
  .preferential-card:nth-of-type(2n - 1)::after {
    display: none;
  }
}

.preferential-card__img {
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
  aspect-ratio: 226/154;
}

.preferential-card__name {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .preferential-card__name {
    font-size: 1rem;
  }
}

.preferential-card__text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .preferential-card__text {
    font-size: 1rem;
  }
}

.preferential-card__text .brown {
  color: #B09368;
}

.preferential-card__text .number {
  font-family: "sfpro", "Noto Sans JP";
  color: #B09368;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .preferential-card__text .number {
    font-size: 1rem;
  }
}

.preferential-card__text .percent {
  color: #B09368;
  font-family: "sfpro", "Noto Sans JP";
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .preferential-card__text .percent {
    font-size: 1rem;
  }
}

.preferential-card__text .discount {
  color: #B09368;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .preferential-card__text .discount {
    font-size: 1rem;
  }
}

.real {
  background-image: url("../../images/real-bg-pc.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .real {
    background-image: url("../../images/real-bg-sp.jpg");
  }
}

.real__container {
  padding: 80px 0 90px;
  padding: 5rem 0 5.625rem;
}
@media screen and (max-width: 767px) {
  .real__container {
    padding: 4rem 0;
  }
}

.real__top {
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .real__top {
    margin-bottom: 1rem;
  }
}

.real__top .section-title__main {
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .real__top .section-title__main {
    margin-bottom: 0.5rem;
  }
}

.real__top .section-title__main span {
  font-size: 32px;
  font-size: 2rem;
  display: block;
  margin-top: -8px;
  margin-top: -0.5rem;
}
@media screen and (max-width: 767px) {
  .real__top .section-title__main span {
    margin-top: unset;
    font-size: 1.25rem;
  }
}

.real__top .section-title__sub {
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.real__top .section-title__sub::before {
  background: #fff;
}

.real__content {
  background: rgba(51, 51, 51, .7);
  padding: 24px;
  padding: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .real__content {
    padding: 2.5rem 1.5rem;
  }
}

.real__content-text {
  max-width: 868px;
  max-width: 54.25rem;
  margin-inline: auto;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
  text-align: center;
  color: #fff;
  font-weight: 500;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .real__content-text {
    margin-bottom: 1.75rem;
    font-size: 1rem;
  }
}

.real__content-more {
  background: #B09368;
  color: #fff;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
@media screen and (max-width: 767px) {
  .real__content-more {
    min-width: unset;
  }
}

.real__content-more:hover {
  background: #fff;
  color: #B09368;
}

.real__content-more::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="2" /><feFuncG type="linear" slope="2" /><feFuncB type="linear" slope="2" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(2);
          filter: brightness(2);
}

.real__content-more:hover::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.section-title__main {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  line-height:1.5;
}
@media screen and (max-width: 767px) {
  .section-title__main {
    font-size: 1.75rem;
    margin-bottom: 0.125rem;
    line-height: 1.3;
  }
}

.section-title__main .brown {
  color: #B09368;
}

.section-title__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section-title__sub {
  font-family: "sfpro", "Noto Sans JP";
  position: relative;
  color: #B09368;
  line-height: 1.7;
  font-size: 16px;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .section-title__sub {
    font-size: 1rem;
  }
}

.section-title__sub::before {
  content: "";
  display: inline-block;
  aspect-ratio: 1;
  width: 10px;
  width: 0.625rem;
  background: #B09368;
  border-radius: 50%;
  margin-right: 4px;
  margin-right: 0.25rem;
}
@media screen and (max-width: 767px) {
  .section-title__sub::before {
    -webkit-transform: translateY(-0.125rem);
            transform: translateY(-0.125rem);
    width: 0.5rem;
  }
}

.section-title__more {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #B09368;
  padding-right: 85px;
  padding-right: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .section-title__more {
    font-size: 0.75rem;
    padding-right: 2.0625rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.section-title__more::after {
  right: 0;
}

.swiper-button {
  aspect-ratio: 1;
  width: 40px;
  width: 2.5rem;
  background: #333333;
  pointer-events: all;
  cursor: pointer;
}

.swiper-button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 37%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  aspect-ratio: 1;
  width: 17px;
  width: 1.0625rem;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}

@media screen and (max-width: 767px) {
  .p-about-benefit .p-fv .section-title__main {
    font-size: 1.375rem;
  }
}

.p-ab-read {
  margin-bottom: 112px;
  margin-bottom: 7rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #B09368), color-stop(23.75rem, transparent));
  background: linear-gradient(#B09368 0 23.75rem, transparent 23.75rem 100%);
}
@media screen and (max-width: 767px) {
  .p-ab-read {
    margin-bottom: 4rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #B09368), color-stop(23.75rem, transparent));
    background: linear-gradient(#B09368 0 23.75rem, transparent 23.75rem 100%);
  }
}

.p-ab-read__container {
  padding-top: 40px;
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-ab-read__container {
    padding-top: 2rem;
  }
}

.p-ab-read__title {
  text-align: center;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-ab-read__title {
    font-size: 1.25rem;
  }
}

.p-ab-read__text {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-ab-read__text {
    margin-bottom: 2rem;
    font-size: 1rem;
  }
}

.p-ab-read__content {
  background: #fff;
  position: relative;
  padding: 42px 0 36px;
  padding: 2.625rem 0 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-ab-read__content {
    display: contents;
  }
}

.p-ab-read__content::after {
  pointer-events: none;
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 1.25rem #ABABAB;
          box-shadow: 0 0 1.25rem #ABABAB;
  z-index: 1;
  background: #fff;
  mix-blend-mode: multiply;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-ab-read__content::after {
    display: none;
  }
}

.p-ab-read__cta {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-ab-read__cta {
    padding: 1.5rem 0.9375rem;
    position: relative;
    background: #fff;
  }
}

@media screen and (max-width: 767px) {
  .p-ab-read__cta::after {
    pointer-events: none;
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 1.25rem #ABABAB;
            box-shadow: 0 0 1.25rem #ABABAB;
    z-index: 1;
    background: #fff;
    mix-blend-mode: multiply;
    top: 0;
    left: 0;
  }
}

.p-ab-read__items {
  position: relative;
  z-index: 2;
  padding: 40px 32px 0px;
  padding: 2.5rem 2rem 0rem;
  border-top: 1px solid #E3E3E3;
}
@media screen and (max-width: 767px) {
  .p-ab-read__items {
    padding: unset;
    border-top: unset;
  }
}

.p-ab-cta__text {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-ab-cta__text {
    font-size: 1rem;
  }
}

.p-ab-cta__button {
  display: block;
  background: #C84E90;
  color: #fff;
  margin-inline: auto;
  position: relative;
  min-width: unset;
  max-width: 622px;
  max-width: 38.875rem;
  width: unset;
}
@media screen and (max-width: 767px) {
  .p-ab-cta__button {
    font-weight: 500;
  }
}

.p-ab-cta__button:hover {
  background: #fff;
  color: #C84E90;
  border: 1px solid #C84E90;
}

.p-ab-cta__button:hover::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.p-ab-cta__button::after {
  background: url("../../images/arrow-pink.svg");
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="3" /><feFuncG type="linear" slope="3" /><feFuncB type="linear" slope="3" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(3);
          filter: brightness(3);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-ab-cta__button::after {
    width: 1.375rem;
  }
}

.p-ab-case {
  background: #F8ECD9;
  margin-bottom: 112px;
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .p-ab-case {
    margin-bottom: 4rem;
  }
}

.p-ab-case__container {
  padding: 112px 0;
  padding: 7rem 0;
}
@media screen and (max-width: 767px) {
  .p-ab-case__container {
    padding: 4rem 0;
  }
}

.p-ab-case__top {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.p-ab-case__content {
  overflow: hidden;
  background: #fff;
  padding: 48px 50px 80px;
  padding: 3rem 3.125rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-ab-case__content {
    padding: 2.25rem 1.125rem 1.5rem;
  }
}

.p-ab-case__content-name {
  color: #B09368;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #E3E3E3;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-ab-case__content-name {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}

.p-ab-case__content-name span {
  vertical-align: sub;
  color: #B09368;
  margin-right: 22px;
  margin-right: 1.375rem;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  font-family: "sfpro", "Noto Sans JP";
}
@media screen and (max-width: 767px) {
  .p-ab-case__content-name span {
    margin-right: 1rem;
    font-size: 2rem;
    line-height: 1;
    vertical-align: unset;
  }
}

.p-ab-case__content-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1070px;
  max-width: 66.875rem;
  margin-inline: auto;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-ab-case__content-middle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 1.5rem;
    gap: 1rem;
  }
}

.p-ab-case__content-item {
  max-width: 400px;
  max-width: 25rem;
}
@media screen and (max-width: 767px) {
  .p-ab-case__content-item {
    max-width: 18rem;
  }
}

.p-ab-case__content-img {
  aspect-ratio: 400/266;
  max-width: 400px;
  max-width: 25rem;
  margin-bottom: 11px;
  margin-bottom: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .p-ab-case__content-img {
    margin-inline: auto;
    max-width: 15rem;
    margin-bottom: 0.5rem;
  }
}

.p-ab-case__content-caption {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-ab-case__content-caption {
    font-size: 1rem;
  }
}

.p-ab-case__content-caption--brown {
  color: #B09368;
}

.p-ab-case__content-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-ab-case__content-center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-ab-case__content-text {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-ab-case__content-text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.p-ab-case__content-arrow {
  width: 128px;
  width: 8rem;
  margin-bottom: 9px;
  margin-bottom: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .p-ab-case__content-arrow {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 3.3125rem;
    aspect-ratio: 53/30;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

@media screen and (max-width: 767px) {
  .p-ab-case__content-arrow img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}

@media screen and (max-width: 767px) {
  .p-ab-case__content-price {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.p-ab-case__content-price .top {
  text-align: center;
  line-height: 1;
  color: #B09368;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-ab-case__content-price .top {
    font-size: 1.125rem;
  }
}

.p-ab-case__content-price .number {
  font-size: 40px;
  font-size: 2.5rem;
  color: #B09368;
  font-weight: 700;
  font-family: "sfpro", "Noto Sans JP";
}

.p-ab-case__content-price .discount {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #B09368;
}

.p-ab-case__content-bottom {
  max-width: 1100px;
  max-width: 68.75rem;
  margin-inline: auto;
  border-radius: 1.875rem;
  border: 1px solid #B09368;
  position: relative;
  padding: 32px 64px 32px 153px;
  padding: 2rem 4rem 2rem 9.5625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-ab-case__content-bottom {
    border-radius: 0.9375rem;
    padding: 1.5rem;
  }
}

.p-ab-case__content-bottom-img {
  position: absolute;
  bottom: -1px;
  bottom: -0.0625rem;
  left: -54px;
  left: -3.375rem;
  aspect-ratio: 190/114;
  width: 190px;
  width: 11.875rem;
}
@media screen and (max-width: 767px) {
  .p-ab-case__content-bottom-img {
    display: none;
  }
}

.p-ab-case__content-qa:not(:last-of-type) {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-ab-case__content-qa:not(:last-of-type) {
    margin-bottom: 1.5rem;
  }
}

.p-ab-case__content-q {
  color: #B09368;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-ab-case__content-q {
    font-size: 1rem;
  }
}

.p-ab-case__cta {
  margin: 112px 0;
  margin: 7rem 0;
}
@media screen and (max-width: 767px) {
  .p-ab-case__cta {
    margin: 4rem 0;
  }
}

.p-ab-links {
  margin-bottom: 112px;
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .p-ab-links {
    margin-bottom: 4rem;
  }
}

.p-ab-links__inner {
  max-width: 1277px;
  max-width: 79.8125rem;
  padding: 0 25px;
  margin-inline: auto;
}

.p-ab-links__items {
  margin-bottom: 80px;
  margin-bottom: 5rem;
}

.p-ab-items {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 27px;
  gap: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .p-ab-items {
    display: block;
  }
}

.p-ab-items__item {
  background: #f3f3f3;
  padding: 32px 60px;
  padding: 2rem 3.75rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-ab-items__item {
    display: block;
    padding: 1.5rem 0.9375rem;
    margin-bottom: 0.5rem;
  }
}

.p-ab-items__item-name {
  color: #B09368;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-ab-items__item-name {
    font-size: 1.125rem;
    margin-bottom: 1.375rem;
  }
}

.p-ab-items__item-text {
  text-align: center;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .p-ab-items__item-text {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

.p-ab-items__item-link {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-ab-items__item-link {
    min-width: unset;
  }
}

.p-about__buttons {
  margin-bottom: 112px;
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .p-about__buttons {
    margin-bottom: 4rem;
  }
}

.pa-read {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .pa-read {
    margin-bottom: 2rem;
  }
}

.pa-read__catch {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .pa-read__catch {
    font-size: 1.25rem;
    margin-bottom: 0.9375rem;
  }
}

.pa-read__catch span {
  color: #B09368;
}

.pa-read__text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .pa-read__text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.pa-read__more {
  margin-inline: auto;
}

.pa-buttons {
  background: #B09368;
}

.pa-buttons__container {
  padding: 80px 0 20px;
  padding: 5rem 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .pa-buttons__container {
    padding: 2.5rem 0 1rem;
  }
}

.pa-buttons__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  gap: 3.5rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .pa-buttons__items {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 1rem;
  }
}

.pa-buttons__item {
  font-size: 22px;
  font-size: 1.375rem;
  background: #C84E90;
  color: #fff;
  min-width: unset;
  width: 100%;
  -webkit-transition: all ease-out 0.4s;
  transition: all ease-out 0.4s;
}
@media screen and (max-width: 767px) {
  .pa-buttons__item {
    font-size: 1.125rem;
  }
}

.pa-buttons__item:hover {
  color: #C84E90;
  background: #fff;
}

.pa-buttons__item:hover::after {
  -webkit-transition: -webkit-filter ease-out 0.4s;
  transition: -webkit-filter ease-out 0.4s;
  transition: filter ease-out 0.4s;
  transition: filter ease-out 0.4s, -webkit-filter ease-out 0.4s;
  -webkit-filter: blur(1);
          filter: blur(1);
}

.pa-buttons__item::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="3" /><feFuncG type="linear" slope="3" /><feFuncB type="linear" slope="3" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(3);
          filter: brightness(3);
  background-image: url("../../images/arrow-pink.svg");
}
@media screen and (max-width: 767px) {
  .pa-buttons__item::after {
    top: unset;
    bottom: 1.25rem;
    right: 0.9375rem;
  }
}

.pa-buttons__item--trans {
  font-size: 22px;
  font-size: 1.375rem;
  background: #fff;
  border: 1px solid #C84E90;
  padding: 20px 20px 15px;
  padding: 1.25rem 1.25rem 0.9375rem;
  -webkit-transition: all ease-out 0.4s;
  transition: all ease-out 0.4s;
}
@media screen and (max-width: 767px) {
  .pa-buttons__item--trans {
    font-size: 1.125rem;
    padding: 0.75rem 1.875rem;
  }
}

.pa-buttons__item--trans:hover {
  color: #fff;
  background: #C84E90;
  border: 1px solid #C84E90;
}

.pa-buttons__item--trans:hover span {
  color: #fff;
}

.pa-buttons__item--trans::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(1);
          filter: brightness(1);
  background-image: url("../../images/arrow-pink.svg");
}

.pa-buttons__item--trans:hover::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="3" /><feFuncG type="linear" slope="3" /><feFuncB type="linear" slope="3" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(3);
          filter: brightness(3);
}

.pa-buttons__item--trans {
  text-align: center;
  color: #C84E90;
}

.pa-buttons__item--trans span {
  display: block;
  color: #333333;
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 1px;
  margin-bottom: 0.0625rem;
  -webkit-transition: all ease-out 0.4s;
  transition: all ease-out 0.4s;
}
@media screen and (max-width: 767px) {
  .pa-buttons__item--trans span {
    font-size: 1rem;
  }
}

.pa-buttons__bottom {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  margin-left: auto;
  text-decoration: underline;
  font-size: 16px;
  font-size: 1rem;
  padding-right: 24px;
  padding-right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .pa-buttons__bottom {
    font-size: 1rem;
  }
}

.pa-se {
  margin-bottom: 112px;
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .pa-se {
    margin-bottom: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .pa-se__inner {
    padding: 0 0.625rem;
  }
}

.pa-se__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .pa-se__container {
    grid-template-columns: 1fr;
    gap: 1.875rem 0;
  }
}

.pa-se__content {
  background: #F8ECD9;
  padding: 32px 40px;
  padding: 2rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .pa-se__content {
    padding: 1.25rem 0.625rem;
  }
}

.pa-se__title {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #B09368;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .pa-se__title {
    font-size: 1.25rem;
  }
}

.pa-se__text {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .pa-se__text {
    margin-bottom: 1rem;
    font-size: 1rem;
    padding: 0 0.25rem;
  }
}

.pa-se__content:nth-of-type(1) > .pa-se__wrap {
  padding-right: 40px;
  padding-right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .pa-se__content:nth-of-type(1) > .pa-se__wrap {
    padding-right: 0.875rem;
  }
}

.pa-se__content:nth-of-type(2) > .pa-se__wrap {
  padding-left: 40px;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .pa-se__content:nth-of-type(2) > .pa-se__wrap {
    padding-left: 0.875rem;
  }
}

.pa-se__wrap {
  background: #fff;
  padding: 24px 17px 12px;
  padding: 1.5rem 1.0625rem 0.75rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .pa-se__wrap {
    padding: 1rem 0.875rem 0.75rem;
    margin-bottom: 1.25rem;
  }
}

.pa-se__read {
  margin-inline: auto;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 16px;
  padding: 0.25rem 1rem;
  border-radius: 12.5rem;
  background: #B09368;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  .pa-se__read {
    margin-inline: unset;
    margin-bottom: 1rem;
    font-size: 1rem;
  }
}

.pa-se__read::after {
  content: "";
  display: block;
  position: absolute;
  left: calc(100% - 1rem);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .pa-se__read::after {
    left: calc(100% - 0.75rem);
  }
}

.pa-se__content:nth-of-type(1) .pa-se__read::after {
  aspect-ratio: 82/60;
  width: 82px;
  width: 5.125rem;
  background-image: url("../../images/service-icon.png");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .pa-se__content:nth-of-type(1) .pa-se__read::after {
    width: 3.4375rem;
  }
}

.pa-se__content:nth-of-type(2) .pa-se__read::after {
  aspect-ratio: 93/60;
  width: 93px;
  width: 5.8125rem;
  background-image: url("../../images/event-icon.png");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .pa-se__content:nth-of-type(2) .pa-se__read::after {
    width: 3.4375rem;
  }
}

.pa-se__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 54px;
  gap: 1.25rem 3.375rem;
}
@media screen and (max-width: 767px) {
  .pa-se__items {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.pa-se__item {
  min-height: 230px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .pa-se__item {
    min-height: unset;
  }
}

.pa-se__item:nth-of-type(2n - 1)::after {
  content: "";
  display: block;
  position: absolute;
  left: calc(100% + 1.6875rem);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  width: 1px;
  height: 100%;
  background: #E3E3E3;
}
@media screen and (max-width: 767px) {
  .pa-se__item:nth-of-type(2n - 1)::after {
    display: none;
  }
}

.pa-se__content:nth-of-type(2) .pa-se__item-name {
  margin-bottom: 13px;
  margin-bottom: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .pa-se__content:nth-of-type(2) .pa-se__item-name {
    margin-bottom: unset;
  }
}

.pa-se__content:nth-of-type(2) h3.pa-se__item-name {
  margin-top: 5px;
  margin-top: 0.3125rem;
  font-size: 1.16em;
  letter-spacing: -1px;
}

.pa-se__more {
  color: #B09368;
  background: transparent;
  border-color: #B09368;
}

.pa-special {
  margin-bottom: 112px;
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .pa-special {
    margin-bottom: 4rem;
  }
}

.pa-special__top {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .pa-special__top {
    margin-bottom: 1.25rem;
  }
}

.pa-special__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 20px;
  gap: 2.5rem 1.25rem;
  counter-reset: number 0;
}
@media screen and (max-width: 767px) {
  .pa-special__items {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.pa-special__item {
  -webkit-box-shadow: 0 0 1.875rem #D9D9D9;
          box-shadow: 0 0 1.875rem #D9D9D9;
  background: #fff;
  border: 1px solid #D4D4D4;
  padding: 40px 40px 24px;
  padding: 2.5rem 2.5rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .pa-special__item {
    -webkit-box-shadow: 0 0 1.25rem #D9D9D9;
            box-shadow: 0 0 1.25rem #D9D9D9;
    padding: 1.25rem 1.25rem 0.75rem;
  }
}

.pa-special__item-name {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #B09368;
  line-height: 1.6;
  position: relative;
  padding-left: 82px;
  padding-left: 5.125rem;
}
@media screen and (max-width: 767px) {
  .pa-special__item-name {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    padding-left: 2.8125rem;
  }
}

@media screen and (max-width: 767px) {
  .pa-special__item:nth-of-type(3) .pa-special__item-name {
    font-size: 1.125rem;
  }
}

.pa-special__item-name::before {
  position: absolute;
  top: -14px;
  top: -0.875rem;
  left: 0;
  vertical-align: sub;
  counter-increment: number 1;
  content: "0" counter(number);
  display: inline-block;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  font-family: "sfpro", "Noto Sans JP";
  color: #B09368;
  line-height: 1.6;
  margin-right: 16px;
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .pa-special__item-name::before {
    top: -0.5rem;
    font-size: 1.75rem;
    margin-right: 0.3125rem;
  }
}

.pa-special__item-img {
  aspect-ratio: 562/300;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .pa-special__item-img {
    margin-bottom: 0.75rem;
  }
}

.pa-special__item-read {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .pa-special__item-read {
    font-size: 1.125rem;
  }
}

.pa-special__item-text {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .pa-special__item-text {
    margin-bottom: 1rem;
  }
}

.pa-special__item-more {
  color: #B09368;
  font-size: 16px;
  font-size: 1rem;
  padding-right: 33px;
  padding-right: 2.0625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.pa-special__item-more::after {
  right: 0;
  -webkit-transition: 0.4s ease-out right;
  transition: 0.4s ease-out right;
}

.pa-special__item:hover .pa-special__item-more::after {
  right: -5px;
}

.pa-special__kaiinsho {
  margin-top: 112px;
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .pa-special__kaiinsho {
    margin-top: 6rem;
  }
}
.pa-special__kaiinsho h3 {
  font-size: 32px;
  font-size: 2rem;
  line-height: 121.875%;
}
@media screen and (max-width: 767px) {
  .pa-special__kaiinsho h3 {
    font-size: 1rem;
  }
}
.pa-special__kaiinsho--read {
  margin-top: 29px;
  margin-top: 1.8125rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 160%;
  color: #595959;
}
@media screen and (max-width: 767px) {
  .pa-special__kaiinsho--read {
    font-size: 0.75rem;
  }
}
.pa-special__kaiinsho h4 {
  margin-top: 45px;
  margin-top: 2.8125rem;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .pa-special__kaiinsho h4 {
    margin-top: 2.4375rem;
    font-size: 0.875rem;
  }
}
.pa-special__kaiinsho ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .pa-special__kaiinsho ol {
    margin-top: 1.5625rem;
  }
}
.pa-special__kaiinsho li {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .pa-special__kaiinsho li {
    font-size: 0.75rem;
  }
}
.pa-special__kaiinsho--example {
  margin-top: 33px;
  margin-top: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .pa-special__kaiinsho--example {
    margin-top: 1rem;
    margin-right: -24px;
    border-style: solid none solid solid;
    border-width: 1px;
    border-color: #8C8C8C;
    overflow: auto;
  }
}
.pa-special__kaiinsho--example img {
  border: solid 1px #8C8C8C;
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .pa-special__kaiinsho--example img {
    border: none;
    max-width: none;
    width: 250vw;
    width: 250dvw;
  }
}

.pb-detail__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 58px;
  gap: 3.625rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 110px;
  margin-top: 6.875rem;
  margin-bottom: 109px;
  margin-bottom: 6.8125rem;
}
@media screen and (max-width: 767px) {
  .pb-detail__flex {
    display: block;
    margin-top: 3.375rem;
    margin-bottom: unset;
    padding: unset;
  }
}

.pbd__main {
  width: 992px;
  width: 62rem;
}
@media screen and (max-width: 767px) {
  .pbd__main {
    width: 100%;
    margin-inline: auto;
    max-width: 37.5rem;
    padding-right: 24px;
    padding-left: 24px;
  }
}

.pbd__aside {
  width: 250px;
  width: 15.625rem;
}
@media screen and (max-width: 767px) {
  .pbd__aside {
    width: 100%;
  }
}

.pbd__fv {
  margin-top: -35.5px;
  margin-top: -2.21875rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .pbd__fv {
    margin-top: unset;
    margin-bottom: 0.25rem;
  }
}

.pbd__fv .p-fv__inner {
  padding: unset;
}

.pbd__fv .p-fv__bread {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .pbd__fv .p-fv__bread {
    max-width: 15.625rem;
  }
}

.pbd__fv .p-fv__detail-img {
  aspect-ratio: 992/380;
}
@media screen and (max-width: 767px) {
  .pbd__fv .p-fv__detail-img {
    aspect-ratio: 323/110;
  }
}

.pbd-read {
  margin-bottom: 188px;
  margin-bottom: 11.75rem;
}
@media screen and (max-width: 767px) {
  .pbd-read {
    margin-bottom: 4rem;
  }
}

.pbd-read__subtitle {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .pbd-read__subtitle {
    font-size: 0.875rem;
    margin-bottom: unset;
  }
}

.pbd-read__title {
  margin-bottom: 16px;
  margin-bottom: 1rem;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .pbd-read__title {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
  }
}

.pbd-read__infos {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.pbd-read__info {
  display: grid;
  grid-template-columns: 9.375rem calc(100% - 9.375rem);
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .pbd-read__info {
    grid-template-columns: 1fr;
    margin-bottom: unset;
  }
}

.pbd-read__info-label {
  text-align: center;
  padding: 16px;
  padding: 1rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: #333333;
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .pbd-read__info-label {
    font-size: 0.875rem;
    padding: 0rem 0.5rem;
    display: block;
    text-align: left;
    font-weight: 500;
  }
}

.pbd-read__info-data {
  background: #f3f3f3;
  padding: 16px 18px;
  padding: 1rem 1.125rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .pbd-read__info-data {
    font-size: 1rem;
    padding: 0.125rem 0.5rem;
  }
}

.pbd-read__info-data ol {
  padding-left: 30px;
  padding-left: 1.875rem;
  list-style: decimal;
  text-indent: 0.6em;
}
@media screen and (max-width: 767px) {
  .pbd-read__info-data ol {
    padding-left: 1.25rem;
    text-indent: 0.1em;
  }
}

.pbd-read__info-data ol li {
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .pbd-read__info-data ol li {
    margin-bottom: 0.125rem;
  }
}

.pbd-read__more {
  font-size: 22px;
  font-size: 1.375rem;
  max-width: 622px;
  max-width: 38.875rem;
  width: 100%;
  background: #B09368;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .pbd-read__more {
    font-size: 1rem;
    width: calc(100% - 1.75rem);
    min-width: unset;
  }
}

.pbd-read__more::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="2" /><feFuncG type="linear" slope="2" /><feFuncB type="linear" slope="2" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(2);
          filter: brightness(2);
}
@media screen and (max-width: 767px) {
  .pbd-read__more::after {
    width: 1.25rem;
  }
}

.pbd-read__more:hover {
  background: #fff;
  color: #B09368;
}

.pbd-read__more:hover::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.pbd-text {
  margin-bottom: 140px;
  margin-bottom: 8.75rem;
}
@media screen and (max-width: 767px) {
  .pbd-text {
    margin-bottom: 4rem;
  }
}

.pbd-text__item {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 19px;
  margin-bottom: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .pbd-text__item {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
  }
}

.pbd-text__bottom {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .pbd-text__bottom {
    font-size: 0.75rem;
  }
}

.pbd-overview__title {
  color: #B09368;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .pbd-overview__title {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
  }
}

.pbd-overview__lists {
  margin-bottom: 80px;
  margin-bottom: 5rem;
  border-top: 1px solid #E3E3E3;
}
@media screen and (max-width: 767px) {
  .pbd-overview__lists {
    margin-bottom: 2.5rem;
  }
}

.pbd-overview__list {
  padding: 23px 0;
  padding: 1.4375rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px solid #E3E3E3;
}
@media screen and (max-width: 767px) {
  .pbd-overview__list {
    display: block;
    padding: 1rem 0;
  }
}

.pbd-overview__list-label {
  width: 170px;
  width: 10.625rem;
  color: #ababab;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  padding-right: 62px;
  padding-right: 3.875rem;
}
@media screen and (max-width: 767px) {
  .pbd-overview__list-label {
    width: 100%;
    margin-bottom: 0.25rem;
    font-size: 1rem;
    padding-right: unset;
  }
}

.pbd-overview__list-data {
  width: calc(100% - 10.625rem);
}
@media screen and (max-width: 767px) {
  .pbd-overview__list-data {
    width: 100%;
  }
}

.pbd-overview__list-data p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .pbd-overview__list-data p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.pbd-overview__list-data p:not(:last-of-type) {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .pbd-overview__list-data p:not(:last-of-type) {
    margin-bottom: 0.25rem;
  }
}

.pbd-overview__list-data ol {
  padding-left: 17px;
  padding-left: 1.0625rem;
  list-style-type: decimal;
  text-indent: 0.9em;
}
@media screen and (max-width: 767px) {
  .pbd-overview__list-data ol {
    text-indent: 0.3em;
  }
}

.pbd-overview__list-data ol li {
  margin-bottom: 9px;
  margin-bottom: 0.5625rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .pbd-overview__list-data ol li {
    margin-bottom: 0.4375rem;
    font-size: 1rem;
  }
}

.pbd-overview__list-data a {
  font-weight: 500;
  margin-top: 10px;
  margin-top: 0.625rem;
  color: #B09368;
  font-size: 16px;
  font-size: 1rem;
  padding-right: 33px;
  padding-right: 2.0625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}

.pbd-overview__list-data a::after {
  right: 0;
  width: 24px;
  width: 1.5rem;
  -webkit-transition: 0.4s ease-in-out right;
  transition: 0.4s ease-in-out right;
}

.pbd-overview__list-data a:hover::after {
  right: -5px;
  right: -0.3125rem;
}

@media screen and (max-width: 767px) {
  .pbd-overview__list-data .sp-big {
    font-size: 1.125rem;
  }
}

.pbd-overview__list-data small {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .pbd-overview__list-data small {
    font-size: 0.75rem;
  }
}

.pbd-overview__apply {
  padding: 24px;
  padding: 1.5rem;
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  background: #E3E3E3;
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .pbd-overview__apply {
    font-size: 1.125rem;
    padding: 1rem;
    margin-bottom: 2.5rem;
  }
}

.pbd-overview__attentions {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .pbd-overview__attentions {
    font-size: 0.75rem;
    font-weight: 400;
  }
}

.pbd-overview__contact-read {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.pbd-overview__contact-info {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 112px;
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .pbd-overview__contact-info {
    margin-bottom: 2.9375rem;
  }
}

.pbd-overview__more {
  width: 100%;
  max-width: 622px;
  max-width: 38.875rem;
  background: #36426f;
  color: #fff;
  padding: 17px;
  padding: 1.0625rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .pbd-overview__more {
    min-width: unset;
    width: calc(100% - 1.75rem);
    margin-bottom: 3.9375rem;
    padding: 0.8125rem;
  }
}

.pbd-overview__more::after {
  background: url("../../images/arrow-blue.svg");
  background-repeat: no-repeat;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="4" /><feFuncG type="linear" slope="4" /><feFuncB type="linear" slope="4" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(4);
          filter: brightness(4);
}
@media screen and (max-width: 767px) {
  .pbd-overview__more::after {
    width: 1.25rem;
    background-size: contain;
  }
}

.pbd-overview__more:hover {
  background: #fff;
  color: #36426f;
  border: 1px solid #36426f;
}

.pbd-overview__more:hover::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.pbd-aside {
  border-radius: 0.9375rem;
  background: #f3f3f3;
  padding: 24px 24px 8px;
  padding: 1.5rem 1.5rem 0.5rem;
}
@media screen and (max-width: 767px) {
  .pbd-aside {
    border-radius: unset;
    padding: 2rem 1.5rem 0.5rem;
  }
}

/*
.pbd-aside__icon {
  max-width: rem(86);
  aspect-ratio: 86/64;
  margin-inline: auto;
  margin-bottom: rem(16);
  @include mq{
    margin-bottom: unset;
  }
}

.pbd-aside__title {
  background: $pink;
  color: $white;
  font-size: rem(16);
  line-height: 1.7;
  font-weight: $medium;
  text-align: center;
  margin-bottom: rem(16);
  padding: rem(2) rem(10);
  @include mq {
    display: none;
  }
}
.pbd-aside__items {
  @include mq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: rem(16) rem(8);
    padding: rem(24) $padding-sp;
  }
}

.pbd-aside__items:not(:last-of-type) {
  border-bottom: 1px solid $gray3;
}
.pbd-aside__item {
  display: block;
  margin-bottom: rem(16);
  @include mq {
    margin-bottom: unset;
  }
}

.pbd-aside__item:last-of-type {
  // margin-bottom: ;
}

.pbd-aside__item-img {
  aspect-ratio: 202/130;
  margin-bottom: rem(4);
}

.pbd-aside__item-tag {
  background: $brown;
  color: $white;
  font-size: rem(12);
  font-weight: $bold;
  padding: rem(2) rem(8);
  width: fit-content;
  margin-bottom: rem(4);
  @include mq {
    font-size: rem(11);
    padding: rem(1) rem(3) rem(2);
  }
}

.pbd-aside__item-tag--black {
  background: $baseColor;
}

.pbd-aside__item-time {
  font-size: rem(14);
  font-weight: $medium;
  line-height: 1.6;
  @include mq {
    font-size: rem(12);
    margin-bottom: rem(4);
  }
}

.pbd-aside__item-title {
  font-size: rem(15);
  font-weight: $bold;
  line-height: 1.5;
  @include mq {
    font-size: rem(13);

  }
}
*/
.pbd-aside#load-event {
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}
.pbd-aside .mb50 {
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
.pbd-aside img {
  image-rendering: unset;
  border: none;
}
.pbd-aside a:hover {
  opacity: 0.7;
  text-decoration: none;
}
.pbd-aside #sub {
  background: unset;
  width: 100%;
  height: auto;
  line-height: unset;
}
.pbd-aside .subbox {
  background: unset;
  margin: 0;
  padding: 0;
  line-height: unset;
}
.pbd-aside .haco p {
  margin: 0;
  padding: 0;
  text-align: center;
}
.pbd-aside .haco img {
  margin: 0 auto;
  max-width: 80px;
  width: 100%;
  height: auto;
  font-weight: normal;
}
.pbd-aside .subboxtitle {
  background: #C84E90;
  margin: 20px 0 16px;
  margin: 1.25rem 0 1rem;
  padding: 2px 10px;
  padding: 0.125rem 0.625rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
.pbd-aside .bknumber {
  width: 100%;
  text-decoration: none;
  line-height: unset;
}
@media screen and (max-width: 767px) {
  .pbd-aside .bknumber {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.3125rem 1.5rem;
  }
}
.pbd-aside .bknumber > a {
  display: block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .pbd-aside .bknumber > a {
    width: calc(50% - 0.75rem);
  }
}
.pbd-aside .bknumber > a:nth-of-type(n - 1)::after {
  content: "";
  background: #E3E3E3;
  width: 1px;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: calc(100% + 0.75rem);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .pbd-aside .bknumber > a:nth-of-type(n - 1)::after {
    display: block;
  }
}
.pbd-aside .bknumber > a:last-child::after {
  display: none;
}
.pbd-aside .bknumber > a + a {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .pbd-aside .bknumber > a + a {
    margin: 0;
  }
}
.pbd-aside .eventplateside,
.pbd-aside .eventplateside_t,
.pbd-aside .eventplateside_fu,
.pbd-aside .eventplateside_end {
  background-color: #a52036;
  margin: 4px 0;
  margin: 0.25rem 0;
  padding: 2px 8px;
  padding: 0.125rem 0.5rem;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .pbd-aside .eventplateside,
.pbd-aside .eventplateside_t,
.pbd-aside .eventplateside_fu,
.pbd-aside .eventplateside_end {
    font-size: 0.6875rem;
  }
}
.pbd-aside .eventplateside_t {
  background-color: #39459f;
}
.pbd-aside .eventplateside_fu {
  background-color: #874b4b;
}
.pbd-aside .eventplateside_end {
  background-color: #333333;
}
.pbd-aside .subboxdate {
  margin: 5px auto 0;
  margin: 0.3125rem auto 0;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
}
.pbd-aside .subboxeventname {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
}
@media screen and (max-width: 767px) {
  .pbd-aside .subboxeventname {
    font-size: 0.8125rem;
  }
}

.p-tokuten .p-fv {
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-tokuten .p-fv {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-tokuten .p-fv .section-title__main {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-tokuten .p-fv__img {
    aspect-ratio: 375/128;
    max-height: 8rem;
  }
}

.pt-read {
  background: #B09368;
}

.pt-read__container {
  padding: 40px 0 185px;
  padding: 2.5rem 0 11.5625rem;
}
@media screen and (max-width: 767px) {
  .pt-read__container {
    padding: 2rem 0 10.1875rem;
  }
}

.pt-read__text {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 500;
  color: #fff;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .pt-read__text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.pt-read__link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  padding-right: 33px;
  padding-right: 2.0625rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .pt-read__link {
    font-size: 0.75rem;
  }
}

.pt-read__link::after {
  right: 0;
  background-image: url("../../images/arrow-white.svg");
}

.pt-cat {
  margin-top: -140px;
  margin-top: -8.75rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .pt-cat {
    margin-top: -7.8125rem;
    margin-bottom: 4rem;
  }
}

.pt-cat__container {
  position: relative;
  padding: 40px 64px;
  padding: 2.5rem 4rem;
  background: #fff;
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .pt-cat__container {
    padding: 1.5rem 1.0625rem;
    margin-bottom: 2.5rem;
  }
}

.pt-cat__container::after {
  -webkit-box-shadow: 0 0 1.25rem #ABABAB;
          box-shadow: 0 0 1.25rem #ABABAB;
  mix-blend-mode: multiply;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1;
}

.pt-cat__title {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .pt-cat__title {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
  }
}

.pt-cat__read {
  position: relative;
  z-index: 2;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .pt-cat__read {
    margin-bottom: 0.625rem;
    font-size: 0.5rem;
    font-size: 1rem;
  }
}

.pt-cat__cats {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .pt-cat__cats {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px 8px;
  }
}

.pt-cat__cat {
  font-weight: 500;
  cursor: pointer;
  color: #B09368;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 8px;
  padding: 0.5rem;
  text-align: center;
  border: 1px solid #B09368;
  border-radius: 31.25rem;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  max-width: 180px;
  width: calc(20% - 12.8px);
}
@media screen and (max-width: 767px) {
  .pt-cat__cat {
    max-width: 180px;
    width: calc(50% - 4px);
    padding: 0.125rem 0.25rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  _::-webkit-full-page-media, _:future, :root .pt-cat__cat {
    padding: 0.25rem 0.25rem 0.125rem;
  }
}

.pt-cat__cat:hover {
  color: #fff;
  background: #B09368;
}

.pt-cat__cat.is-selected {
  color: #fff;
  background: #B09368;
}

.pt-cat__bottom {
  text-align: right;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
}

/*
.pt-category {
    margin-bottom: rem(112);
    @include mq{
        margin-bottom: rem(80);
    }
}
*/
.pt-category + .pt-category {
  margin-top: 112px;
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .pt-category + .pt-category {
    margin-top: 4rem;
  }
}

.pt-category + .pt-group {
  margin-top: 112px;
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .pt-category + .pt-group {
    margin-top: 5rem;
  }
}

/*
.pt-category:nth-of-type(2n - 1){
    background: $gray4;
}
*/
@media screen and (max-width: 767px) {
  .pt-category__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/*
.pt-category:nth-of-type(2n - 1) .pt-category__container{
    padding: rem(112) 0 ;
    @include mq{
        padding: rem(64) 0;
    }
}
*/
.pt-category__top {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 767px) {
  .pt-category .pt-category__top {
    display: contents;
  }
}
@media screen and (max-width: 767px) {
  .pt-category .pt-category__main {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 767px) {
  .pt-category .section-title__wrap {
    display: contents;
  }
}
.pt-category .section-title__sub {
  text-transform: unset;
}
@media screen and (max-width: 767px) {
  .pt-category .section-title__sub {
    margin-bottom: 1.5rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 767px) {
  .pt-category .section-title__more {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    font-weight: 700;
  }
}

.pt-category__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 30px;
  gap: 1.5625rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .pt-category__cards {
    margin-bottom: 1.5rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.tokuten-card {
  background: #fff;
  border: 1px solid #D4D4D4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 18px 24px 24px;
  padding: 1.5rem 1.125rem 1.5rem 1.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .tokuten-card {
    display: block;
    padding: 1.5rem;
  }
}

.tokuten-card__img {
  width: 39%;
  aspect-ratio: 230/200;
}
@media screen and (max-width: 767px) {
  .tokuten-card__img {
    aspect-ratio: 280/200;
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

.tokuten-card__img img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .tokuten-card__img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.tokuten-card__body {
  height: 100%;
  width: 61%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 18px;
  padding-left: 1.125rem;
}
@media screen and (max-width: 767px) {
  .tokuten-card__body {
    height: unset;
    width: 100%;
    display: block;
    padding-left: unset;
  }
}

.tokuten-card__title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .tokuten-card__title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
}

.tokuten-card__read {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #B09368;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .tokuten-card__read {
    font-size: 1rem;
    margin-bottom: 0.1875rem;
  }
}

.tokuten-card__discount {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #B09368;
  margin-bottom: 2px;
  margin-bottom: 0.125rem;
}
@media screen and (max-width: 767px) {
  .tokuten-card__discount {
    padding-bottom: 0.625rem;
  }
}

.tokuten-card__discount .number {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  font-family: "sfpro", "Noto Sans JP";
}

.tokuten-card__discount .cash {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  font-family: "sfpro", "Noto Sans JP";
}
@media screen and (max-width: 767px) {
  .tokuten-card__discount .cash {
    font-size: 1.125rem;
    font-family: "Noto Sans JP", "Arial", "Helvetica Neue", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
}

.tokuten-card__text {
  padding-top: 8px;
  padding-top: 0.5rem;
  border-top: 1px solid #E3E3E3;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .tokuten-card__text {
    margin-bottom: 0.3125rem;
  }
}

@media screen and (max-width: 767px) {
  .tokuten-card__text:empty {
    display: none;
  }
}

.tokuten-card__tag {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #B09368;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 700;
  padding: 2px 8px;
  padding: 0.125rem 0.5rem;
}

.pt-group {
  margin-bottom: 112px;
  margin-bottom: 7rem;
  background: #B09368;
}
@media screen and (max-width: 767px) {
  .pt-group {
    margin-bottom: 4rem;
  }
}

.pt-group__container {
  padding: 112px 0 96px;
  padding: 7rem 0 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-left: 25px;
}
@media screen and (max-width: 767px) {
  .pt-group__container {
    padding: 4rem 0 0;
    display: block;
    padding-left: unset;
  }
}

.pt-group__body {
  width: 49%;
  max-width: 650px;
  max-width: 40.625rem;
  padding-right: 12px;
  padding-right: 0.75rem;
}
@media screen and (max-width: 767px) {
  .pt-group__body {
    width: 100%;
    max-width: 37.5rem;
    padding-right: 24px;
    padding-left: 24px;
    margin-inline: auto;
    margin-bottom: 2.5rem;
  }
}

.pt-group__title {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  font-size: 28px;
  font-size: 1.75rem;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .pt-group__title {
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }
}

.pt-group__text {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .pt-group__text {
    margin-bottom: 2rem;
    font-size: 1rem;
  }
}

.pt-group__button {
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  margin-inline: unset;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .pt-group__button {
    max-width: 18.75rem;
    margin-inline: auto;
  }
}

.pt-group__button:hover {
  color: #B09368;
  background: #fff;
  border: 1px solid #B09368;
}

.pt-group__button::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="2" /><feFuncG type="linear" slope="2" /><feFuncB type="linear" slope="2" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(2);
          filter: brightness(2);
  -webkit-transition: 0.4s -webkit-filter ease-in-out;
  transition: 0.4s -webkit-filter ease-in-out;
  transition: 0.4s filter ease-in-out;
  transition: 0.4s filter ease-in-out, 0.4s -webkit-filter ease-in-out;
}

.pt-group__button:hover::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.pt-group__more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  padding-right: 33px;
  padding-right: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .pt-group__more {
    font-size: 0.75rem;
  }
}

.pt-group__more::after {
  right: 0;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="2" /><feFuncG type="linear" slope="2" /><feFuncB type="linear" slope="2" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(2);
          filter: brightness(2);
}

.pt-group__img {
  width: 51%;
}
@media screen and (max-width: 767px) {
  .pt-group__img {
    width: 100%;
  }
}

.pt-contact {
  margin-bottom: 140px;
  margin-bottom: 8.75rem;
}
@media screen and (max-width: 767px) {
  .pt-contact {
    margin-bottom: unset;
  }
}

@media screen and (max-width: 767px) {
  .pt-contact__inner {
    padding: unset;
  }
}

.pt-contact__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .pt-contact__items {
    display: block;
  }
}

.pt-contact__item {
  padding: 24px 44px;
  padding: 1.5rem 2.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .pt-contact__item {
    max-width: 37.5rem;
    margin-inline: auto;
    padding: 1.5rem;
  }
}

.pt-contact__item--tel {
  background: rgba(176, 147, 104, .1);
}

.pt-contact__item--detail {
  background: rgba(200, 78, 144, .1);
}

.pt-contact__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 8px 40px;
  padding: 0.5rem 2.5rem;
  border-radius: 12.5rem;
  color: #fff;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .pt-contact__title {
    width: 100%;
    padding: 0.5rem 1.75rem;
    font-size: 1.125rem;
  }
}

.pt-contact__item--tel > .pt-contact__title {
  background: #B09368;
}

.pt-contact__item--detail > .pt-contact__title {
  background: #C84E90;
}

.pt-contact__texts {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .pt-contact__texts {
    display: block;
    margin-bottom: unset;
  }
}

.pt-contact__middle {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 2px;
  margin-bottom: 0.125rem;
}
@media screen and (max-width: 767px) {
  .pt-contact__middle {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
}

.pt-contact__text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .pt-contact__text {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

.pt-contact__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  gap: 0.4375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .pt-contact__link {
    gap: 0.375rem;
  }
}

.pt-contact__item--tel .pt-contact__link-icon {
  aspect-ratio: 30/24;
  width: 30px;
  width: 1.875rem;
}

.pt-contact__item--detail .pt-contact__link-icon {
  aspect-ratio: 1;
  width: 26px;
  width: 1.625rem;
}

.pt-contact__link-text {
  font-weight: 700;
}

.pt-contact__item--tel .pt-contact__link-text {
  color: #B09368;
  font-family: "sfpro", "Noto Sans JP";
  font-size: 32px;
  font-size: 2rem;
}

.pt-contact__item--detail .pt-contact__link-text {
  color: #C84E90;
  font-size: 28px;
  font-size: 1.75rem;
  font-family: "Noto Sans JP", "Arial", "Helvetica Neue", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media screen and (max-width: 767px) {
  .pt-contact__item--detail .pt-contact__link-text {
    font-size: 1.25rem;
  }
}

.pt-contact__mail {
  background: #B09368;
  color: #fff;
  padding: 16px;
  padding: 1rem;
  -webkit-transition: 0.4s ease-in-out all;
  transition: 0.4s ease-in-out all;
}

.pt-contact__mail:hover {
  color: #B09368;
  background: #fff;
}

.pp-read {
  margin-bottom: 112px;
  margin-bottom: 7rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #B09368), color-stop(23.75rem, transparent));
  background: linear-gradient(#B09368 0 23.75rem, transparent 23.75rem 100%);
}
@media screen and (max-width: 767px) {
  .pp-read {
    margin-bottom: 4rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #B09368), color-stop(26.25rem, transparent));
    background: linear-gradient(#B09368 0 26.25rem, transparent 26.25rem 100%);
  }
}
.pp-read__container {
  padding-top: 40px;
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .pp-read__container {
    padding-top: 2rem;
  }
}
.pp-read__title {
  text-align: center;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .pp-read__title {
    font-size: 1.25rem;
  }
}
.pp-read__text {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .pp-read__text {
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }
}
.pp-read__attention {
  text-align: center;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .pp-read__attention {
    margin-bottom: 2.5rem;
    font-size: 0.8125rem;
  }
}
.pp-read__content {
  background: #fff;
  position: relative;
  padding: 42px 50px 36px;
  padding: 2.625rem 3.125rem 2.25rem;
}
@media screen and (max-width: 767px) {
  .pp-read__content {
    padding: 2rem 1.25rem 1.75rem;
  }
}
.pp-read__content::after {
  pointer-events: none;
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 1.25rem #E3E3E3;
          box-shadow: 0 0 1.25rem #E3E3E3;
  z-index: 1;
  background: #fff;
  mix-blend-mode: multiply;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .pp-read__content::after {
    -webkit-box-shadow: 0px 0px 20px #ABABAB;
            box-shadow: 0px 0px 20px #ABABAB;
  }
}
.pp-read__content--header {
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.pp-read__content--header img {
  margin: 0 auto;
  max-width: 160px;
  max-width: 10rem;
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}
.pp-read__content--header p {
  margin: 0 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 16px 2px;
  padding: 0.25rem 1rem 0.125rem;
  min-height: 37px;
  min-height: 2.3125rem;
  background: #B09368;
  border-radius: 1.875rem;
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
  color: #fff;
  position: relative;
  top: -19px;
  top: -1.1875rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .pp-read__content--header p {
    max-width: 25rem;
    width: 100%;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4444444444;
  }
}
.pp-read__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px 54px;
  gap: 1.25rem 3.375rem;
}
@media screen and (max-width: 767px) {
  .pp-read__cards {
    grid-template-columns: 1fr 1fr;
    gap: 1.3125rem 1.5rem;
  }
}
.pp-read__card {
  position: relative;
}
@media screen and (max-width: 767px) {
  .pp-read__card {
    min-height: unset;
  }
}
.pp-read__card:nth-of-type(n - 1)::after {
  content: "";
  display: block;
  position: absolute;
  left: calc(100% + 1.6875rem);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  width: 1px;
  height: 100%;
  background: #E3E3E3;
}
@media screen and (max-width: 767px) {
  .pp-read__card:nth-of-type(n - 1)::after {
    display: none;
  }
}
.pp-read__card:last-child::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .pp-read__card:nth-child(odd)::after {
    left: calc(100% + 0.75rem);
    display: block;
  }
}

.pp-lists__items {
  margin-top: 56px;
  margin-top: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px 25px;
  gap: 1.5rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .pp-lists__items {
    margin-top: 2.5rem;
    gap: 1rem;
  }
}
.pp-lists__item {
  background: #fff;
  border: 1px solid #D4D4D4;
  -webkit-box-shadow: 0 0 1.875rem #D9D9D9;
          box-shadow: 0 0 1.875rem #D9D9D9;
  padding: 24px;
  padding: 1.5rem;
  width: calc(33.33333% - 1.04167rem);
  display: none;
}
@media screen and (max-width: 767px) {
  .pp-lists__item {
    padding: 1rem;
    width: 100%;
  }
}
.pp-lists__item:hover {
  background: rgba(217, 217, 217, .3);
}
.pp-lists__item__visual {
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pp-lists__item__visual img {
  margin: 0 auto;
  max-width: 100%;
  width: auto;
  height: 205px;
  height: 12.8125rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .pp-lists__item__visual img {
    width: 100%;
    height: auto;
  }
}
.pp-lists__item__title {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 32/22;
  color: #333;
}
@media screen and (max-width: 767px) {
  .pp-lists__item__title {
    margin-top: 0.5rem;
    font-size: 1.125rem;
  }
}
.pp-lists__item__text {
  margin-top: 4px;
  margin-top: 0.25rem;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #B09368;
}
@media screen and (max-width: 767px) {
  .pp-lists__item__text {
    font-size: 1rem;
  }
}
.pp-lists__item__points {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 17/12;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
  gap: 0.25rem;
}
.pp-lists__item__points span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 2px 10px 1px;
  padding: 0.125rem 0.625rem 0.0625rem;
  height: 25px;
  height: 1.5625rem;
  color:#000000;
  background: #fff;
  border: 1px solid #000;
}
.pp-lists__item__points span.leisure {
  border-color: #56B790;
  background: #56B790;
  color: #fff;
}
.pp-lists__item__points span.shopping {
  border-color: #C2A25D;
  background: #C2A25D;
  color: #fff;
}
.pp-lists__item__points span.gourmet {
  border-color: #E0707D;
  background: #E0707D;
  color: #fff;
}
.pp-lists__item__points span.life {
  border-color: #5B7E55;
  background: #5B7E55;
  color: #fff;
}
.pp-lists__item__points span.school {
  border-color: #6287CC;
  background: #6287CC;
  color: #fff;
}
.pp-lists__item__points span.culture {
  border-color: #AE7ECC;
  background: #AE7ECC;
  color: #fff;
}
.pp-lists__item__points span.tokyu-land {
  border-color: #5AA678;
  background: #5AA678;
  color: #fff;
}
.pp-lists__item__points span.livable {
  border-color: #50598D;
  background: #50598D;
  color: #fff;
}
.pp-lists__item__points span.tokyu-re-design {
  border-color: #18683D;
  background: #18683D;
  color: #fff;
}
.pp-lists__item__points span.tokyu-nasic {
  border-color: #B92A2A;
  background: #B92A2A;
  color: #fff;
}

.pp-lists {
  padding-top: 64px;
  padding-top: 4rem;
  padding-bottom: 112px;
  padding-bottom: 7rem;
  background-color: #F8ECD9;
}
@media screen and (max-width: 767px) {
  .pp-lists {
    padding-top: 4rem;
    padding-bottom: 1.5rem;
  }
}
.pp-lists__top {
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .pp-lists__top {
    margin-bottom: 1.5rem;
  }
}
.pp-lists__select {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 5px solid #B09368;
  border-bottom: 0.3125rem solid #B09368;
}
.pp-lists__type {
  cursor: pointer;
  color: #fff;
  background: #D9D9D9;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  padding: 16px 32px;
  padding: 1rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .pp-lists__type {
    padding: 0.625rem 0.5rem 0.3125rem;
  }
}
.pp-lists__type-title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .pp-lists__type-title {
    font-size: 1rem;
    font-weight: 700;
  }
}
.pp-lists__type:nth-of-type(2) .pp-lists__type-title {
  text-align: center;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .pp-lists__type:nth-of-type(2) .pp-lists__type-title {
    width: unset;
    text-align: left;
  }
}
.pp-lists__type.is-active {
  color: #B09368;
  background: #fff;
}
.pp-lists__contents {
  background-color: #fff;
  display: none;
  margin-bottom: 64px;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .pp-lists__contents {
    margin-bottom: 2.5rem;
  }
}
.pp-lists__contents_1 {
  display: block;
}
.pp-lists__content {
  background: #fff;
  padding: 32px 40px 40px;
  padding: 2rem 2.5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .pp-lists__content {
    padding: 1.5rem 0.875rem 1.5rem;
  }
}
.pp-lists__search-title {
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.6;
  color: #333;
}
@media screen and (max-width: 767px) {
  .pp-lists__search-title {
    font-size: 1.25rem;
  }
}
.pp-lists__search-select {
  margin-top: 24px;
  margin-top: 1.5rem;
  /*--background: #FAFAFA;--*/
  /*--padding: 40px 40px 52px;
  padding: 2.5rem 2.5rem 3.25rem;--*/
}
@media screen and (max-width: 767px) {
  .pp-lists__search-select {
    margin-top: 1rem;
    /*--padding: 1rem 0.5rem 1.5rem;--*/
  }
}
.pp-lists__search-select__title {
  font-weight: 500;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #333;
}
* + .pp-lists__search-select__title {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  * + .pp-lists__search-select__title {
    margin-top: 1.5625rem;
  }
}
.pp-lists__search-select ul {
  margin-top: 4px;
  margin-top: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 16px;
  gap: 1.25rem 1rem;
}
@media screen and (max-width: 767px) {
  .pp-lists__search-select ul {
    margin-top: 0.5rem;
    gap: 1rem;
  }
}
.pp-lists__search-select ul li {
  max-width: 210px;
  max-width: 13.125rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .pp-lists__search-select ul li {
    max-width: calc(50% - 0.5rem);
  }
}
.pp-lists__search-select ul li label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 8px;
  padding: 0.5rem;
  background: #FFFFFF;
  border: 1px solid #B09368;
  border-radius: 1.875rem;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #B09368;
}
@media screen and (max-width: 767px) {
  .pp-lists__search-select ul li label {
    padding: 0.5rem 0.75rem 0.375rem;
    font-size: 0.875rem;
  }
}
.pp-lists__search-select ul li input:checked + label {
  background: #B09368;
  color: #fff;
}
.pp-lists__items.area-all.category-all .pp-lists__item {
  display: block;
}
.pp-lists__items.area-all.category-leisure .pp-lists__item.leisure, .pp-lists__items.area-all.category-shopping .pp-lists__item.shopping, .pp-lists__items.area-all.category-gourmet .pp-lists__item.gourmet, .pp-lists__items.area-all.category-life .pp-lists__item.life, .pp-lists__items.area-all.category-school .pp-lists__item.school, .pp-lists__items.area-all.category-culture .pp-lists__item.culture {
  display: block;
}
.pp-lists__items.area-capital.category-all .pp-lists__item.capital {
  display: block;
}
.pp-lists__items.area-capital.category-leisure .pp-lists__item.capital.leisure, .pp-lists__items.area-capital.category-shopping .pp-lists__item.capital.shopping, .pp-lists__items.area-capital.category-gourmet .pp-lists__item.capital.gourmet, .pp-lists__items.area-capital.category-life .pp-lists__item.capital.life, .pp-lists__items.area-capital.category-school .pp-lists__item.capital.school, .pp-lists__items.area-capital.category-culture .pp-lists__item.capital.culture {
  display: block;
}
.pp-lists__items.area-kansai.category-all .pp-lists__item.kansai {
  display: block;
}
.pp-lists__items.area-kansai.category-leisure .pp-lists__item.kansai.leisure, .pp-lists__items.area-kansai.category-shopping .pp-lists__item.kansai.shopping, .pp-lists__items.area-kansai.category-gourmet .pp-lists__item.kansai.gourmet, .pp-lists__items.area-kansai.category-life .pp-lists__item.kansai.life, .pp-lists__items.area-kansai.category-school .pp-lists__item.kansai.school, .pp-lists__items.area-kansai.category-culture .pp-lists__item.kansai.culture {
  display: block;
}
.pp-lists__items.area-etc.category-all .pp-lists__item.etc {
  display: block;
}
.pp-lists__items.area-etc.category-leisure .pp-lists__item.etc.leisure, .pp-lists__items.area-etc.category-shopping .pp-lists__item.etc.shopping, .pp-lists__items.area-etc.category-gourmet .pp-lists__item.etc.gourmet, .pp-lists__items.area-etc.category-life .pp-lists__item.etc.life, .pp-lists__items.area-etc.category-school .pp-lists__item.etc.school, .pp-lists__items.area-etc.category-culture .pp-lists__item.etc.culture {
  display: block;
}

.pp-lists__contents .p-ab-items {
  margin: 40px 0 0;
  margin: 2.5rem 0 0;
}

.pp-purchase-benefits__read {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 80px;
  gap: 0 5rem;
}
@media screen and (max-width: 767px) {
  .pp-purchase-benefits__read {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem 0;
  }
}
.pp-purchase-benefits__read--text {
  width: calc(100% - 42.5rem);
}
@media screen and (max-width: 767px) {
  .pp-purchase-benefits__read--text {
    width: 100%;
  }
}
.pp-purchase-benefits__read--visual {
  width: 600px;
  width: 37.5rem;
}
@media screen and (max-width: 767px) {
  .pp-purchase-benefits__read--visual {
    width: 100%;
  }
}
.pp-purchase-benefits__read--visual img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}
.pp-purchase-benefits__read--text h4 {
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.6;
  color: #B09368;
}
@media screen and (max-width: 767px) {
  .pp-purchase-benefits__read--text h4 {
    font-size: 1.25rem;
  }
}
.pp-purchase-benefits__read--text p {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #333;
}
@media screen and (max-width: 767px) {
  .pp-purchase-benefits__read--text p {
    font-size: 1rem;
  }
}
.pp-purchase-benefits__read__more.more-button {
  margin: 24px 0 0;
  margin: 1.5rem 0 0;
  background: #B09368;
  color: #fff;
  border: unset;
}
@media screen and (max-width: 767px) {
  .pp-purchase-benefits__read__more.more-button {
    margin-top: 1rem;
  }
}
.pp-purchase-benefits__read__more.more-button::after {
  background-image: url("../../images/arrow-brown.svg");
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="2" /><feFuncG type="linear" slope="2" /><feFuncB type="linear" slope="2" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(2);
          filter: brightness(2);
}
.pp-purchase-benefits__read__more.more-button:hover {
  border: solid 1px #B09368;
  background: #fff;
  color: #B09368;
}
.pp-purchase-benefits__read__more.more-button:hover::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(1);
          filter: brightness(1);
}
.pp-purchase-benefits__example {
  background: #F8ECD9;
  border: 4px solid #B09368;
  margin-top: 80px;
  margin-top: 5rem;
  padding: 36px 56px 56px;
  padding: 2.25rem 3.5rem 3.5rem;
}
@media screen and (max-width: 767px) {
  .pp-purchase-benefits__example {
    border-width: 2px;
    margin-top: 2.5rem;
    padding: 1.25rem 0.5rem 0.5rem;
  }
}
.pp-purchase-benefits__example h4 {
  font-weight: 700;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.425;
  text-align: center;
  color: #B09368;
}
@media screen and (max-width: 767px) {
  .pp-purchase-benefits__example h4 {
    font-size: 1.25rem;
  }
}
.pp-purchase-benefits__example--notes {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  color: #000;
}
@media screen and (max-width: 767px) {
  .pp-purchase-benefits__example--notes {
    margin-top: 0.9375rem;
    font-size: 0.75rem;
  }
}
.pp-purchase-benefits__items {
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1.125rem;
}
@media screen and (max-width: 767px) {
  .pp-purchase-benefits__items {
    margin-top: 0.75rem;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0.5rem;
  }
}
.pp-purchase-benefits__item {
  background: #fff;
  border: 1px solid #D4D4D4;
}
.pp-purchase-benefits__item__visual {
  border-bottom: 1px solid #D4D4D4;
  position: relative;
  overflow: hidden;
}
.pp-purchase-benefits__item__visual img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}
.pp-purchase-benefits__item__details {
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .pp-purchase-benefits__item__details {
    padding: 0.25rem 0.5rem 0.375rem;
  }
}
.pp-purchase-benefits__item__title {
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #333;
}
@media screen and (max-width: 767px) {
  .pp-purchase-benefits__item__title {
    min-height: 2.45rem;
    margin-top: 0.5rem;
    font-size: 0.875rem;
  }
}
.pp-purchase-benefits__item:nth-child(n+4) .pp-purchase-benefits__item__title {
  min-height: 56px;
  min-height: 3.5rem;
}
@media screen and (max-width: 767px) {
  .pp-purchase-benefits__item:nth-child(n+4) .pp-purchase-benefits__item__title {
    min-height: unset;
  }
}
.pp-purchase-benefits__item__text {
  margin-top: 4px;
  margin-top: 0.25rem;
  color: #B09368;
}
.pp-purchase-benefits__item__text--aside {
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  display: block;
}
@media screen and (max-width: 767px) {
  .pp-purchase-benefits__item__text--aside {
    font-size: 0.75rem;
  }
}
.pp-purchase-benefits__item__text--main {
  margin-top: 2px;
  margin-top: 0.125rem;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3888888889;
  display: block;
}
@media screen and (max-width: 767px) {
  .pp-purchase-benefits__item__text--main {
    font-size: 0.875rem;
  }
}
.pp-purchase-benefits__item__text .large {
  font-weight: 700;
  font-size: 27px;
  font-size: 1.6875rem;
  line-height: 1.1851851852;
}
@media screen and (max-width: 767px) {
  .pp-purchase-benefits__item__text .large {
    font-size: 1.125rem;
  }
}
.pp-purchase-benefits__item__notes {
  border-top: 1px solid #E3E3E3;
  margin-top: 4px;
  margin-top: 0.25rem;
  padding: 4px 0 0;
  padding: 0.25rem 0 0;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #333;
}
@media screen and (max-width: 767px) {
  .pp-purchase-benefits__item__notes {
    font-size: 0.6875rem;
  }
}
.pp-purchase-benefits__item__type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-top: 4px;
  margin-top: 0.25rem;
  padding: 2px 10px 1px;
  padding: 0.125rem 0.625rem 0.0625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 25px;
  height: 1.5625rem;
  background: #B09368;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 17/12;
}
@media screen and (max-width: 767px) {
  .pp-purchase-benefits__item__type {
    height: 1.125rem;
    font-size: 0.625rem;
  }
}
.pp-purchase-benefits__more.more-button {
  margin: 24px auto 0;
  margin: 1.5rem auto 0;
  background: #B09368;
  color: #fff;
  border: unset;
}
@media screen and (max-width: 767px) {
  .pp-purchase-benefits__more.more-button {
    margin-top: 1rem;
  }
}
.pp-purchase-benefits__more.more-button::after {
  background-image: url("../../images/arrow-brown.svg");
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="2" /><feFuncG type="linear" slope="2" /><feFuncB type="linear" slope="2" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(2);
          filter: brightness(2);
}
.pp-purchase-benefits__more.more-button:hover {
  border: solid 1px #B09368;
  background: #fff;
  color: #B09368;
}
.pp-purchase-benefits__more.more-button:hover::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.p-signup__fv {
  margin-bottom: 112px;
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .p-signup__fv {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-signup__fv .p-fv__img {
    aspect-ratio: 375/128;
  }
}
@media screen and (max-width: 767px) {
  .p-signup__fv .section-title__main {
    font-size: 1.375rem;
  }
}

.ps-procedure {
  margin-bottom: 114px;
  margin-bottom: 7.125rem;
}
@media screen and (max-width: 767px) {
  .ps-procedure {
    margin-bottom: 4rem;
  }
}

.ps-procedure__title {
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .ps-procedure__title {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
  }
}

.ps-procedure__contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  gap: 6.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ps-procedure__contents {
    display: block;
  }
}

.ps-procedure__content {
  background: #F1E9DD;
  padding: 32px 24px 40px;
  padding: 2rem 1.5rem 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .ps-procedure__content {
    padding: 1.5rem 1.0625rem;
    display: block;
  }
}

.ps-procedure__content-step {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-transform: uppercase;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "sfpro", "Noto Sans JP";
  font-weight: 700;
  color: #B09368;
}
@media screen and (max-width: 767px) {
  .ps-procedure__content-step {
    font-size: 1rem;
  }
}

.ps-procedure__content-step span {
  font-size: 48px;
  font-size: 3rem;
  vertical-align: middle;
  margin-left: 3px;
  margin-left: 0.1875rem;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  display: inline-block;
  color: #B09368;
  font-family: "sfpro", "Noto Sans JP";
}
@media screen and (max-width: 767px) {
  .ps-procedure__content-step span {
    font-size: 1.875rem;
  }
}

.ps-procedure__content-name {
  font-size: 28px;
  font-size: 1.75rem;
  color: #B09368;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ps-procedure__content-name {
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }
}

.ps-procedure__content-img {
  max-width: 210px;
  max-width: 13.125rem;
  aspect-ratio: 210/131;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .ps-procedure__content-img {
    max-width: 8.875rem;
    margin-bottom: 1rem;
  }
}

.ps-procedure__content-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .ps-procedure__content-text {
    font-size: 1rem;
    -webkit-box-flex: unset;
        -ms-flex-positive: unset;
            flex-grow: unset;
    margin-bottom: 1rem;
  }
}

.ps-procedure__content-text span {
  color: #FF0000;
}

.ps-procedure__content-button {
  background: #B09368;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 30px 24px;
  padding: 1.875rem 1.5rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .ps-procedure__content-button {
    min-width: unset;
    margin-bottom: 1rem;
    font-size: 1rem;
    padding: 0.875rem 0.875rem;
  }
}

.ps-procedure__content-button:hover {
  background: #fff;
  color: #B09368;
}

.ps-procedure__content-button::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="2" /><feFuncG type="linear" slope="2" /><feFuncB type="linear" slope="2" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(2);
          filter: brightness(2);
}

.ps-procedure__content-button:hover::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.ps-procedure__content-more {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #B09368;
  text-decoration: underline;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: block;
}

.ps-procedure__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 30px;
  width: 1.875rem;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .ps-procedure__arrow {
    position: unset;
    -webkit-transform: unset;
            transform: unset;
    width: 3.3125rem;
    aspect-ratio: 53/30;
    margin: 0.5rem auto;
  }
}

.ps-flow {
  background: #F8ECD9;
}

.ps-flow__container {
  padding: 112px 0;
  padding: 7rem 0;
}
@media screen and (max-width: 767px) {
  .ps-flow__container {
    padding: 4rem 0;
  }
}

.ps-flow__register {
  margin-bottom: 112px;
  margin-bottom: 7rem;
  background: #C84E90;
  color: #fff;
  min-width: 622px;
  min-width: 38.875rem;
  display: none;
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .ps-flow__register {
    font-size: 1rem;
    min-width: unset;
    margin-bottom: unset;
    width: calc(100% - 1.75rem);
  }
}

.ps-flow__register--mu {
  margin-bottom: unset;
}

.ps-flow__register--1 {
  display: block;
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .ps-flow__register--1 {
    padding: 0.8125rem 1rem;
  }
}

.ps-flow__register--2 {
  display: none;
}

.ps-flow__register::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="3" /><feFuncG type="linear" slope="3" /><feFuncB type="linear" slope="3" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(3);
          filter: brightness(3);
  background: url("../../images/arrow-pink.svg");
  background-repeat: no-repeat;
}

.ps-flow__register:hover {
  background: #fff;
  color: #C84E90;
  border: 1px solid #C84E90;
}

.ps-flow__register:hover::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.ps-flow__register--trans {
  font-size: 22px;
  font-size: 1.375rem;
  background: #fff;
  border: 1px solid #C84E90;
  padding: 15px 20px 15px;
  padding: 0.9375rem 1.25rem 0.9375rem;
  -webkit-transition: all ease-out 0.4s;
  transition: all ease-out 0.4s;
}
@media screen and (max-width: 767px) {
  .ps-flow__register--trans {
    font-size: 1rem;
    padding: 0.875rem 2.8125rem 0.75rem 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .ps-flow__register--trans::after {
    right: 0.75rem;
    width: 1.375rem;
    background-size: contain;
  }
}

.ps-flow__register--trans:hover {
  color: #fff;
  background: #C84E90;
  border: 1px solid #C84E90;
}

.ps-flow__register--trans:hover span {
  color: #fff;
}

.ps-flow__register--trans::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(1);
          filter: brightness(1);
  background-image: url("../../images/arrow-pink.svg");
}

.ps-flow__register--trans:hover::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="3" /><feFuncG type="linear" slope="3" /><feFuncB type="linear" slope="3" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(3);
          filter: brightness(3);
}

.ps-flow__register--trans {
  text-align: center;
  color: #C84E90;
}

.ps-flow__register--trans span {
  display: block;
  color: #333333;
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 1px;
  margin-bottom: 0.0625rem;
  -webkit-transition: all ease-out 0.4s;
  transition: all ease-out 0.4s;
}
@media screen and (max-width: 767px) {
  .ps-flow__register--trans span {
    font-size: 1rem;
  }
}

.ps-flow__select {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 5px solid #B09368;
}

.ps-flow__step {
  cursor: pointer;
  color: #fff;
  background: #D9D9D9;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  padding: 16px 32px;
  padding: 1rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .ps-flow__step {
    display: block;
    padding: 0.625rem 0.5rem 0.3125rem;
  }
}

.ps-flow__step:nth-of-type(2) .ps-flow__step-name {
  text-align: center;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .ps-flow__step:nth-of-type(2) .ps-flow__step-name {
    width: 100%;
    text-align: left;
  }
}

.ps-flow__step.is-active {
  color: #B09368;
  background: #fff;
}

.ps-flow__step-number {
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  font-family: "sfpro", "Noto Sans JP";
  text-align: center;
  margin-right: 24px;
  margin-right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .ps-flow__step-number {
    text-align: left;
    font-weight: 500;
    margin-right: unset;
    font-size: 1rem;
  }
}

.ps-flow__step-number span {
  -webkit-transform: translateX(-0.125rem);
          transform: translateX(-0.125rem);
  text-align: center;
  line-height: 1;
  font-size: 28px;
  font-size: 1.75rem;
  font-family: "sfpro", "Noto Sans JP";
  font-weight: 700;
  display: block;
}
@media screen and (max-width: 767px) {
  .ps-flow__step-number span {
    display: inline-block;
    font-size: 1.5rem;
    margin-left: 0.3125rem;
  }
}

.ps-flow__step-name {
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  .ps-flow__step-name {
    font-size: 1rem;
    font-weight: 700;
  }
}

.ps-flow__contents {
  background-color: #fff;
  display: none;
  margin-bottom: 64px;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .ps-flow__contents {
    margin-bottom: 2.5rem;
  }
}

.js-contents1 {
  display: block;
}

.ps-flow__content {
  background: #fff;
  padding: 32px 48px 40px;
  padding: 2rem 3rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .ps-flow__content {
    padding: 1.5rem 0.875rem 1.5rem;
  }
}

.ps-flow__content:last-of-type {
  margin-bottom: unset;
  padding-bottom: 88px;
  padding-bottom: 5.5rem;
}
@media screen and (max-width: 767px) {
  .ps-flow__content:last-of-type {
    padding-bottom: 1.5rem;
  }
}

.ps-flow__content-name {
  margin-bottom: 32px;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .ps-flow__content-name {
    margin-bottom: 1.125rem;
    padding-bottom: 0.5rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
  }
}

.ps-flow__content-name .text {
  display: block;
  white-space: nowrap;
  font-size: 28px;
  font-size: 1.75rem;
  color: #B09368;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .ps-flow__content-name .text {
    max-width: calc(100% - 3rem);
    font-size: 1.25rem;
    white-space: unset;
  }
}

.ps-flow__content-name .number {
  background-color: #B09368;
  border-radius: 3rem;
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  color: #fff;
  font-family: "sfpro", "Noto Sans JP";
  font-size: 33px;
  font-size: 2.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ps-flow__content-name .number {
    width: 2rem;
    height: 2rem;
    font-size: 1.375rem;
    line-height: 1;
  }
}

.ps-flow__content-wrap {
  min-height: 478px;
  min-height: 29.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: calc(100% - 6.25rem);
  margin-inline: auto;
  padding: 40px 36px;
  padding: 2.5rem 2.25rem;
  border-radius: 1.875rem;
  border: 1px solid #B09368;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .ps-flow__content-wrap {
    margin-bottom: 2.875rem;
    width: 100%;
    min-height: unset;
    display: block;
    padding: 1.5rem 1.5rem 1rem;
    border-radius: 0.9375rem;
  }
}

.ps-flow__content-wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  aspect-ratio: 2/1;
  width: 60px;
  width: 3.75rem;
  background-image: url("../../images/arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .ps-flow__content-wrap::after {
    background-size: cover;
    aspect-ratio: 53/30;
    background-image: url("../../images/arrow-sp.png");
    width: 3.3125rem;
    top: calc(100% + 0.5rem);
  }
}

.ps-flow__content-wrap:last-of-type {
  margin-bottom: unset;
}

.ps-flow__content-wrap:last-of-type::after {
  display: none;
}

.ps-flow__content-text {
  margin-bottom: 16px;
  margin-bottom: 1rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .ps-flow__content-text {
    margin-bottom: unset;
  }
}

.ps-flow__content-img {
  max-width: 890px;
  max-width: 55.625rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .ps-flow__content-img {
    width: calc(100% - 1rem);
    max-width: 21.25rem;
  }
}

.ps-flow__content-img--large {
  max-width: 1000px;
  max-width: 62.5rem;
}

.ps__link .link__container {
  border: unset;
}

.f-buttons {
  position: fixed;
  z-index: 50;
  bottom: 25px;
  bottom: 1.5625rem;
  right: 10px;
  right: 0.625rem;
}
@media screen and (max-width: 767px) {
  .f-buttons {
    margin-inline: auto;
    position: static;
    bottom: unset;
    left: unset;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    max-width: 20.4375rem;
    width: calc(100% - 48px);
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0.6875rem;
  }
}

.f-buttons__item {
  max-width: 180px;
  max-width: 11.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 32px 10px 18px;
  padding: 0.625rem 2rem 0.625rem 1.125rem;
  height: 60px;
  height: 3.75rem;
}
@media screen and (max-width: 767px) {
  .f-buttons__item {
    max-width: unset;
    padding: 0.625rem 1.75rem 0.625rem 0.5rem;
    height: 3.125rem;
  }
}

.f-buttons__item::after {
  right: 11px;
  right: 0.6875rem;
  width: 12px;
  width: 0.75rem;
  height: 4px;
  height: 0.25rem;
  aspect-ratio: unset;
}
@media screen and (max-width: 767px) {
  .f-buttons__item::after {
    right: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .f-buttons__item:nth-of-type(1) {
    grid-area: 1/1/2/2;
  }
}

@media screen and (max-width: 767px) {
  .f-buttons__item:nth-of-type(2) {
    grid-area: 1/2/2/3;
  }
}

@media screen and (max-width: 767px) {
  .f-buttons__item:nth-of-type(3) {
    grid-area: 2/1/3/3;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0.625rem 1.25rem 0.625rem 0.5rem;
    margin-top: -1px;
  }
}

.f-buttons__item--login {
  background: #B09368;
}

.f-buttons__item--beginner {
  background: #fff;
  border: 1px solid #B09368;
}

.f-buttons__item--login::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="2" /><feFuncG type="linear" slope="2" /><feFuncB type="linear" slope="2" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(2);
          filter: brightness(2);
}

.f-buttons__item--login .f-buttons__icon {
  width: 20px;
  width: 1.25rem;
  aspect-ratio: 20/24;
  margin-left: 4px;
  margin-left: 0.25rem;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="2" /><feFuncG type="linear" slope="2" /><feFuncB type="linear" slope="2" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(2);
          filter: brightness(2);
}

.f-buttons__item--beginner .f-buttons__icon {
  width: 20px;
  width: 1.25rem;
  aspect-ratio: 16/24;
}

.f-buttons__icon img {
  -o-object-fit: contain;
     object-fit: contain;
}

.f-buttons__text {
  padding-left: 7px;
  padding-left: 0.4375rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  line-height: 1;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}

.f-buttons__item--login .f-buttons__text {
  color: #fff;
}

.f-buttons__item--beginner .f-buttons__text {
  color: #B09368;
}

.f-buttons__text span {
  line-height: 1;
  display: block;
  margin-top: 3px;
  margin-top: 0.1875rem;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .f-buttons__text span {
    font-size: 0.6875rem;
  }
}

.f-buttons__text .f-buttons__text--inner {
  margin: 0 auto;
  text-align: left;
  display: inline-block;
}

.fv {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .fv {
    margin-bottom: 2.3125rem;
  }
}

.fv__container {
  padding: 65px 0 0;
  padding: 4.0625rem 0 0;
}
@media screen and (max-width: 767px) {
  .fv__container {
    padding-top: 2.5rem;
  }
}

.fv__swiper {
  padding-bottom: 23px;
  padding-bottom: 1.4375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fv__swiper {
    padding-bottom: unset;
  }
}

.fv .swiper {
  overflow: unset;
}

.fv__buttons {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 505px;
  width: 31.5625rem;
  height: 395px;
  height: 24.6875rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .fv__buttons {
    height: 14.0625rem;
    width: 20.4375rem;
  }
}

.fv__button {
  position: absolute;
  top: 50%;
}
@media screen and (max-width: 767px) {
  .fv__button {
    top: 60%;
  }
}

.fv .swiper-button--prev {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.fv .swiper-button--next {
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.fv__items {
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .fv__items {
    margin-bottom: unset;
  }
}

.fv__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fv .swiper-slide {
  width: 376px;
  width: 23.5rem;
  height: unset;
  margin: 0 44px;
  margin: 0 2.75rem;
}
@media screen and (max-width: 767px) {
  .fv .swiper-slide {
    width: 13.4375rem;
    margin: 0 0.75rem;
  }
}

.fv__item-img {
  aspect-ratio: 376/395;
}
@media screen and (max-width: 767px) {
  .fv__item-img {
    aspect-ratio: 215/225;
  }
}

.fv__item-body {
  background: #333333;
  padding: 8px 10px 4px;
  padding: 0.5rem 0.625rem 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .fv__item-body {
    padding: 0.3125rem 0.5rem 0.1875rem;
  }
}

.fv__item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  gap: 0.4375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .fv__item-top {
    margin-bottom: 0.125rem;
    display: block;
  }
}

.fv__item-number {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .fv__item-number {
    font-size: 0.75rem;
  }
}

.fv__item-category {
  background: #fff;
  padding: 1px 16px;
  padding: 1px 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .fv__item-category {
    display: none;
  }
}

.fv__item-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .fv__item-middle {
    margin-bottom: 0.125rem;
  }
}

.fv__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  word-break: break-all;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 767px) {
  .fv__item-title {
    font-size: 0.9375rem;
    line-height: 1.4;
  }
}

.fv__item-text {
  font-size: 0;
  position: relative;
  padding-right: 31px;
  padding-right: 1.9375rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.fv__item-text::before {
  content: "詳しく見る";
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #B09368;
  margin-right: 4px;
  margin-right: 0.25rem;
}
@media screen and (max-width: 767px) {
  .fv__item-text::before {
    font-size: 0.75rem;
  }
}

.fv__item-text::after {
  aspect-ratio: 25/5;
  right: 0px;
  right: 0rem;
  height: 6px;
  height: 0.375rem;
}
@media screen and (max-width: 767px) {
  .fv__item-text::after {
    height: 0.3125rem;
  }
}

.fv__page {
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .fv__page {
    display: none;
  }
}

.fv__swiper .swiper-pagination-bullet {
  display: inline-block;
  width: 64px;
  width: 4rem;
  height: 3px;
  height: 0.1875rem;
  background: #D9D9D9;
  margin: 0 8px !important;
  margin: 0 0.5rem !important;
  border-radius: unset;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #B09368;
}

.pick {
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .pick {
    margin-bottom: 4rem;
  }
}

.pick__top {
  margin-bottom: 7px;
  margin-bottom: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .pick__top {
    margin-bottom: 0.25rem;
  }
}

@media screen and (max-width: 767px) {
  .pick__items {
    -webkit-box-shadow: unset;
            box-shadow: unset;
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 0.3125rem 0.8125rem;
    background: unset;
    margin-bottom: 0.3125rem;
  }
}

@media screen and (max-width: 767px) {
  .pick .card {
    -webkit-box-shadow: 0 0 1.25rem #D4D4D4;
            box-shadow: 0 0 1.25rem #D4D4D4;
    padding: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: unset;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .pick .card__img {
    aspect-ratio: 58/43;
    width: 41%;
    margin-bottom: unset;
  }
}
@media screen and (max-width: 767px) {
  .pick .card__body {
    display: contents;
  }
}
@media screen and (max-width: 767px) {
  .pick .card__top {
    width: 59%;
    padding-left: 0.3125rem;
    margin-bottom: unset;
  }
}
@media screen and (max-width: 767px) {
  .pick .card__icon {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pick .card__name {
    font-size: 1rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .pick .card__text {
    margin-top: 0.1875rem;
    font-size: 0.75rem;
    line-height: 1.4;
    font-weight: 500;
    word-break: break-all;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-bottom: unset;
  }
}
@media screen and (max-width: 767px) {
  .pick .card__arrow {
    width: 100%;
    margin-top: -0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .pick .card__arrow::after {
    right: 0;
  }
}

.pick__more {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #B09368;
  line-height: 1.7;
  text-decoration: underline;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  padding-right: 16px;
  padding-right: 1rem;
}
@media screen and (max-width: 767px) {
  .pick__more {
    font-size: 0.75rem;
  }
}

.pick__more::after {
  aspect-ratio: 12/4;
  height: 4px;
  height: 0.25rem;
  right: 0;
}

.news {
  margin-bottom: 112px;
  margin-bottom: 7rem;
  background: #F1E9DD;
}
@media screen and (max-width: 767px) {
  .news {
    margin-bottom: 4rem;
  }
}

.news__container {
  padding: 112px 0;
  padding: 7rem 0;
}
@media screen and (max-width: 767px) {
  .news__container {
    padding: 4rem 0;
  }
}

.news__top {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.news__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 64px;
  gap: 2.75rem 4rem;
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .news__items {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
}

.news__items .news__item:nth-of-type(n + 7) {
  display: none;
}

.news__items.is-full .news__item:nth-of-type(n + 7) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.news__item:not(:nth-of-type(3n))::after {
  pointer-events: none;
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 1px;
  background: #fff;
  top: 0;
  right: -34px;
  right: -2.125rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .news__item:not(:nth-of-type(3n))::after {
    display: none;
  }
}

.news__item-img {
  aspect-ratio: 390/250;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .news__item-img {
    aspect-ratio: 327/209;
    height: unset;
    margin-bottom: 0.5rem;
  }
}

.news__item-body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.news__item-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .news__item-tags {
    gap: 0.25rem;
    margin-bottom: 0.5rem;
  }
}

.news__item-tag {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: #333333;
  padding: 4px 14px;
  padding: 0.25rem 0.875rem;
}
@media screen and (max-width: 767px) {
  .news__item-tag {
    padding: 0.25rem 1rem;
  }
}

.news__item-tag--area {
  background: transparent;
  border: 1px solid #333333;
  padding: 4px 8px;
  padding: 0.25rem 0.5rem;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .news__item-tag--area {
    padding: 0.25rem 1rem;
  }
}

.news__item-tag--accept {
  background: transparent;
  padding: unset;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.news__item-tag--accept span {
  margin-left: auto;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  padding: 4px 8px;
  padding: 0.25rem 0.5rem;
  border: 1px solid #B09368;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 5;
  background: #B09368;
}
@media screen and (max-width: 767px) {
  .news__item-tag--accept span {
    padding: 0.25rem 1rem;
  }
}

.news__item-label {
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .news__item-label {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
}

.news__item-title {
  margin-bottom: 16px;
  margin-bottom: 1rem;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  word-break: break-all;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 767px) {
  .news__item-title {
    font-size: 1.125rem;
    margin-bottom: 0.125rem;
  }
}

.news__item-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
  word-break: break-all;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 767px) {
  .news__item-text {
    margin-bottom: 0.25rem;
  }
}

.news__item-more {
  color: #B09368;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  padding-right: 33px;
  padding-right: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .news__item-more {
    font-size: 0.75rem;
  }
}

.news__item-more::after {
  aspect-ratio: 25/5;
  right: -12px;
  right: -0.75rem;
  height: 7px;
  height: 0.4375rem;
  -webkit-transition: 0.5s ease-out right;
  transition: 0.5s ease-out right;
}
@media screen and (max-width: 767px) {
  .news__item-more::after {
    height: 0.3125rem;
    right: 0;
  }
}

.news__item:hover .news__item-more::after {
  right: -17px;
  right: -1.0625rem;
}
@media screen and (max-width: 767px) {
  .news__item:hover .news__item-more::after {
    right: 0;
  }
}

.news__more {
  background: #B09368;
  color: #fff;
  border: unset;
  -webkit-transition: all ease-out 0.4s;
  transition: all ease-out 0.4s;
}

.news__more:hover {
  background: #fff;
  color: #B09368;
}

.news__more:hover::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.news__more::after {
  background-image: url("../../images/arrow-brown.svg");
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="2" /><feFuncG type="linear" slope="2" /><feFuncB type="linear" slope="2" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(2);
          filter: brightness(2);
  -webkit-transition: all ease-out 0.4s;
  transition: all ease-out 0.4s;
}
@media screen and (max-width: 767px) {
  .news__more::after {
    height: 0.375rem;
  }
}

.info {
  margin-bottom: 112px;
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .info {
    margin-bottom: 4rem;
  }
}

.info__top {
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .info__top {
    margin-bottom: 1.5rem;
  }
}

.info__items {
  padding-bottom: 1px;
  margin-bottom: 80px;
  margin-bottom: 5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
}
@media screen and (max-width: 767px) {
  .info__items {
    padding-bottom: unset;
    padding-right: 2.1875rem;
    margin-bottom: 2.5rem;
    overflow: scroll;
  }
}

.info__items .info__item:nth-of-type(n + 6) {
  display: none;
}

.info__items.is-full .info__item:nth-of-type(n + 6) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info__item {
  border-bottom: 1px solid #D4D4D4;
}

.info-i {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
  padding: 26px 0 15px;
  padding: 1.625rem 0 0.9375rem;
}
@media screen and (max-width: 767px) {
  .info-i {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem 0;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    gap: 0.5rem;
  }
}

.info-i__left {
  width: 18%;
}
@media screen and (max-width: 767px) {
  .info-i__left {
    width: 100%;
  }
}

.info-i__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  gap: 0.25rem;
  margin-bottom: 2px;
  margin-bottom: 0.125rem;
}
@media screen and (max-width: 767px) {
  .info-i__tags {
    margin-bottom: 0.5rem;
  }
}

.info-i__tag {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 100px;
  min-width: 6.25rem;
  text-align: center;
  padding: 5px 8px 4px;
  padding: 0.3125rem 0.5rem 0.25rem;
  line-height: 1;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  background: #D9D9D9;
  line-height: 1.2;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .info-i__tag {
    min-width: unset;
    padding: 0.25rem 1rem;
  }
}

.info-i__tag[data-color="#5081A5"] {
  background: #5081a5;
}

.info-i__tag[data-color="#B09368"] {
  background: #b09368;
}

.info-i__tag[data-color="#83214D"] {
  background: #83214d;
}

.info-i__tag[data-color="#1D5735"] {
  background: #1d5735;
}

.info .info-i__tag--trans {
  border: 1px solid #D9D9D9;
  background: transparent;
  color: #D9D9D9;
  min-width: 120px;
  min-width: 7.5rem;
  padding: 5px 5px 4px;
  padding: 0.3125rem 0.3125rem 0.25rem;
}

.info-i__tag--trans[data-color="#0B8100"] {
  border: 1px solid #0b8100;
  color: #0b8100;
}

.info-i__tag--trans[data-color="#B09368"] {
  border: 1px solid #b09368;
  color: #b09368;
}

.info-i__time {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "sfpro", "Noto Sans JP";
}
@media screen and (max-width: 767px) {
  .info-i__time {
    font-size: 1rem;
  }
}

.info-i__title {
  margin-top: -15px;
  margin-top: -0.9375rem;
  width: 82%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  word-break: break-all;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 767px) {
  .info-i__title {
    -webkit-line-clamp: 2;
    width: 100%;
    font-size: 1rem;
    margin-top: unset;
  }
}

.info__more {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .info__more {
    margin-bottom: 1rem;
  }
}

.group {
  margin-bottom: 112px;
  margin-bottom: 7rem;
  background-image: url("../../images/group-bg.jpg");
  background-repeat: no-repeat;
  background-size: 100% calc(100% - 18.75rem);
  background-position: center 0;
}
@media screen and (max-width: 767px) {
  .group {
    margin-bottom: 4rem;
    background-image: url("../../images/group-bg-sp.jpg");
    background-size: 100% calc(100% - 26.25rem);
  }
}

.group__container {
  padding: 112px 0 0;
  padding: 7rem 0 0;
}
@media screen and (max-width: 767px) {
  .group__container {
    padding-top: 4rem;
  }
}

.group__top {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.group__top .section-title__main {
  color: #fff;
  text-align: center;
}

.group__top .section-title__sub {
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.group__top .section-title__sub::before {
  background: #fff;
}

.group__content {
  background: rgba(51, 51, 51, .7);
  padding: 64px 30px;
  padding: 4rem 1.875rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .group__content {
    padding: 2.5rem 0.8125rem;
  }
}

.group__content-read {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #B09368;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .group__content-read {
    font-size: 1.25rem;
    line-height: 1.6;
    padding: 0 0.625rem;
  }
}

.group__content-text {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .group__content-text {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    padding: 0 0.625rem;
  }
}

.group__content-more {
  border: 1px solid #fff;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .group__content-more {
    min-width: unset;
  }
}

.group__content-more:hover {
  border: 1px solid #B09368;
}

.group__content-more::after {
  aspect-ratio: 25/5;
  right: 13px;
  right: 0.8125rem;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="2" /><feFuncG type="linear" slope="2" /><feFuncB type="linear" slope="2" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(2);
          filter: brightness(2);
  background-image: url("../../images/arrow-white.svg");
}
@media screen and (max-width: 767px) {
  .group__content-more::after {
    right: 0.5rem;
    height: 0.3125rem;
  }
}

.group__content-more:hover::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="2" /><feFuncG type="linear" slope="2" /><feFuncB type="linear" slope="2" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(2);
          filter: brightness(2);
}

.group__wrap {
  background: #fff;
  padding: 64px 22px;
  padding: 4rem 1.375rem;
  -webkit-box-shadow: 0 0 1.875rem #D9D9D9;
          box-shadow: 0 0 1.875rem #D9D9D9;
}
@media screen and (max-width: 767px) {
  .group__wrap {
    padding: 1.5rem 1.5rem 2rem;
    margin-bottom: 1.5rem;
  }
}

.group__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #D4D4D4;
}
@media screen and (max-width: 767px) {
  .group__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-template-columns: unset;
    gap: unset;
    background: unset;
  }
}

.group__item {
  height: 100%;
  text-align: left;
  padding: 0 clamp(5.008px, -21.792px + 3.488vw, 26px);
  padding: 0 clamp(0.313rem, -1.362rem + 3.488vw, 1.625rem);
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .group__item {
    display: block;
    padding: unset;
  }
}

@media screen and (max-width: 767px) {
  .group .swiper-slide {
    width: 16.3125rem;
  }
}

.group__item-img {
  aspect-ratio: 250/170;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .group__item-img {
    margin-bottom: 0.5rem;
    aspect-ratio: 253/170;
  }
}

.group__item-body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.group__item-title {
  color: #333333;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .group__item-title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
}

.group__item-text {
  margin-bottom: 0px;
  margin-bottom: 0rem;
  color: #333333;
}

.group__item-text span {
  font-weight: 700;
}

.group__item-price {
  color: #B09368;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.group__item-price span {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: "sfpro", "Noto Sans JP";
}

.group__item-more {
  color: #B09368;
  font-weight: 500;
  padding-right: 33px;
  padding-right: 2.0625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.group__item:hover .group__item-more::after {
  right: -5px;
}

.group__item-more::after {
  right: 0;
  -webkit-transition: 0.4s ease-out right;
  transition: 0.4s ease-out right;
}

.group__buttons {
  max-width: 120px;
  max-width: 7.5rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  gap: 2.5rem;
}

.group__button {
  border: 1px solid #333333;
  background: transparent;
  position: relative;
}

.group__button::after {
  border-bottom: 1px solid #333333;
  border-right: 1px solid #333333;
}

.group-button--prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.group-modal {
  background: rgba(51, 51, 51, .9);
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  display: none;
  overflow: auto;
  overscroll-behavior: none;
}

@-webkit-keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.js-group-modal.is-open {
  display: block;
  -webkit-animation: opacity 0.3s ease-in-out;
          animation: opacity 0.3s ease-in-out;
}

.group-modal__inner {
  max-width: 1250px;
  max-width: 78.125rem;
  padding: 0 25px;
  margin-inline: auto;
  min-height: calc(100% + 1px);
  height: 100%;
}
@media screen and (max-width: 767px) {
  .group-modal__inner {
    max-width: 37.5rem;
    padding: 0 1rem;
  }
}

.group-modal__container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .group-modal__container {
    height: unset;
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
}

.group-modal__content {
  width: 100%;
  position: relative;
  padding: 64px 64px 60px;
  padding: 4rem 4rem 3.75rem;
  background: #fff;
  display: none;
}
@media screen and (max-width: 767px) {
  .group-modal__content {
    padding: 3.75rem 1.25rem 1.5rem;
  }
}

.group-modal__content.is-active {
  display: block;
}

.group-modal__close {
  cursor: pointer;
  position: absolute;
  aspect-ratio: 64/40;
  width: 64px;
  width: 4rem;
  top: 24px;
  top: 1.5rem;
  right: 40px;
  right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .group-modal__close {
    top: 1rem;
    right: 1rem;
    aspect-ratio: 32/20;
    width: 2rem;
  }
}

.group-modal__close span {
  position: absolute;
  width: 100%;
  background: #333333;
  height: 1px;
  top: 50%;
  left: 50%;
}

.group-modal__close span:nth-of-type(1) {
  -webkit-transform: translate(-50%, -50%) rotate(35deg);
          transform: translate(-50%, -50%) rotate(35deg);
}

.group-modal__close span:nth-of-type(2) {
  -webkit-transform: translate(-50%, -50%) rotate(145deg);
          transform: translate(-50%, -50%) rotate(145deg);
}

.group-modal__title {
  text-align: center;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .group-modal__title {
    margin-bottom: 1.625rem;
    font-size: 1.25rem;
  }
}

.group-modal__text {
  text-align: center;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .group-modal__text {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}

.group-modal__text span {
  color: #B09368;
  font-weight: 700;
}

.group-modal__attention {
  text-align: center;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: #FF0000;
}
@media screen and (max-width: 767px) {
  .group-modal__attention {
    font-size: 0.75rem;
    margin-bottom: 2rem;
  }
}

.group-modal__links {
  max-width: 622px;
  max-width: 38.875rem;
  margin-inline: auto;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .group-modal__links {
    margin-bottom: 1rem;
  }
}

.group-modal__link {
  width: 100%;
  background: #B09368;
  color: #fff;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .group-modal__link {
    min-width: unset;
    margin-bottom: 0.5rem;
  }
}

.group-modal__link:hover {
  color: #B09368;
  background: #fff;
}

.group-modal__link:hover::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.group-modal__link::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="3" /><feFuncG type="linear" slope="3" /><feFuncB type="linear" slope="3" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(3);
          filter: brightness(3);
  right: 33px;
  right: 2.0625rem;
  width: 25px;
  width: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .group-modal__link::after {
    width: 1.25rem;
    right: 0.75rem;
  }
}

.group-modal__link--pink {
  background: #C84E90;
  margin-bottom: unset;
}

.group-modal__link--pink:hover {
  background: #fff;
  color: #C84E90;
  border: 1px solid #C84E90;
}

.group-modal__link--pink::after {
  background: url("../../images/arrow-pink.svg");
}
@media screen and (max-width: 767px) {
  .group-modal__link--pink::after {
    background-size: contain;
    background-repeat: no-repeat;
    width: 1.25rem;
    right: 0.75rem;
  }
}

.group-modal__bottom {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .group-modal__bottom {
    font-size: 1rem;
  }
}

.group-modal__bottom a {
  display: inline;
  color: #B09368;
  text-decoration: underline;
}

.top-real {
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .top-real {
    margin-bottom: 4rem;
  }
}

.top-real__top .section-title__main span {
  display: block;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top-real__top .section-title__main span {
    font-size: 1.25rem;
  }
}

.top-real__content {
  background: -webkit-gradient(linear, left top, left bottom, from(#F1E9DD), to(transparent));
  background: linear-gradient(#F1E9DD 0% calc(100% - 4rem), transparent calc(100% - 4rem) 100%);
  padding: 100px 0 0;
  padding: 6.25rem 0 0;
  margin-top: -60px;
  margin-top: -3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .top-real__content {
    background: #F1E9DD;
    padding: 2.8125rem 0 4rem;
    margin-top: -0.9375rem;
    display: block;
  }
}

.top-real__img {
  aspect-ratio: 925/500;
  width: 64%;
}
@media screen and (max-width: 767px) {
  .top-real__img {
    width: calc(100% - 24px);
    margin-bottom: 1.5rem;
    aspect-ratio: 353/297;
  }
}

.top-real__body {
  margin-top: -90px;
  margin-top: -5.625rem;
  width: 36%;
  padding-left: 64px;
  padding-left: 4rem;
  max-width: 444px;
  max-width: 27.75rem;
}
@media screen and (max-width: 767px) {
  .top-real__body {
    margin-top: unset;
    max-width: 85.5rem;
    padding-right: 24px;
    padding-left: 24px;
    width: 100%;
  }
}

.top-real__text {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-real__text {
    line-height: 1.7;
  }
}

.top-real__more {
  background: #B09368;
  color: #fff;
  border: unset;
}

.top-real__more:hover {
  background: #fff;
  color: #B09368;
}

.top-real__more:hover::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.top-real__more::after {
  background-image: url("../../images/arrow-brown.svg");
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="2" /><feFuncG type="linear" slope="2" /><feFuncB type="linear" slope="2" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(2);
          filter: brightness(2);
}

.seminar {
  margin-bottom: 112px;
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .seminar {
    margin-bottom: 4rem;
  }
}

.seminar__content {
  border: 1px solid #D4D4D4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 0 1.875rem #D9D9D9;
          box-shadow: 0 0 1.875rem #D9D9D9;
}
@media screen and (max-width: 767px) {
  .seminar__content {
    -webkit-box-shadow: 0 0 1.25rem #D9D9D9;
            box-shadow: 0 0 1.25rem #D9D9D9;
    display: block;
  }
}

.seminar__body {
  width: 50%;
  padding: 32px;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .seminar__body {
    width: 100%;
    padding: 1.5rem;
  }
}

.seminar__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.seminar__tag {
  color: #fff;
  padding: 4px 8px;
  padding: 0.25rem 0.5rem;
  background: #333333;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .seminar__tag {
    padding: 0.25rem 1rem;
    font-size: 1rem;
  }
}

.seminar__tag--deadline {
  background: #B09368;
}

.seminar__time {
  position: relative;
  padding-left: 20px;
  padding-left: 1.25rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #B09368;
}

.seminar__time::before {
  content: "";
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  width: 1rem;
  height: 2px;
  background: #B09368;
}

.seminar__read {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .seminar__read {
    font-size: 1.125rem;
    margin-bottom: 1px;
  }
}

.seminar__read2 {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .seminar__read2 {
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
  }
}

.seminar__more {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.7;
  color: #B09368;
  padding-right: 32px;
  padding-right: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.seminar__content:hover .seminar__more::after {
  right: -5px;
}

.seminar__more::after {
  -webkit-transition: 0.4s ease-out right;
  transition: 0.4s ease-out right;
  right: 0;
}

.seminar__img {
  width: 50%;
  aspect-ratio: 650/280;
}
@media screen and (max-width: 767px) {
  .seminar__img {
    width: 100%;
    aspect-ratio: 327/215;
  }
}

.service {
  margin-bottom: 112px;
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .service {
    margin-bottom: 4rem;
  }
}

.service__top {
  margin-bottom: 35px;
  margin-bottom: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .service__top {
    margin-bottom: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .service__items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    background: unset;
  }
}

.service .card {
  display: block;
}
@media screen and (max-width: 767px) {
  .service .card {
    display: block;
    -webkit-box-shadow: 0 0 1.25rem #D4D4D4;
            box-shadow: 0 0 1.25rem #D4D4D4;
    padding-bottom: 2rem;
  }
}

.service .card__icon {
  aspect-ratio: 1;
  width: 24px;
  width: 1.5rem;
  margin-right: 4px;
  margin-right: 0.25rem;
  margin-left: 6px;
  margin-left: 0.375rem;
}
@media screen and (max-width: 767px) {
  .service .card__icon {
    margin-right: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .service .card__arrow::after {
    right: 0;
  }
}

div[name=area02] {
  position: relative;
  top: -67px;
  top: -4.1875rem;
}
@media screen and (max-width: 767px) {
  div[name=area02] {
    top: -2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .service .card__arrow::after {
    right: 0;
  }
}

.p-fv__inner a{
  text-decoration: none; !important;
}
.pt-read a{
  text-decoration: none; !important;
}
.pt-category__inner a{
  text-decoration: none; !important;
}
.tokuten-card__title a{
  text-decoration: none; !important;
  color:#000;
}
.tokuten-card__text a{
  text-decoration: none; !important;
  color:#000;
}
.pt-group__button a{
  text-decoration: none; !important;
}
.pt-contact__inner a{
  text-decoration: none; !important;
}
.pt-group__inner a{
  text-decoration: none; !important;
}
.menus  a{
  text-decoration: none; !important;
}

.real__inner a{
  text-decoration: none; !important;
}
.pa-read a{
  text-decoration: none; !important;
}
.pa-se a{
  text-decoration: none; !important;
}
.pa-special a{
  text-decoration: none; !important;
  color:#000;
}

/*# sourceMappingURL=styles.css.map */
