@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

* {
  outline: olivedrab 1px solid;
}

body {
  color: #6C635F;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

.l-main {
  -webkit-padding-before: rm(72);
          padding-block-start: rm(72);
  min-height: 100vh;
}

.l-inner {
  padding-inline: 20px;
}
@media screen and (min-width:768px) {
  .l-inner {
    padding-inline: 60px;
  }
}
@media screen and (min-width:1200px) {
  .l-inner {
    padding-inline: 83px;
  }
}
@media screen and (min-width:1367px) {
  .l-inner {
    padding-inline: calc((100vw - 1200px) / 2);
  }
}

.c-btn {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 30px 45px 30px 19px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 1.6px;
  font-weight: 500;
  background: transparent linear-gradient(107deg, #d69a61 0%, #ea7c7c 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  position: relative;
}
.c-btn span::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 10px;
  width: 15.6px;
  height: 13px;
  background: url(../../assets/img/Icon-right-double.png) no-repeat center center/cover;
}
@media (any-hover: hover) {
  .c-btn:hover {
    opacity: 0.7;
  }
}

.c-btn-simple {
  padding: 18px 25px;
  width: 300px;
  border: 1px solid #6b6360;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.4666666667;
  letter-spacing: 1.2px;
  font-weight: 500;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.c-btn-simple::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 20.4px;
  width: 9.6px;
  height: 8px;
  background: url(../../assets/img/Icon-right-double-black.svg) no-repeat center center/cover;
}
@media (any-hover: hover) {
  .c-btn-simple:hover {
    color: #ffffff;
    background: #6b6360;
    transition: all 0.3s ease;
  }
  .c-btn-simple:hover::after {
    background: url(../../assets/img/Icon-right-double.png) no-repeat center center/cover;
  }
}

.c-breadcrumb {
  position: relative;
  z-index: 4;
  margin-top: 10px;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.4615384615;
  letter-spacing: 0.78px;
}

.c-breadcrumb-arrow {
  padding-inline: 10px;
}
@media screen and (min-width:768px) {
  .c-breadcrumb-arrow {
    padding-inline: 20px 15px;
  }
}

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

.c-top__title-en {
  font-size: 50px;
  line-height: 1.44;
  font-weight: 200;
}

.c-top__title-ja {
  padding-top: 9px;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.75px;
  font-weight: 600;
}

.c-animated__fadeIn {
  translate: 0 40px;
  opacity: 0;
  transition: opacity 0.5s ease, translate 0.5s ease;
}
.c-animated__fadeIn.js-show {
  translate: 0;
  opacity: 1;
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 100;
}
.p-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.p-header.js-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #c75f62;
  opacity: 0.7;
  z-index: -1;
  pointer-events: none;
  transition: all 0.3s ease;
}

.p-header__inner {
  padding-inline: 10px 12px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-header__logo {
  width: 175.4px;
  height: 32px;
  z-index: 100;
  transition: all 0.3s ease;
  margin-left: 2px;
}
.p-header__logo img {
  width: 100%;
}
@media (any-hover: hover) {
  .p-header__logo:hover {
    opacity: 0.7;
    transition: all 0.3s ease;
  }
}

.p-header__nav {
  display: none;
}
@media screen and (min-width:1024px) {
  .p-header__nav {
    display: block;
    height: 100%;
    align-content: center;
  }
}

.p-header__list {
  display: flex;
  align-items: center;
  height: 100%;
}
.p-header__list li {
  color: #ffffff;
  padding-inline: 14px;
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 0.7px;
  font-weight: 600;
  height: 100%;
  align-content: center;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .p-header__list li:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }
}
.p-header__list a {
  height: 100%;
  align-content: center;
}
.p-header__list .menu-item {
  position: relative;
}
.p-header__list .menu-item.menu-item-has-children > a {
  position: relative;
  padding-right: 15px;
}
.p-header__list .menu-item.menu-item-has-children > a::after {
  content: "▼";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.6em;
}
.p-header__list .menu-item .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #c75f62;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  list-style: none;
  z-index: 1000;
}
.p-header__list .menu-item .sub-menu li {
  width: 100%;
  padding-inline: 0;
}
.p-header__list .menu-item .sub-menu a {
  display: block;
  padding: 12px 20px;
  color: #ffffff;
  white-space: nowrap;
  text-decoration: none;
  background-color: transparent;
}
.p-header__list .menu-item .sub-menu a:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.3);
}
.p-header__list .menu-item:hover > .sub-menu {
  display: block;
  opacity: 1;
}

.p-header__btn {
  display: none;
  width: 186px;
  height: 52px;
  padding: 15px 22px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.75px;
  font-weight: 600;
  background: transparent linear-gradient(90deg, #d69a61 0%, #ea7c7c 100%) 0% 0% no-repeat padding-box;
  transition: all 0.3s ease;
}
@media screen and (min-width:1024px) {
  .p-header__btn {
    display: block;
  }
}
@media (any-hover: hover) {
  .p-header__btn:hover {
    opacity: 0.7;
    transition: all 0.3s ease;
  }
}

.p-header__btn-sp {
  width: 170px;
  font-size: 13px;
  padding-top: 18px;
  transition: all 0.3s ease;
  text-align: center;
}
@media screen and (min-width:768px) {
  .p-header__btn-sp {
    width: 186px;
    font-size: 15px;
    padding-top: 15px;
  }
}
@media (any-hover: hover) {
  .p-header__btn-sp:hover {
    opacity: 0.7;
    transition: all 0.3s ease;
  }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(108, 95, 90, 0.7);
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  z-index: 999;
  transition: all 0.5s ease;
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  background: white;
  z-index: 1000;
  transition: all 0.5s ease;
}

.close-btn {
  position: fixed;
  top: -55px;
  right: 0;
  width: 50px;
  height: 50px;
  background: #6c5f5a;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1607843137);
  transition: all 0.3s ease;
}
.close-btn::after {
  content: "閉じる";
  position: absolute;
  bottom: 6px;
  left: 6px;
  width: 40px;
  height: 15px;
  color: #ffffff;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.8px;
  font-weight: 600;
}
@media (any-hover: hover) {
  .close-btn:hover {
    opacity: 0.7;
    transition: all 0.3s ease;
  }
}

.btn-closs {
  position: absolute;
  width: 14.7px;
  height: 15px;
  top: 10px;
  left: 16.5px;
  background: url(../../assets/img/icon-cross.svg) no-repeat center center/cover;
}

.popup-img {
  width: 350px;
  height: 367px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (min-width:768px) {
  .popup-img {
    width: 630px;
    height: 478px;
  }
}
.popup-img img {
  width: 100%;
}

.p-drawer__icon {
  position: fixed;
  z-index: 102;
  top: 19.5px;
  right: 11px;
  width: 34px;
  height: 37.5px;
}
@media screen and (min-width:1024px) {
  .p-drawer__icon {
    display: none;
  }
}

.p-drawer__icon-wrapper {
  width: 30px;
  height: 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.p-drawer__icon--bar {
  width: 100%;
  height: 1px;
  background: #ffffff;
}

.p-drawer__icon--text {
  display: none;
  padding-top: 6px;
  color: #ffffff;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.p-drawer__icon--text.js-show {
  display: block;
}

.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(1) {
  rotate: 30deg;
  translate: 0 8px;
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(3) {
  rotate: -30deg;
}

.p-drawer {
  position: fixed;
  z-index: 101;
  overflow-y: scroll;
  top: 0;
  right: 0;
  width: 390px;
  height: 100vh;
  height: 100svh;
  background: #c75f62;
}

.p-drawer__icon--bar {
  transition: all 0.5s ease;
}

.p-drawer {
  translate: 101%;
  transition: translate 0.5s ease;
}
.p-drawer.js-show {
  translate: 0;
}

.p-drawer__logo {
  position: fixed;
  top: 18.43px;
  left: 12px;
  width: 175.4px;
  height: 32px;
  z-index: 100;
}
.p-drawer__logo img {
  width: 100%;
}

.p-drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 110px 40px;
  padding-inline: 20px;
  display: flex;
  flex-direction: column;
}
.p-drawer__body .c-btn {
  display: block;
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
}

.p-drawer__btn {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 30px 45px 30px 19px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 1.6px;
  font-weight: 500;
  background: transparent linear-gradient(107deg, #d69a61 0%, #ea7c7c 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  position: relative;
}
.p-drawer__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 10px;
  width: 15.6px;
  height: 13px;
  background: url(../../assets/img/Icon-right-double.png) no-repeat center center/cover;
}
@media (any-hover: hover) {
  .p-drawer__btn:hover {
    opacity: 0.7;
  }
}

.p-drawer__list {
  display: flex;
  flex-direction: column;
}
.p-drawer__list li {
  position: relative;
}
.p-drawer__list li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid #ffffff;
  opacity: 0.7;
}
.p-drawer__list li:first-of-type::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  border-top: 1px solid #ffffff;
  opacity: 0.7;
}
.p-drawer__list li.menu-item-has-children::after {
  opacity: 0.3;
}
.p-drawer__list li.menu-item-has-children:first-of-type::before {
  opacity: 0.3;
}
.p-drawer__list li a {
  color: #ffffff;
  display: block;
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 0.7px;
  font-weight: 600;
  padding-block: 20px;
  text-align: center;
  position: relative;
}
.p-drawer__list li a::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 10px;
  width: 4px;
  height: 8px;
  background: url(../../assets/img/Icon-right.png) no-repeat center center/cover;
}
@media (any-hover: hover) {
  .p-drawer__list li a:hover {
    opacity: 0.7;
  }
}

.p-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(108, 95, 90, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}

.p-drawer-overlay.js-show {
  opacity: 1;
  visibility: visible;
}

.p-fv {
  height: 665px;
  position: relative;
  background: url(../../assets/img/top-fv-sp.png) no-repeat center center/cover;
}
@media screen and (min-width:768px) {
  .p-fv {
    height: 693px;
    background: url(../../assets/img/top-fv-pc.png) no-repeat center center/cover;
  }
}

.p-fv__title {
  position: absolute;
  top: 110px;
  right: 8px;
  text-align: center;
}
.p-fv__title span {
  display: block;
  color: #ffffff;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 2.4px;
  font-weight: 600;
  text-shadow: 0px 0px 20px #b29961;
}
@media screen and (min-width:1024px) {
  .p-fv__title span {
    font-size: 60px;
    letter-spacing: 4.8px;
  }
}
@media screen and (min-width:1200px) {
  .p-fv__title {
    top: 217px;
    right: 139px;
  }
  .p-fv__title span {
    line-height: 1.4333333333;
  }
  .p-fv__title span:nth-of-type(2) {
    margin-left: -42px;
  }
}

.p-fv__circle {
  position: absolute;
  bottom: 20px;
  left: 10px;
  width: 203.79px;
  height: 220px;
  aspect-ratio: 1/1;
}
@media screen and (min-width:1024px) {
  .p-fv__circle {
    top: 76px;
    left: 13.7px;
    width: 275px;
    height: 275px;
  }
}

.p-fv__bottom {
  position: relative;
  padding-block: 13px 14px;
  background: transparent linear-gradient(90deg, #aa8d66 0%, #e6d9ad 50%, #aa8d66 100%) 0% 0% no-repeat padding-box;
  box-shadow: inset 0px 0px 6px rgba(132, 111, 53, 0.6392156863);
}
@media screen and (min-width:1200px) {
  .p-fv__bottom {
    padding-block: 5px 11px;
  }
}

.p-fv__text {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.5384615385;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width:1200px) {
  .p-fv__text {
    font-size: 14px;
    line-height: 1.4285714286;
    letter-spacing: 1.12px;
    text-shadow: 0px 0px 10px #a98c66;
  }
}

.p-fv__text-en {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 1.4444444444;
  letter-spacing: 1.44px;
  font-weight: 600;
}
@media screen and (min-width:1200px) {
  .p-fv__text-en {
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: 1.6px;
    text-shadow: 0px 0px 10px #a98c66;
  }
}

.p-fv__text-bold {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.4444444444;
  letter-spacing: 1.44px;
  font-weight: 600;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
.p-fv__text-bold::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #ffffff;
  opacity: 0.3;
}
@media screen and (min-width:1200px) {
  .p-fv__text-bold {
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: 1.6px;
    text-shadow: 0px 0px 10px #a98c66;
  }
}

.p-fv__btn-wrap {
  position: fixed;
  bottom: 0;
  padding: 10.66px 8.2px 9px 10.2px;
  border-radius: 10px 10px 0 0;
  background: transparent linear-gradient(99deg, #d69a61 0%, #d86d75 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1607843137);
  display: flex;
  align-items: center;
  gap: 11px;
  width: 380.41px;
  left: 50%;
  translate: -50%;
  z-index: 10;
}
@media screen and (min-width:1024px) {
  .p-fv__btn-wrap {
    width: 286px;
    left: auto;
    translate: 0;
    right: 10px;
    padding: 19px 20px 13px;
    flex-direction: column;
  }
}

.p-fv__btn-tag {
  position: absolute;
  top: -12.5px;
  left: 0;
  width: 137px;
  height: 25px;
  padding: 4px 16px;
  background: transparent linear-gradient(180deg, #d17d9f 0%, #ce766f 100%) 0% 0% no-repeat padding-box;
  border-radius: 10px;
}
@media screen and (min-width:1024px) {
  .p-fv__btn-tag {
    top: -24px;
    left: -50px;
    width: 80px;
    height: 80px;
    padding: 23px 10px;
    text-align: center;
    border-radius: 50%;
    background: transparent linear-gradient(180deg, #d17d9f 0%, #ce766f 100%) 0% 0% no-repeat padding-box;
  }
}

.p-fv__btn-tag-text {
  color: #ffffff;
  font-size: 11px;
  line-height: 1.4545454545;
  letter-spacing: 1.1px;
  font-weight: 600;
}
@media screen and (min-width:1024px) {
  .p-fv__btn-tag-text {
    font-size: 12px;
    line-height: 1.4166666667;
    letter-spacing: 0.24px;
  }
}

.p-fv__btn-text {
  color: #ffffff;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  line-height: 1.4090909091;
  letter-spacing: 3.3px;
  font-weight: 700;
}
@media screen and (min-width:1024px) {
  .p-fv__btn-text {
    font-size: 24px;
    line-height: 1.4583333333;
    letter-spacing: 2.4px;
    padding-left: 7px;
  }
}

.p-fv__btn {
  display: block;
  text-align: center;
  padding: 10.5px 15.4px 10.5px 19.5px;
  background: #c75f62;
}
.p-fv__btn span {
  display: block;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.4615384615;
  letter-spacing: 0.65px;
  padding-right: 20.1px;
  position: relative;
}
.p-fv__btn span::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 0;
  width: 9.6px;
  height: 8px;
  background: url(../../assets/img/Icon-right-double.png) no-repeat center center/cover;
}
@media screen and (min-width:1024px) {
  .p-fv__btn span {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.75px;
  }
}
@media screen and (min-width:1024px) {
  .p-fv__btn {
    width: 246px;
    height: 40px;
  }
}
@media (any-hover: hover) {
  .p-fv__btn:hover {
    opacity: 0.7;
  }
}

.p-campaign {
  padding-block: 87px 80px;
  background: url(../../assets/img/top-sv-sp.png) no-repeat center center/cover;
}
@media screen and (min-width:768px) {
  .p-campaign {
    background: url(../../assets/img/top-sv-pc.png) no-repeat center center/cover;
  }
}
@media screen and (min-width:1200px) {
  .p-campaign {
    padding-block: 89px 59px;
  }
}
.p-campaign .l-inner {
  padding-inline: 10px;
}
@media screen and (min-width:768px) {
  .p-campaign .l-inner {
    padding-inline: 60px;
  }
}
@media screen and (min-width:1200px) {
  .p-campaign .l-inner {
    padding-inline: 83px;
  }
}
@media screen and (min-width:1367px) {
  .p-campaign .l-inner {
    padding-inline: calc((100vw - 1200px) / 2);
  }
}

.p-camp__head-text {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 1px;
  font-weight: 600;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
.p-camp__head-text::before, .p-camp__head-text::after {
  content: "";
  position: absolute;
  width: 188px;
  height: 1px;
  top: 50%;
  translate: 0 -50%;
  background: #ffffff;
}
.p-camp__head-text::before {
  left: -204px;
}
.p-camp__head-text::after {
  right: -204px;
}

.p-camp__head {
  padding-block: 6px;
  width: 367px;
  height: 68px;
  text-align: center;
  background: url(../../assets/img/camp-ribbon.png) no-repeat center center/contain;
  color: #ffffff;
  font-family: "Noto Serif JP", serif;
  font-size: 34px;
  line-height: 1.4411764706;
  letter-spacing: 6.8px;
  font-weight: 600;
  margin-inline: auto;
}
@media screen and (min-width:1024px) {
  .p-camp__head {
    margin-top: 11px;
    font-size: 40px;
    line-height: 1.425;
    letter-spacing: 8px;
    width: min(100%, 728.5px);
    position: relative;
    top: -15px;
    background: none;
  }
  .p-camp__head::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 11px;
    left: 0;
    background: url(../../assets/img/camp-ribbon-pc.png) no-repeat center center/contain;
    z-index: -1;
  }
}
.p-camp__head span {
  font-size: 50px;
  line-height: 1.36;
  letter-spacing: 10px;
}
@media screen and (min-width:1024px) {
  .p-camp__head span {
    font-size: 55px;
    line-height: 1.2363636364;
    letter-spacing: 11px;
  }
}

.p-camp__items {
  padding-top: 33px;
  margin-bottom: 55px;
}
@media screen and (min-width:768px) {
  .p-camp__items {
    padding-top: 21px;
    margin-bottom: 64px;
    max-width: 748px;
    margin-inline: auto;
  }
}

.p-camp__item-flex {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
@media screen and (min-width:768px) {
  .p-camp__item-flex {
    flex-direction: row;
    gap: 8px;
  }
}
.p-camp__item-flex:nth-of-type(n + 2) {
  margin-top: 19px;
}

.p-camp__item {
  width: min(100%, 370px);
  border: 2px solid #d4c282;
  background: #ffffff;
  border-radius: 10px;
  position: relative;
  margin-inline: auto;
}

.p-camp__item-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  translate: -50%;
  width: 100px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 22px 25px;
  gap: 11px;
  background: transparent linear-gradient(180deg, #d4c282 0%, #d8a291 100%) 0% 0% no-repeat padding-box;
  border-radius: 50px;
}
.p-camp__item-tag p {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.4615384615;
  letter-spacing: 1.3px;
  font-weight: 600;
}
.p-camp__item-tag .p-camp__item-tag-num {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 1px;
  font-weight: 600;
}

.p-camp__item-title {
  padding-top: 23.9px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.8px;
  font-weight: 500;
  text-align: center;
}

.p-camp__item-body {
  padding-top: 4.8px;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 11px;
}

.p-camp__item-text-line {
  padding-top: 9.2px;
  padding-bottom: 1.8px;
  display: inline-block;
  font-size: 18px;
  line-height: 1.4444444444;
  letter-spacing: 0.9px;
  font-weight: 600;
  position: relative;
}
.p-camp__item-text-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #c75f62;
  opacity: 0.5;
}

.p-camp__item-text-main {
  width: 82px;
  height: 37px;
  background: url(../../assets/img/camp-text.svg) no-repeat center center/contain;
}

.p-camp__item-text-5 {
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
  background: linear-gradient(0deg, #d69a61 0%, #ea7c7c 100%) no-repeat padding-box;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  height: 44px;
}

.p-camp__item-text-6 {
  width: 207px;
  height: 42px;
  background: url(../../assets/img/camp-6-text.svg) no-repeat center center/contain;
}

.p-camp__item-grid {
  display: flex;
  gap: 2px;
  max-width: 370px;
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .p-camp__item-grid {
    max-width: none;
    margin-top: 21px;
    gap: 8px;
  }
}
.p-camp__item-grid .p-camp__item {
  display: grid;
  grid-template-areas: "title text" "arrow arrow" "main main";
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  width: 184px;
  padding-bottom: 9.4px;
}
.p-camp__item-grid .p-camp__item .p-camp__item-title {
  grid-area: title;
  padding-top: 21px;
}
.p-camp__item-grid .p-camp__item .p-camp__item-text-line {
  grid-area: text;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  align-content: end;
  padding-top: 19px;
}
@media screen and (min-width:768px) {
  .p-camp__item-grid .p-camp__item .p-camp__item-text-line {
    justify-self: flex-end;
  }
}
.p-camp__item-grid .p-camp__item .p-camp__item-arrow {
  grid-area: arrow;
  margin-top: 2px;
}
@media screen and (min-width:768px) {
  .p-camp__item-grid .p-camp__item .p-camp__item-arrow {
    align-self: center;
    margin-top: 16px;
    padding-inline: 8px;
  }
}
.p-camp__item-grid .p-camp__item .p-camp__item-text-main {
  grid-area: main;
  width: 82.02px;
  height: 37.63px;
  margin-top: 6px;
}
@media screen and (min-width:768px) {
  .p-camp__item-grid .p-camp__item .p-camp__item-text-main {
    align-self: end;
    justify-self: flex-start;
  }
}
.p-camp__item-grid .p-camp__item:nth-of-type(1) .p-camp__item-text-line {
  margin-left: -20px;
}
.p-camp__item-grid .p-camp__item:nth-of-type(2) .p-camp__item-title {
  margin-right: -16px;
}
@media screen and (min-width:768px) {
  .p-camp__item-grid .p-camp__item {
    grid-template-areas: "title title title" "text arrow main";
    grid-template-columns: 1fr 22px 1fr;
    width: min(100%, 370px);
  }
}

.p-camp__item-arrow {
  grid-area: arrow;
  width: 6px;
  height: 12px;
  rotate: 90deg;
  background: url(../../assets/img/camp-arrow.svg) no-repeat center center/contain;
}
@media screen and (min-width:768px) {
  .p-camp__item-arrow {
    rotate: 0deg;
  }
}

.p-camp__sp-text {
  padding-block: 6px 25px;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: 0.6px;
  margin-left: 15px;
  font-weight: 600;
  text-align: center;
}

.p-camp__btn-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-camp__btn {
  width: 370px;
  position: relative;
}
.p-camp__btn::before {
  content: "まずはオープン前体験会で6大特典をゲット！";
  position: absolute;
  top: -18px;
  left: 47px;
  font-size: 13px;
  color: #6C635F;
  line-height: 1.4615384615;
  letter-spacing: 0.65px;
  font-weight: 600;
  text-align: center;
  z-index: 1;
}
@media screen and (min-width:768px) {
  .p-camp__btn::before {
    top: -21px;
    left: 70px;
  }
}
.p-camp__btn::after {
  content: "";
  position: absolute;
  width: 333px;
  height: 48.17px;
  top: -25px;
  left: 50%;
  translate: -50%;
  background: url(../../assets/img/btn-comment.svg) no-repeat center center/contain;
}
@media screen and (min-width:768px) {
  .p-camp__btn::after {
    width: 380px;
  }
}
.p-camp__btn span {
  font-weight: 700;
  display: block;
  text-align: center;
  margin-left: 26px;
}
.p-camp__btn span::after {
  right: 20px;
}
@media screen and (min-width:768px) {
  .p-camp__btn {
    width: 420px;
  }
}

.p-camp__desc {
  padding-top: 15px;
  text-align: center;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.6px;
}

.p-camp__desc-text {
  font-weight: 500;
}
.p-camp__desc-text + .p-camp__desc-text {
  margin-top: 4px;
}

.p-point {
  background: #fefaf8;
  padding-top: 100px;
}
@media screen and (min-width:768px) {
  .p-point {
    padding-top: 120px;
  }
}
.p-point .l-inner {
  padding-inline: 10px;
}
@media screen and (min-width:768px) {
  .p-point .l-inner {
    padding-inline: 60px;
  }
}
@media screen and (min-width:1200px) {
  .p-point .l-inner {
    padding-inline: 83px;
  }
}
@media screen and (min-width:1367px) {
  .p-point .l-inner {
    padding-inline: calc((100vw - 1200px) / 2);
  }
}

.p-point__head {
  text-align: center;
}

.p-point__head-text {
  display: inline-block;
  padding-bottom: 6px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.8px;
  font-weight: 600;
  position: relative;
}
.p-point__head-text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #c75f62;
}
.p-point__head-text::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  translate: -50%;
  width: 20px;
  height: 10px;
  rotate: 90deg;
  background: url(../../assets/img/camp-arrow.svg) no-repeat center center/contain;
}
@media screen and (min-width:768px) {
  .p-point__head-text {
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: 1px;
  }
}

.p-point__head-title {
  display: block;
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: 1px;
  font-weight: 600;
}
@media screen and (min-width:768px) {
  .p-point__head-title {
    margin-top: 25px;
    font-size: 32px;
    line-height: 1.4375;
    letter-spacing: 1.6px;
  }
}

.p-point__head-num {
  font-size: 39px;
  line-height: 1.4358974359;
  letter-spacing: 1.95px;
  font-weight: 600;
  -webkit-text-stroke: 1px #707070;
  z-index: 1;
}
@media screen and (min-width:768px) {
  .p-point__head-num {
    font-size: 50px;
    line-height: 1;
    letter-spacing: 2.5px;
  }
}

.p-point__num-text {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 24px;
  line-height: 1.4583333333;
  letter-spacing: 1.2px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.p-point__num-text::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: -4px;
  width: 196px;
  height: 20px;
  background: #c75f62;
  opacity: 0.25;
}
@media screen and (min-width:768px) {
  .p-point__num-text {
    font-size: 32px;
    line-height: 1.4375;
    letter-spacing: 1.6px;
  }
  .p-point__num-text::after {
    width: 258px;
    height: 24px;
    bottom: -2px;
  }
}

.p-point__contents {
  padding-top: 79px;
}
@media screen and (min-width:768px) {
  .p-point__contents {
    padding-top: 89px;
  }
}

.p-point__content {
  background: #ffffff;
  border: 1px solid rgba(197, 160, 126, 0.1490196078);
  position: relative;
  padding-bottom: 60px;
  z-index: 1;
}
.p-point__content + .p-point__content {
  margin-top: 70px;
}
.p-point__content:first-of-type {
  padding-inline: 20px;
}
.p-point__content:nth-of-type(2) {
  padding-inline: 20px;
}
@media screen and (min-width:768px) {
  .p-point__content:nth-of-type(2) .p-point__content-desc {
    line-height: 2;
  }
  .p-point__content:nth-of-type(2) .p-point__btn-wrap {
    margin-top: 38px;
  }
}
.p-point__content:nth-of-type(3) .p-point__content-head {
  padding-top: 60px;
}
.p-point__content:last-of-type .p-point__content-head {
  padding-top: 63px;
}
@media screen and (min-width:1024px) {
  .p-point__content:last-of-type .point-4:nth-of-type(2n-1) {
    flex-direction: row-reverse;
  }
}

.p-point__content-tag {
  position: absolute;
  top: -22px;
  left: 50%;
  translate: -50%;
  width: 163px;
  height: 44px;
  padding-left: 40px;
  background: url(../../assets/img/point-ribbon.svg) no-repeat center center/contain;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.5;
}
.p-point__content-tag span {
  padding-left: 8px;
  font-size: 30px;
  font-weight: 300;
}

.p-point__content-head {
  padding-top: 72px;
}

.p-point__content-text {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.8px;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width:768px) {
  .p-point__content-text {
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: 1px;
    font-weight: 500;
  }
}

.p-point__content-title {
  padding-top: 19px;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 1px;
  font-weight: 600;
  text-align: center;
}
.p-point__content-title span {
  border-bottom: 1px solid #c75f62;
}
.p-point__content-title span:nth-of-type(2) {
  padding-top: 4px;
}
@media screen and (min-width:768px) {
  .p-point__content-title span {
    padding-bottom: 5px;
  }
}
@media screen and (min-width:768px) {
  .p-point__content-title {
    padding-top: 11px;
    font-size: 32px;
    line-height: 1.4375;
    letter-spacing: 1.6px;
    font-weight: 600;
  }
}

.p-point__content-desc {
  padding-top: 37px;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.7px;
}
@media screen and (min-width:768px) {
  .p-point__content-desc {
    font-size: 15px;
    line-height: 1.4666666667;
    letter-spacing: 0.75px;
    text-align: center;
    max-width: 546px;
    margin-inline: auto;
  }
}
@media screen and (min-width:1024px) {
  .p-point__content-desc {
    max-width: none;
  }
}

.p-point__table-wrap {
  padding-top: 37px;
  padding-bottom: 10.5px;
  width: 100%;
  overflow-x: auto;
}
@media screen and (min-width:1024px) {
  .p-point__table-wrap {
    padding-top: 40px;
    width: min(100%, 1060px);
    margin-inline: auto;
  }
}

.p-point__table {
  width: 1021px;
  border-collapse: collapse;
}
@media screen and (min-width:768px) {
  .p-point__table {
    width: 1060px;
  }
}
.p-point__table th,
.p-point__table td {
  border: 1px solid rgba(108, 95, 90, 0.2); /* 透明度を持たせた枠線 */
}
.p-point__table .table-row th,
.p-point__table .table-row td {
  padding-block: 20px;
}
.p-point__table .table-row:first-of-type th {
  padding-block: 10px 9px;
}
.p-point__table .table-row:nth-of-type(2) .table-slide-head {
  padding-top: 32px;
}
@media screen and (min-width:768px) {
  .p-point__table .table-row:nth-of-type(2) .table-slide-head {
    padding-top: 30px;
    height: 82px;
  }
}
.p-point__table .table-row:last-of-type th,
.p-point__table .table-row:last-of-type td {
  padding-block: 14px 12px;
}
.p-point__table .table-head {
  padding-left: 18px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.75px;
  font-weight: 600;
  background: #c75f62;
  text-align: left;
}
@media screen and (min-width:768px) {
  .p-point__table .table-head {
    padding-left: 0;
    text-align: center;
  }
}
.p-point__table .table-slide-head {
  width: 72.5px;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.75px;
  font-weight: 600;
  background: #ffffff;
  position: -webkit-sticky;
  position: sticky;
  left: 0;
}
@media screen and (min-width:1024px) {
  .p-point__table .table-slide-head {
    width: 112px;
  }
}
.p-point__table .table-title {
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.75px;
  font-weight: 600;
  text-align: center;
  align-content: center;
}
.p-point__table .table-star {
  color: #c75f62;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.75px;
  font-weight: 600;
  text-align: center;
}
.p-point__table .table-text {
  padding-inline: 10px;
  font-size: 12px;
  line-height: 2.1666666667;
}

.table-swipe {
  display: block;
  margin-left: auto;
  text-align: right;
  padding-right: 11.25px;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.75px;
  font-weight: 600;
  position: relative;
}
.table-swipe::after {
  content: ">";
  position: absolute;
  top: 23%;
  translate: 0 -50%;
  right: 8px;
  width: 4px;
  height: 8px;
}
@media screen and (min-width:1024px) {
  .table-swipe {
    display: none;
  }
}

.p-point__btn-wrap {
  margin-top: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .p-point__btn-wrap {
    margin-top: 30px;
  }
}

.p-point__img {
  margin-top: 40px;
  padding-inline: 4px;
}
@media screen and (min-width:768px) {
  .p-point__img {
    max-width: 684px;
    aspect-ratio: 660/545;
    margin-inline: auto;
  }
}
@media screen and (min-width:1024px) {
  .p-point__img {
    margin-top: 33px;
    padding-inline: 0;
  }
}

.p-point__info-text {
  padding-top: 13px;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  text-align: center;
}

.point-2-btn .c-btn-simple {
  padding: 8px 25px;
}

.p-point__content-body {
  padding-top: 40px;
  padding-inline: 20px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width:1024px) {
  .p-point__content-body {
    flex-direction: row;
    justify-content: center;
    gap: 64px;
  }
}

@media screen and (min-width:1024px) {
  .p-point__content-body.point-4 {
    justify-content: start;
  }
}

@media screen and (min-width:1024px) {
  .p-point__content-body.point-4.point-4-2 {
    margin-top: -11px;
  }
}

.p-point__body-img {
  width: min(100%, 460px);
  aspect-ratio: 460/300;
  margin-inline: auto;
}
@media screen and (min-width:1024px) {
  .p-point__body-img {
    margin-inline: 0;
    min-width: 400px;
  }
}

.p-point__body-text-wrap {
  padding-top: 30px;
  max-width: 496px;
  margin-inline: auto;
}
@media screen and (min-width:1024px) {
  .p-point__body-text-wrap {
    padding-top: 69px;
    margin-inline: 0;
  }
}

.p-point__body-text {
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 0.7px;
}
@media screen and (min-width:1024px) {
  .p-point__body-text {
    font-size: 15px;
    line-height: 1.4666666667;
    letter-spacing: 0.75px;
  }
}

.p-point__body-deco {
  display: inline-block;
  margin-top: 13px;
  margin-left: 29px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.7px;
  font-weight: 600;
  background: #f7eaea;
  position: relative;
}
.p-point__body-deco::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: 20px;
  height: 15px;
  background: url(../../assets/img/Icon-hand-point-right.png) no-repeat center center/cover;
}
@media screen and (min-width:1024px) {
  .p-point__body-deco {
    margin-top: 17px;
    font-size: 15px;
    line-height: 1.4666666667;
    letter-spacing: 0.75px;
  }
}

.p-point__body-text .pink {
  display: inline;
  font-weight: 500;
  background: #f7eaea;
}

.point-4 {
  max-width: 1062px;
  margin-inline: auto;
  align-items: center;
}
.point-4 .p-point__body-text {
  padding-top: 28px;
  line-height: 1.75;
  max-width: 496px;
}
@media screen and (min-width:1024px) {
  .point-4 .p-point__body-text {
    line-height: 1.95;
    padding-top: 0px;
  }
}

.p-cta {
  padding-top: 60px;
  padding-bottom: 100px;
  background: #fefaf8;
  position: relative;
}
.p-cta::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: calc(100% + 80px);
  background: url(../../assets/img/top-cta-fv.png) no-repeat center center/cover;
}
@media screen and (min-width:768px) {
  .p-cta {
    padding-top: 108px;
    padding-bottom: 95px;
  }
}

.p-cta__title-top {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-cta__title-text {
  position: relative;
  padding-top: 11px;
  padding-left: 174px;
  font-size: 18px;
  height: 52px;
  line-height: 1.4444444444;
  letter-spacing: 0.9px;
  font-weight: 600;
}
.p-cta__title-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 162px;
  height: 52px;
  padding-right: 15px;
  background: url(../../assets/img/logo.png) no-repeat center center/cover;
}
@media screen and (min-width:768px) {
  .p-cta__title-text {
    padding-top: 20px;
    padding-left: 235px;
    height: 70px;
  }
  .p-cta__title-text::before {
    width: 220px;
    height: 70px;
  }
}

.p-cta__title-bottom {
  padding-top: 6px;
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: 1px;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width:768px) {
  .p-cta__title-bottom {
    padding-top: 15px;
    font-size: 32px;
    line-height: 1.46875;
    letter-spacing: 1.6px;
    font-weight: 700;
  }
}

.p-cta__text {
  padding-top: 31px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.7px;
  text-align: center;
}
@media screen and (min-width:768px) {
  .p-cta__text {
    padding-top: 45px;
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.75px;
  }
}

.p-cta__btn-wrap {
  margin-top: 85px;
}
.p-cta__btn-wrap .c-btn {
  margin-left: -10px;
}
@media screen and (min-width:768px) {
  .p-cta__btn-wrap .c-btn {
    margin-left: 0;
  }
}

.p-about__top {
  padding-block: 94px 60px;
  background: transparent linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #f2eae2 100%) 0% 0% no-repeat padding-box;
  position: relative;
}
.p-about__top::after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 50%;
  translate: -50%;
  width: 102px;
  height: 28px;
  background: url(../../assets/img/top-about-arrow-down.png) no-repeat center center/cover;
}
@media screen and (min-width:768px) {
  .p-about__top {
    background: url(../../assets/img/top-about-bg-top.png) no-repeat center center/cover;
    padding-block: 120px 110px;
  }
}

.p-about__top-title {
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 1px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width:768px) {
  .p-about__top-title {
    font-size: 32px;
    line-height: 1.46875;
    letter-spacing: 1.6px;
  }
}

.p-about__list {
  padding-top: 43px;
  padding-inline: 8px;
  max-width: 482px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-about__list li {
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.8px;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width:768px) {
  .p-about__list li {
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: 1px;
  }
}
.p-about__list li::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 3px;
  left: 0;
  background: url(../../assets/img/about-check.svg) no-repeat center center/cover;
}
@media screen and (min-width:768px) {
  .p-about__list li::before {
    width: 27px;
    height: 27px;
  }
}
.p-about__list li:nth-of-type(n + 2) {
  margin-top: 16px;
}
@media screen and (min-width:768px) {
  .p-about__list li:nth-of-type(n + 2) {
    margin-top: 26px;
  }
}
.p-about__list li .dash {
  display: inline;
  border-bottom: 1px dashed #c75f62;
}
@media screen and (min-width:768px) {
  .p-about__list {
    max-width: 490px;
    width: 484px;
    margin-inline: auto;
    padding-top: 59px;
    padding-inline: 0;
  }
  .p-about__list li {
    padding-left: 42px;
  }
}

.p-about__bottom {
  padding-block: 77px 100px;
  background: url(../../assets/img/top-about-bg-sp.png) no-repeat center center/cover;
}
@media screen and (min-width:768px) {
  .p-about__bottom {
    padding-block: 108px 100px;
    background: url(../../assets/img/top-about-bg.png) no-repeat center center/cover;
  }
}
.p-about__bottom .l-inner {
  padding-inline: 10px;
}
@media screen and (min-width:768px) {
  .p-about__bottom .l-inner {
    padding-inline: 60px;
  }
}
@media screen and (min-width:1200px) {
  .p-about__bottom .l-inner {
    padding-inline: 83px;
  }
}
@media screen and (min-width:1367px) {
  .p-about__bottom .l-inner {
    padding-inline: calc((100vw - 1200px) / 2);
  }
}

.p-about__bottom-head {
  text-align: center;
}

.p-about__bottom-text {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.8px;
  font-weight: 500;
}
@media screen and (min-width:768px) {
  .p-about__bottom-text {
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: 1px;
  }
}

.p-about__bottom-title {
  display: inline-block;
  padding-top: 20px;
  padding-bottom: 8px;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: 1.4px;
  font-weight: 700;
  border-bottom: 1px solid #c75f62;
}
@media screen and (min-width:768px) {
  .p-about__bottom-title {
    padding-top: 25px;
    font-size: 34px;
    line-height: 1.4705882353;
    letter-spacing: 1.7px;
    padding-bottom: 0;
  }
}

.p-about__bottom-desc {
  padding-top: 46px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.7px;
  text-align: center;
}
.p-about__bottom-desc .dash {
  display: inline;
  border-bottom: 1px dashed #c75f62;
}
.p-about__bottom-desc .white {
  display: inline;
  background: #ffffff;
}
@media screen and (min-width:768px) {
  .p-about__bottom-desc {
    padding-top: 47px;
    font-size: 18px;
    line-height: 2.2222222222;
    letter-spacing: 0.9px;
    font-weight: 500;
  }
}

.p-about__img-content {
  padding-top: 56px;
}
@media screen and (min-width:768px) {
  .p-about__img-content {
    padding-top: 73px;
  }
}

.p-about__img-title {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.9px;
  font-weight: 500;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
.p-about__img-title::before, .p-about__img-title::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 10px;
  height: 20px;
  background: url(../../assets/img/about-title-line-red.svg) no-repeat center center/cover;
}
@media screen and (min-width:768px) {
  .p-about__img-title::before, .p-about__img-title::after {
    width: 20px;
    height: 32px;
  }
}
.p-about__img-title::before {
  left: -20px; /* 左側に配置 */
  transform: rotateY(180deg); /* そのまま */
}
@media screen and (min-width:768px) {
  .p-about__img-title::before {
    left: -35px;
  }
}
.p-about__img-title::after {
  right: -20px; /* 右側に配置 */
}
@media screen and (min-width:768px) {
  .p-about__img-title::after {
    right: -35px;
  }
}
@media screen and (min-width:768px) {
  .p-about__img-title {
    font-size: 28px;
    line-height: 1.4642857143;
    letter-spacing: 1.4px;
  }
}

.p-about__img {
  margin-top: 30px;
  aspect-ratio: 1/1;
  max-width: 460px;
  margin-inline: auto;
}
.p-about__img img {
  width: 100%;
}
@media screen and (min-width:768px) {
  .p-about__img {
    margin-top: 50px;
    max-width: 650px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.p-about__btn-wrap-top {
  margin-top: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-about__btn-wrap {
  margin-top: 85px;
}
.p-about__btn-wrap .c-btn {
  margin-left: -5px;
}

.p-plan {
  padding-block: 100px;
  background: #fefaf8;
}
@media screen and (min-width:768px) {
  .p-plan {
    padding-block: 120px 89px;
  }
}

.p-plan__free {
  margin-top: 50px;
  padding: 50px 10px 40px;
  background: #ffffff;
  box-shadow: inset 0px 3px 10px rgba(0, 0, 0, 0.1019607843);
  border-radius: 10px;
  max-width: 400px;
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .p-plan__free {
    max-width: 823px;
    padding: 40px 10px 50px;
  }
}

.p-plan__free-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-plan__free-title .line {
  padding-top: 27px;
  padding-bottom: 3px;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 1.2px;
  font-weight: 500;
  border-bottom: 1px solid #6f523d;
  position: relative;
  top: -8px;
}
@media screen and (min-width:768px) {
  .p-plan__free-title .line {
    font-size: 34px;
    line-height: 1.4705882353;
    letter-spacing: 1.7px;
  }
}
.p-plan__free-title .line:nth-of-type(2) {
  margin-left: -5px;
}
@media screen and (min-width:768px) {
  .p-plan__free-title .line:nth-of-type(2) {
    margin-left: -3px;
    padding-left: 6px;
  }
}
.p-plan__free-title .bold {
  padding-left: 10.5px;
  font-size: 50px;
  line-height: 1.48;
  letter-spacing: 5px;
  font-weight: 500;
}
@media screen and (min-width:768px) {
  .p-plan__free-title .bold {
    padding-left: 21px;
    font-size: 60px;
    line-height: 1.4833333333;
    letter-spacing: 6px;
  }
}

.p-plan__free-text {
  padding-top: 26px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.7px;
  text-align: center;
}
@media screen and (min-width:768px) {
  .p-plan__free-text {
    padding-top: 18px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.8px;
  }
}

.p-plan__free-btn-wrap {
  margin-top: 26px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-plan__free-btn-wrap .c-btn {
  width: 300px;
  height: 90px;
  padding-left: 30px;
}
.p-plan__free-btn-wrap .c-btn span::after {
  right: 25px;
}
@media screen and (min-width:768px) {
  .p-plan__free-btn-wrap .c-btn {
    width: 420px;
    text-align: center;
  }
}

.p-plan__boxes {
  padding-top: 42px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
}
@media screen and (min-width:1024px) {
  .p-plan__boxes {
    padding-top: 63px;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 900px;
    justify-self: center;
  }
}

.p-plan__box {
  max-width: 420px;
  padding-bottom: 36px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  background: #ffffff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1019607843);
  border-radius: 10px;
  z-index: 1;
}
.p-plan__box:nth-of-type(2) .p-plan__box-head {
  background: #c75f62;
  position: relative;
}
.p-plan__box:nth-of-type(2) .p-plan__box-head::before {
  content: "";
  position: absolute;
  width: 24.7%;
  aspect-ratio: 93.86/46.19;
  top: -16px;
  left: -14px;
  background: url(../../assets/img/ribbon-top.svg) no-repeat center center/cover;
}
@media screen and (min-width:768px) {
  .p-plan__box {
    max-width: 380px;
  }
}

.p-plan__box-head {
  padding-block: 7px 6px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 1.8px;
  text-align: center;
  color: #ffffff;
  background: #6c5f5a;
  border-radius: 10px 10px 0 0;
}

.p-plan__box-price {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-bottom: 10.5px;
}

.p-plan__price-main {
  padding-top: 15.5px;
  padding-inline: 41px 20.5px;
  font-size: 32px;
  line-height: 1.4375;
  letter-spacing: 1.6px;
  text-align: center;
  position: relative;
}
.p-plan__price-main::before {
  content: "月額";
  position: absolute;
  bottom: 7px;
  left: -2px;
  font-size: 15px;
  width: 34px;
  height: 21px;
}
@media screen and (min-width:1024px) {
  .p-plan__price-main::before {
    font-weight: 600;
  }
}
.p-plan__price-main::after {
  content: "円";
  position: absolute;
  bottom: 5px;
  right: 0;
  font-size: 15px;
  width: 15px;
  height: 21px;
}
@media screen and (min-width:1024px) {
  .p-plan__price-main::after {
    font-weight: 600;
  }
}
@media screen and (min-width:1024px) {
  .p-plan__price-main {
    font-weight: 600;
  }
}

.p-plan__price-sub {
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.75px;
  text-align: center;
}
@media screen and (min-width:1024px) {
  .p-plan__price-sub {
    font-weight: 600;
  }
}

.p-plan__box-text {
  padding-top: 21px;
  padding-inline: 30px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.7px;
  position: relative;
}
.p-plan__box-text::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  background: #6f523d;
  opacity: 0.4;
}
@media screen and (min-width:1024px) {
  .p-plan__box-text {
    padding-inline: 35px;
  }
}

.p-plan__box-list {
  padding-top: 17px;
  padding-inline: 30px;
}
.p-plan__box-list li {
  padding-left: 21px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.7px;
  position: relative;
}
.p-plan__box-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 11px;
  height: 11px;
  background: #6c5f5a;
  border-radius: 50%;
}
.p-plan__box-list li:nth-of-type(2) {
  margin-top: 4px;
}
@media screen and (min-width:1024px) {
  .p-plan__box-list {
    padding-inline: 35px;
  }
}

.p-plan__table-content {
  padding-block: 104px 10px;
}
@media screen and (min-width:1024px) {
  .p-plan__table-content {
    padding-block: 97px 0;
  }
}

.p-plan__table-title {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.9px;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width:1024px) {
  .p-plan__table-title {
    font-size: 28px;
    line-height: 1.4285714286;
    letter-spacing: 1.4px;
    font-weight: 600;
  }
}

.p-plan__table-wrap {
  padding-top: 22px;
  width: min(100%, 560px);
  margin-inline: auto;
  overflow-x: auto;
}
@media screen and (min-width:768px) {
  .p-plan__table-wrap {
    padding-top: 39px;
    width: min(100%, 1200px);
  }
}

.p-plan__table {
  width: 560px;
  border-collapse: collapse;
}
@media screen and (min-width:768px) {
  .p-plan__table {
    width: 1184px;
  }
}
.p-plan__table th,
.p-plan__table td {
  border: 1px solid rgba(181, 174, 167, 0.7); /* 透明度を持たせた枠線 */
}
.p-plan__table .table-row:last-of-type .table-text-gold {
  border-bottom: 5px solid #aa8d66;
}
.p-plan__table .table-row .table-text {
  padding-inline: 10px;
}
@media screen and (min-width:1024px) {
  .p-plan__table .table-row .table-text {
    padding-inline: 62px;
  }
  .p-plan__table .table-row .table-text:last-of-type {
    padding-inline: 22px;
  }
}
.p-plan__table .table-head {
  padding-block: 7px 8px;
  vertical-align: middle;
  background: #b5aea7;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.75px;
  padding-left: 25px;
}
.p-plan__table .table-head:first-of-type {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  z-index: 20;
}
.p-plan__table .table-head-gold {
  color: #ffffff;
  border-top: 5px solid #aa8d66;
  border-inline: 5px solid #aa8d66;
  padding-top: 7px;
  background: transparent linear-gradient(90deg, #aa8d66 0%, #ddce9d 50%, #aa8d66 100%) 0% 0% no-repeat padding-box;
}
.p-plan__table .table-title {
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: 0.6px;
  font-weight: 600;
  padding-left: 15px;
  vertical-align: middle;
  background: #ffffff;
  text-align: left;
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  width: 110px;
  z-index: 20;
}
@media screen and (min-width:1024px) {
  .p-plan__table .table-title {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.75px;
    padding-left: 25px;
    width: 186px;
  }
}
.p-plan__table .table-text-gold {
  padding-block: 20px;
  padding-inline: 3px 2px;
  width: 150px;
  color: #ffffff;
  font-size: 11px;
  line-height: 1.4545454545;
  letter-spacing: 0.75px;
  font-weight: 600;
  border-inline: 5px solid #aa8d66;
  position: relative;
  vertical-align: middle;
  z-index: 1;
}
.p-plan__table .table-text-gold::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/img/table-gold-bg.png) no-repeat center center/cover;
  z-index: 0;
}
.p-plan__table .table-text-gold span {
  display: block;
  position: relative;
  z-index: 1;
}
@media screen and (min-width:1024px) {
  .p-plan__table .table-text-gold {
    max-width: none;
    padding-inline: 60px;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.75px;
    text-align: center;
  }
}
.p-plan__table .table-text {
  vertical-align: middle;
  position: relative;
  font-size: 11px;
  line-height: 1.4545454545;
  letter-spacing: 0.75px;
  opacity: 0.7;
}
.p-plan__table .table-text::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #6c5f5a;
  opacity: 0.1;
}
@media screen and (min-width:1024px) {
  .p-plan__table .table-text {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.75px;
    text-align: center;
  }
}

.p-plan__btn-wrap .c-btn {
  margin-left: -10px;
}
@media screen and (min-width:768px) {
  .p-plan__btn-wrap .c-btn {
    margin-left: 0;
  }
}

.p-flow {
  padding-block: 100px;
}
@media screen and (min-width:768px) {
  .p-flow {
    padding-block: 120px 100px;
  }
}
.p-flow .l-inner {
  padding-inline: 10px;
}
@media screen and (min-width:768px) {
  .p-flow .l-inner {
    padding-inline: 60px;
  }
}
@media screen and (min-width:1200px) {
  .p-flow .l-inner {
    padding-inline: 83px;
  }
}
@media screen and (min-width:1367px) {
  .p-flow .l-inner {
    padding-inline: calc((100vw - 1200px) / 2);
  }
}

.p-flow__contents {
  padding-top: 52px;
  padding-inline: 10px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width:1024px) {
  .p-flow__contents {
    max-width: 939px;
    padding-inline: 0;
  }
}

@media screen and (min-width:1024px) {
  .p-flow__content {
    margin-left: 39px;
  }
}
.p-flow__content + .p-flow__content {
  margin-top: 39px;
}
@media screen and (min-width:768px) {
  .p-flow__content + .p-flow__content {
    margin-top: 50px;
  }
}
.p-flow__content:last-of-type .p-flow__content-body {
  margin-top: 19px;
}
.p-flow__content:last-of-type .p-flow__content-texts {
  padding-top: 2px;
}
.p-flow__content:last-of-type .p-flow__content-texts .p-flow__content-text + .p-flow__content-text {
  padding-top: 6px;
}

.p-flow__content-head {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  left: -10px;
}
@media screen and (min-width:1024px) {
  .p-flow__content-head {
    left: -39.5px;
  }
}

.p-flow__content-tag {
  width: 120px;
  height: 44px;
  background: url(../../assets/img/flow-ribbon.svg) no-repeat center center/contain;
  color: #ffffff;
  text-align: center;
  align-content: center;
}
.p-flow__content-tag::before {
  content: "Step";
  position: relative;
  top: -3px;
  display: inline-block;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
}
@media screen and (min-width:1024px) {
  .p-flow__content-tag::before {
    top: 0;
  }
}
.p-flow__content-tag span {
  padding-left: 9.5px;
  font-size: 30px;
  font-weight: 300;
  position: relative;
  top: 2px;
}
@media screen and (min-width:1024px) {
  .p-flow__content-tag {
    width: 163px;
    height: 44px;
    background: url(../../assets/img/flow-ribbon-pc.svg) no-repeat center center/contain;
  }
}

.p-flow__content-title {
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 1px;
  font-weight: 500;
}
@media screen and (min-width:1024px) {
  .p-flow__content-title {
    font-size: 28px;
    line-height: 1.4642857143;
    letter-spacing: 1.4px;
  }
}

.p-flow__content-body {
  margin-top: 14px;
  padding-left: 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17.41px;
}
.p-flow__content-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: repeating-linear-gradient(to bottom, #c75f62 0px, #c75f62 2px, transparent 2px, transparent 4px);
}
@media screen and (min-width:1024px) {
  .p-flow__content-body {
    margin-top: 29px;
    padding-left: 59.5px;
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }
}

.p-flow__content-img {
  aspect-ratio: 340/200;
  width: min(450px, 100%);
}
.p-flow__content-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width:1024px) {
  .p-flow__content-img {
    width: 340px;
  }
}

.p-flow__content-texts {
  max-width: 450px;
}

.p-flow__content-text {
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.7px;
}
@media screen and (min-width:1024px) {
  .p-flow__content-text {
    font-size: 15px;
    line-height: 1.9333333333;
    letter-spacing: 0.75px;
  }
}
.p-flow__content-text + .p-flow__content-text {
  padding-top: 18px;
}

.line-btn {
  padding: 15px 15.4px 15px 30px;
  width: 293px;
  height: 51px;
  margin-top: 27px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.75px;
  font-weight: 600;
  background: #4cad3a;
  border: 1px solid #4cad3a;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1607843137);
  border-radius: 10px;
  position: relative;
}
.line-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 15.4px;
  width: 15.6px;
  height: 13px;
  background: url(../../assets/img/Icon-right-double.png) no-repeat center center/contain;
}
@media (any-hover: hover) {
  .line-btn:hover {
    color: #4cad3a;
    background: White;
    transition: all 0.3s ease;
  }
  .line-btn:hover::after {
    background: url(../../assets/img/Icon-right-double-green.svg) no-repeat center center/cover;
  }
}

.p-reserv {
  padding-block: 97px 100px;
  background: #fefaf8;
}
@media screen and (min-width:768px) {
  .p-reserv {
    padding-block: 120px 100px;
  }
}
.p-reserv .l-inner {
  padding-inline: 10px;
}
@media screen and (min-width:768px) {
  .p-reserv .l-inner {
    padding-inline: 60px;
  }
}
@media screen and (min-width:1200px) {
  .p-reserv .l-inner {
    padding-inline: 83px;
  }
}
@media screen and (min-width:1367px) {
  .p-reserv .l-inner {
    padding-inline: calc((100vw - 1200px) / 2);
  }
}

.p-reserv__body {
  padding-top: 50px;
}

.p-reserv__swiper-container,
.p-reserv__swiper,
.p-reserv__swiper-wrapper,
.p-reserv__swiper-slide {
  position: relative;
}

.p-reserv__swiper {
  margin-left: 30px;
}
@media screen and (min-width:1024px) {
  .p-reserv__swiper {
    margin-left: 0;
  }
}

@media screen and (min-width:1024px) {
  .p-reserv__swiper-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 34px;
  }
}

.p-reserv__swiper-slide {
  width: 310px;
  height: 483px;
  padding-bottom: 10px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width:1024px) {
  .p-reserv__swiper-slide {
    flex-direction: row;
    width: 100%;
    height: auto;
    max-width: 939px;
    padding-bottom: 0;
  }
}
.p-reserv__swiper-slide:last-of-type {
  margin-right: 40px;
}
@media screen and (min-width:1024px) {
  .p-reserv__swiper-slide:last-of-type {
    margin-right: 0;
  }
}
@media screen and (min-width:1024px) {
  .p-reserv__swiper-slide:last-of-type .p-reserv__swiper-num {
    height: 100%;
    background: url(../../assets/img/reserv-num-last.svg) no-repeat center center/contain;
  }
}

@media screen and (min-width:1024px) {
  .p-reserv__swiper-content {
    display: flex;
    gap: 30px;
  }
}

.p-reserv__swiper-num {
  padding-block: 3px 2px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.5;
  font-weight: 200;
  text-align: center;
  background: transparent linear-gradient(90deg, #d5616a 0%, #e5ab96 86%, #c6dddd 100%) 0% 0% no-repeat padding-box;
  position: relative;
}
.p-reserv__swiper-num::before {
  content: "";
  position: absolute;
  top: 54%;
  translate: 0 -50%;
  right: 15.29px;
  width: 6.46px;
  height: 12.91px;
  background: url(../../assets/img/Icon-right.png) no-repeat center center/contain;
}
@media screen and (min-width:1024px) {
  .p-reserv__swiper-num::before {
    background: none;
  }
}
@media screen and (min-width:1024px) {
  .p-reserv__swiper-num {
    width: 50px;
    height: calc(100% + 20px);
    background: url(../../assets/img/reserv-num-bg.svg) no-repeat center center/contain;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.p-reserv__swiper-head {
  padding-top: 25px;
  padding-inline: 10px;
}
@media screen and (min-width:1024px) {
  .p-reserv__swiper-head {
    padding-block: 25px;
    padding-inline: 0;
    max-width: 370px;
    align-content: center;
  }
}
@media screen and (min-width:1200px) {
  .p-reserv__swiper-head {
    max-width: 450px;
  }
}

.p-reserv__swiper-title {
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 1px;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width:1024px) {
  .p-reserv__swiper-title {
    text-align: left;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 1.2px;
  }
}

.p-reserv__swiper-text {
  padding-top: 20px;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.7px;
}
@media screen and (min-width:1024px) {
  .p-reserv__swiper-text {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.75px;
  }
}

.p-reserv__swiper-btn {
  margin-top: 14px;
  padding: 15px 15.4px 15px 30px;
  width: 291px;
  height: 51px;
  color: #ffffff;
  border: 1px solid #6b6360;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.75px;
  font-weight: 600;
  background: #6c5f5a;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1607843137);
  border-radius: 10px;
  position: relative;
}
.p-reserv__swiper-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 15.3px;
  width: 15.6px;
  height: 13px;
  background: url(../../assets/img/Icon-right-double.png) no-repeat center center/contain;
}
@media screen and (min-width:1024px) {
  .p-reserv__swiper-btn {
    margin-top: 30px;
  }
}
@media (any-hover: hover) {
  .p-reserv__swiper-btn:hover {
    color: #6b6360;
    background: White;
    transition: all 0.3s ease;
  }
  .p-reserv__swiper-btn:hover::after {
    background: url(../../assets/img/Icon-right-double-black.svg) no-repeat center center/cover;
  }
}

.p-reserv__swiper-img {
  margin-top: 30px;
  margin-inline: 10px;
  width: 290px;
  height: 179px;
  aspect-ratio: 290/179;
}
@media screen and (min-width:1024px) {
  .p-reserv__swiper-img {
    width: 380px;
    height: 234px;
    margin: 0;
  }
}
.p-reserv__swiper-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 20px;
  height: 40px;
  background: url(../../assets/img/swiper-arrow.svg) no-repeat center center/cover;
}
@media screen and (min-width:1024px) {
  .swiper-button-prev,
.swiper-button-next {
    display: none;
  }
}

.swiper-button-prev {
  left: 0;
  rotate: 180deg;
}
@media screen and (min-width:768px) {
  .swiper-button-prev {
    left: -30px;
  }
}

.swiper-button-next {
  right: 0;
}
@media screen and (min-width:768px) {
  .swiper-button-next {
    right: -30px;
  }
}

.p-reserv__btn-wrap {
  margin-top: 89px;
}
.p-reserv__btn-wrap .c-btn {
  margin-top: -5px;
}
@media screen and (min-width:768px) {
  .p-reserv__btn-wrap .c-btn {
    margin-top: 0;
  }
}

.p-column {
  padding-block: 102px 120px;
}
@media screen and (min-width:768px) {
  .p-column {
    padding-block: 120px;
  }
}
.p-column .l-inner {
  padding-inline: 15px;
}
@media screen and (min-width:768px) {
  .p-column .l-inner {
    padding-inline: 60px;
  }
}
@media screen and (min-width:1200px) {
  .p-column .l-inner {
    padding-inline: 83px;
  }
}
@media screen and (min-width:1367px) {
  .p-column .l-inner {
    padding-inline: calc((100vw - 1200px) / 2);
  }
}

.p-column__body-items {
  padding-top: 50px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-items: center;
  row-gap: 40px;
}
@media screen and (min-width:1024px) {
  .p-column__body-items {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.p-column__item {
  max-width: 380px;
  overflow: hidden;
}
@media (any-hover: hover) {
  .p-column__item:hover .p-column__item-img {
    scale: 1.1;
    transition: all 0.3s ease;
  }
}

.p-column__item-img {
  aspect-ratio: 360/189;
  transition: all 0.3s ease;
}
.p-column__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-column__item-head {
  padding-top: 15.5px;
  display: flex;
  gap: 20px;
}

.p-column__item-date {
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 0.7px;
}

.p-column__item-category {
  font-size: 11px;
  line-height: 1.6363636364;
  letter-spacing: 0.55px;
  text-align: center;
  padding: 1px 20px;
  min-width: 98px;
  height: 20px;
  color: #ffffff;
  background: #c75f62;
}

.p-column__item-title {
  padding-top: 15px;
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.p-page-head__img {
  aspect-ratio: 1366/405;
  position: relative;
}
.p-page-head__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1366/170;
  background: transparent linear-gradient(180deg, rgba(197, 160, 126, 0.6) 0%, rgba(255, 255, 255, 0) 100%) 0% 0% no-repeat padding-box;
}

.p-page-body {
  padding-top: clamp(60px, 8.0078125vw, 82px);
  color: #6c5f5a;
  position: relative;
  z-index: 1;
}
.p-page-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  background: transparent linear-gradient(180deg, #ffffff 0%, #fdf9f7 100%) 0% 0% no-repeat padding-box;
  z-index: -1;
}

.p-page-concept__top {
  padding-bottom: clamp(112px, 10.6881405564vw, 146px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
.p-page-concept__top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
  width: clamp(240px, 36.7496339678vw, 502px);
  aspect-ratio: 502/47;
  background: url(../../assets/img/arrow-down-top.svg) no-repeat center center/cover;
}

.p-page-body__title {
  text-align: center;
}

.p-page-body__title-en {
  font-size: clamp(48px, 5.859375vw, 60px);
  line-height: 1.4833333333;
}

.p-page-body__title-ja {
  margin-top: -2px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.p-page-concept__message {
  margin-top: clamp(40px, 5.859375vw, 60px);
  max-width: 688px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-page-concept__bold {
  font-size: clamp(16px, 1.7578125vw, 18px);
  line-height: 1.5;
  letter-spacing: 0.9px;
  font-weight: 700;
}
@media screen and (min-width:768px) {
  .p-page-concept__bold {
    text-align: center;
  }
}

.p-page-concept__name {
  padding-top: 14px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.8px;
  font-weight: 700;
  text-align: right;
}

.p-page-concept__text {
  padding-top: 47px;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 1.2px;
}
@media screen and (min-width:768px) {
  .p-page-concept__text {
    text-align: center;
  }
}

.p-page-concept__body {
  padding-top: 32px;
}

.p-page-concept__body-title {
  font-size: clamp(20px, 2.3333333333vw, 28px);
  line-height: 1.4642857143;
  letter-spacing: 1.4px;
  font-weight: 700;
  padding-bottom: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}
.p-page-concept__body-title span {
  border-bottom: 1px solid #c75f62;
}

.p-page-concept__body-items {
  padding-top: 60px;
  padding-bottom: clamp(120px, 11.4934114202vw, 157px);
  max-width: 1026px;
  margin-inline: auto;
}

.p-page-concept__body-item {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width:1024px) {
  .p-page-concept__body-item {
    margin-inline: 0;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
}
.p-page-concept__body-item + .p-page-concept__body-item {
  margin-top: 70px;
}
@media screen and (min-width:1024px) {
  .p-page-concept__body-item:nth-child(2n+3) {
    flex-direction: row-reverse;
  }
}

.p-page-concept__item-texts {
  max-width: 487px;
}
@media screen and (min-width:1024px) {
  .p-page-concept__item-texts {
    flex: 1;
  }
}

.p-page-concept__item-head {
  display: flex;
  align-items: center;
  gap: 17px;
}

.p-page-concept__item-num {
  width: clamp(60px, 6.6666666667vw, 80px);
  aspect-ratio: 1/1;
  padding-top: 6px;
  padding-left: clamp(21px, 2.25vw, 27px);
  color: #ffffff;
  font-size: clamp(32px, 3.5833333333vw, 43px);
  line-height: 1.488372093;
  letter-spacing: 2.15px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.p-page-concept__item-num::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent radial-gradient(closest-side at 50% 50%, #d5766d 0%, #d6966d 100%) 0% 0% no-repeat padding-box;
  border-radius: 50%;
  z-index: -1;
}

.p-page-concept__item-title {
  font-size: clamp(18px, 1.8333333333vw, 22px);
  line-height: 1.5;
  letter-spacing: 1.1px;
  font-weight: 500;
  flex: 1;
}

.p-page-concept__item-text {
  margin-top: 19px;
  font-size: 15px;
  line-height: 2.0666666667;
  letter-spacing: 1.2px;
}

.p-page-concept__item-img {
  aspect-ratio: 474/299;
  max-width: 474px;
  border-radius: 10px;
}
@media screen and (min-width:1024px) {
  .p-page-concept__item-img {
    flex: 0 0 46.1988304094%;
  }
}
.p-page-concept__item-img img {
  border-radius: 10px;
}

.p-page-concept__btn-wrap {
  margin-top: 53px;
  margin-bottom: clamp(60px, 5.8565153734vw, 80px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-page-concept__btn-wrap .c-btn {
  width: 300px;
  height: 90px;
  padding-left: 30px;
}
@media screen and (max-width:767px) {
  .p-page-concept__btn-wrap .c-btn span {
    font-size: 16px;
  }
}
.p-page-concept__btn-wrap .c-btn span::after {
  right: 25px;
}
@media screen and (min-width:768px) {
  .p-page-concept__btn-wrap .c-btn {
    width: 420px;
    text-align: center;
  }
}

.p-page-concept__body-program {
  padding-top: 34px;
  padding-bottom: clamp(140px, 15.8125915081vw, 216px);
  overflow: hidden;
  position: relative;
}
.p-page-concept__body-program::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 134.6266471449vw;
  aspect-ratio: 1839/803;
  background: url(../../assets/img/page-concept-program-bg.png) no-repeat center center/cover;
  pointer-events: none;
  max-width: 1839px;
}

.p-page-concept__program-text {
  padding-top: clamp(48px, 4.39238653vw, 60px);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 1.2px;
}
@media screen and (min-width:768px) {
  .p-page-concept__program-text {
    text-align: center;
  }
}

.p-page-concept__table-wrap {
  padding-top: 65px;
}

.p-page-concept__table {
  background: #ffffff;
}
.p-page-concept__table th,
.p-page-concept__table td {
  border: 1px solid #e8bab0;
}
.p-page-concept__table .table-title {
  font-size: 17px;
  line-height: 1.4705882353;
  letter-spacing: 0.85px;
  font-weight: 600;
}
.p-page-concept__table .table-title span {
  display: inline-block;
  padding-top: 2px;
  font-size: 13px;
  line-height: 1.4615384615;
  letter-spacing: 0.65px;
  font-weight: 600;
}
.p-page-concept__table .table-text {
  font-size: 14px;
  line-height: 1.6428571429;
  max-width: 217px;
}
.p-page-concept__table .table-row:last-of-type td {
  padding-bottom: 35px;
}

.p-page-bottom {
  padding-top: clamp(120px, 14.5680819912vw, 199px);
  padding-bottom: clamp(120px, 11.6398243045vw, 159px);
  position: relative;
}
.p-page-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1366/129;
  background: url(../../assets/img/arrow-down-bottom-big.svg) no-repeat center center/cover;
  pointer-events: none;
}

.p-page-bottom__title {
  font-size: clamp(24px, 2.6666666667vw, 32px);
  line-height: 1.4375;
  letter-spacing: 1.6px;
  font-weight: 600;
  padding-bottom: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}
.p-page-bottom__title span {
  border-bottom: 1px solid #c75f62;
}

.p-page-bottom__btn-wrap {
  margin-top: 65px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-page-bottom__btn-wrap .p-camp__btn {
  width: 330px;
}
@media screen and (min-width:768px) {
  .p-page-bottom__btn-wrap .p-camp__btn {
    width: 420px;
  }
}
.p-page-bottom__btn-wrap .p-camp__btn::before {
  content: "まずは体験で5大特典をゲット！";
  top: -18px;
  left: 50%;
  translate: -50%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.p-page-bottom__flow-title {
  margin-top: clamp(80px, 9.3704245974vw, 128px);
  padding-block: 13px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.4545454545;
  letter-spacing: 1.1px;
  font-weight: 600;
  text-align: center;
  background: #c75f62;
  max-width: 1060px;
  margin-inline: auto;
}

.p-flow__contents.p-page-bottom__flow-contents {
  padding-top: 80px;
}

.p-page-recommend .p-page-concept__top {
  padding-bottom: clamp(80px, 7.7598828697vw, 106px);
}

.p-page-body__text-bold {
  margin-top: clamp(48px, 4.39238653vw, 60px);
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.7083333333;
  letter-spacing: 1.2px;
  font-weight: 700;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-page-recommend__bottom {
  padding-top: 34px;
  padding-bottom: clamp(80px, 7.6866764275vw, 105px);
}

.p-page-recommend__bottom-title {
  font-size: clamp(20px, 2.3333333333vw, 28px);
  line-height: 1.4642857143;
  letter-spacing: 1.4px;
  font-weight: 700;
  padding-bottom: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}
.p-page-recommend__bottom-title span {
  border-bottom: 1px solid #c75f62;
}

.p-page-recommend__link-wrap {
  margin-top: clamp(60px, 5.4172767204vw, 74px);
  display: grid;
  max-width: 1060px;
  margin-inline: auto;
  gap: 49px 20px;
}
@media screen and (min-width:768px) {
  .p-page-recommend__link-wrap {
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
  }
}

.p-page-recommend__link {
  max-width: 510px;
  margin-inline: auto;
}
@media (any-hover: hover) {
  .p-page-recommend__link:hover .p-page-recommend__link-img img {
    scale: 1.1;
    transition: all 0.3s ease;
  }
}

.p-page-recommend__link-img {
  aspect-ratio: 510/283;
  max-width: 510px;
  border-radius: 10px;
  overflow: hidden;
}
.p-page-recommend__link-img img {
  transition: all 0.3s ease;
  border-radius: 10px;
}

.p-page-recommend__link-title {
  margin-top: 13px;
  padding-left: clamp(18px, 1.75vw, 21px);
  padding-bottom: 2px;
  font-size: clamp(18px, 1.75vw, 21px);
  line-height: 1.4090909091;
  letter-spacing: 1.05px;
  font-weight: 700;
  border-bottom: 1px solid #c75f62;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.p-page-recommend__link-title::before {
  content: "▶";
  position: absolute;
  top: 0;
  left: 0;
  font-size: clamp(18px, 1.75vw, 21px);
  color: #c75f62;
}

.p-page-recommend__link-text {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.75px;
}

.p-page-purpose {
  overflow: hidden;
}
.p-page-purpose .p-page-concept__top {
  width: auto;
  padding-bottom: clamp(80px, 7.3938506589vw, 101px);
}

.p-page-purpose__top {
  position: relative;
}
.p-page-purpose__top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 134.6266471449vw;
  aspect-ratio: 1839/803;
  background: url(../../assets/img/page-concept-program-bg.png) no-repeat center center/cover;
  pointer-events: none;
  max-width: 1839px;
}

.p-page-body__list-container {
  margin-top: 52px;
  max-width: 975px;
  padding-block: 34px 42px;
  padding-inline: 20px;
  margin-inline: auto;
  background: #ffffff;
  border: 1px solid #d87073;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}

.p-page-body__list-title {
  font-size: clamp(20px, 2.3333333333vw, 28px);
  line-height: 1.4642857143;
  letter-spacing: 1.4px;
  font-weight: 700;
  padding-bottom: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  border-bottom: 1px solid #c75f62;
  position: relative;
}

.p-page-body__list-wrap {
  margin-top: 31px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-page-body__list {
  padding-left: 36px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.9px;
  font-weight: 700;
  position: relative;
}
.p-page-body__list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 22px;
  background: url(../../assets/img/check-icon.svg) no-repeat center center/cover;
}
.p-page-body__list + .p-page-body__list {
  margin-top: 14px;
}

.p-page-purpose__bottom {
  padding-top: 40px;
  padding-bottom: clamp(96px, 9.5168374817vw, 130px);
}

.p-page-purpose__bottom-title {
  font-size: clamp(20px, 2.3333333333vw, 28px);
  line-height: 1.4642857143;
  letter-spacing: 1.4px;
  font-weight: 700;
  padding-bottom: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}
.p-page-purpose__bottom-title span {
  border-bottom: 1px solid #c75f62;
}
.p-page-purpose__bottom-title.title-second {
  margin-top: clamp(48px, 4.39238653vw, 60px);
  margin-bottom: clamp(80px, 7.5402635432vw, 103px);
}

.p-page-purpose__bottom-balls {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .p-page-purpose__bottom-balls {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-page-purpose__bottom-ball {
  width: clamp(180px, 18.3016105417vw, 250px);
  padding-top: 2px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 2.4px;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 1;
}
.p-page-purpose__bottom-ball::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent radial-gradient(closest-side at 50% 50%, #d5766d 0%, #d6966d 100%) 0% 0% no-repeat padding-box;
  border-radius: 50%;
  z-index: -1;
}
@media screen and (min-width:768px) {
  .p-page-purpose__bottom-ball {
    font-size: clamp(14px, 2.196193265vw, 30px);
    width: clamp(100px, 18.3016105417vw, 250px);
  }
}
@media screen and (min-width:768px) {
  .p-page-purpose__bottom-ball.is-small {
    font-size: clamp(14px, 1.8301610542vw, 25px);
  }
}

.p-page-purpose__bottom-desc {
  margin-top: 50px;
  font-size: clamp(16px, 1.6105417277vw, 22px);
  line-height: 1.5909090909;
  letter-spacing: 1.1px;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}

.p-page-purpose__bottom-title-pink {
  margin-top: clamp(80px, 10.1756954612vw, 139px);
  padding-block: 13px;
  padding-inline: 12px;
  color: #ffffff;
  font-size: clamp(18px, 1.6105417277vw, 22px);
  line-height: 1.4545454545;
  letter-spacing: 1.1px;
  font-weight: 600;
  text-align: center;
  background: #c75f62;
  max-width: 1060px;
  margin-inline: auto;
}

.p-page-purpose__bottom-items {
  max-width: 1026px;
  margin-inline: auto;
}
@media screen and (min-width:1024px) {
  .p-page-purpose__bottom-items .p-page-concept__body-item {
    width: 100%;
  }
}
@media screen and (min-width:1024px) {
  .p-page-purpose__bottom-items .p-page-concept__body-item .p-page-concept__item-texts {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.p-page-purpose__bottom-items .p-page-concept__body-item:first-of-type .p-page-concept__item-texts {
  max-width: 515px;
}
@media screen and (min-width:1024px) {
  .p-page-purpose__bottom-items .p-page-concept__body-item:nth-child(2n+3) {
    flex-direction: row;
  }
}
.p-page-body__list-comment {
  position: absolute;
  top: -43px;
  left: 50%;
  translate: -50%;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.4615384615;
  letter-spacing: 0.65px;
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  z-index: 1;
}
.p-page-body__list-comment::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  translate: -50%;
  width: 380px;
  height: 48px;
  background: url(../../assets/img/page-list-comment.svg) no-repeat center center/cover;
  z-index: -1;
}

.p-page-age__bottom-wrap {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  max-width: 1060px;
  margin-inline: auto;
  gap: 24px 0;
}
@media screen and (min-width:1024px) {
  .p-page-age__bottom-wrap {
    flex-direction: row;
    justify-content: space-between;
  }
}
.p-page-age__bottom-wrap .p-page-purpose__bottom-title-pink {
  margin-top: 18px;
}

.p-page-age__bottom-img {
  aspect-ratio: 319/299;
  max-width: 319px;
  border-radius: 10px;
  margin-inline: auto;
}
@media screen and (min-width:1024px) {
  .p-page-age__bottom-img {
    margin-inline: 0;
  }
}
.p-page-age__bottom-img img {
  border-radius: 10px;
}

.p-page-age__bottom-texts {
  width: 100%;
  max-width: 867px;
}
@media screen and (min-width:1024px) {
  .p-page-age__bottom-texts {
    margin-top: 65px;
  }
}

.p-page-age__bottom-text {
  font-size: clamp(16px, 1.6105417277vw, 22px);
  line-height: 1.8181818182;
  letter-spacing: 1.1px;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  max-width: 500px;
}
@media screen and (min-width:768px) {
  .p-page-age__bottom-text {
    max-width: none;
  }
}

.title-age {
  margin-top: clamp(56px, 5.1244509517vw, 70px);
  margin-bottom: clamp(80px, 7.467057101vw, 102px);
}

.p-voice__category-wrap {
  margin-top: 43px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  gap: 20px 10px;
}
@media screen and (min-width:1024px) {
  .p-voice__category-wrap {
    display: flex;
    flex-wrap: wrap;
    max-width: 710px;
    width: auto;
    margin-inline: auto;
  }
}

.p-voice__category {
  min-width: min(170px, 100%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 43px;
  background: transparent linear-gradient(180deg, #d56d6d 0%, #d7986d 100%) 0% 0% no-repeat padding-box;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.p-voice__category::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff2eb;
  border-radius: 25px;
  transition: all 0.3s ease;
}
.p-voice__category span {
  display: block;
  color: #e3837b;
  font-size: 14px;
  line-height: 1.4285714286;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .p-voice__category:hover::before, .p-voice__category.is-active::before {
    background: transparent;
    transition: all 0.3s ease;
  }
  .p-voice__category:hover span, .p-voice__category.is-active span {
    color: #ffffff;
    transition: all 0.3s ease;
  }
}
.p-voice__category.is-active::before {
  background: transparent;
}
.p-voice__category.is-active span {
  color: #ffffff;
}

.p-voice__item-wrap {
  margin-top: 60px;
  margin-bottom: clamp(40px, 4.3191800878vw, 59px);
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1060px;
  margin-inline: auto;
  gap: 24px;
  position: relative;
}
@media screen and (min-width:768px) {
  .p-voice__item-wrap {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-voice__item-wrap .no-content {
  position: relative;
  padding-block: 2rem;
  left: 50%;
  translate: -50%;
  text-align: center;
}

.p-voice__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 510px;
  margin-inline: auto;
  padding-bottom: clamp(20px, 3.02734375vw, 31px);
  background: #ffffff;
  position: relative;
}
@media screen and (min-width:768px) {
  .p-voice__item {
    margin-inline: 0;
  }
}
.p-voice__item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #6b6360;
  opacity: 0.2;
  pointer-events: none;
}

.p-voice__item-title {
  padding-block: 19px;
  padding-inline: 20px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.75px;
  font-weight: 600;
  background: #c75f62;
  text-align: center;
}

.p-voice__item-text {
  margin-top: 30px;
  padding-inline: 20px;
  font-size: 12px;
  line-height: 1.9166666667;
  width: 100%;
  max-width: 470px;
  margin-inline: auto;
}

.p-voice__item-categories {
  padding-top: clamp(32px, 5.6640625vw, 58px);
  padding-left: clamp(20px, 2.9282576867vw, 40px);
  padding-right: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (min-width:768px) {
  .p-voice__item-categories {
    margin-top: auto;
  }
}

.p-voice__item-category {
  min-width: 91px;
  padding: 4px 21px;
  background: #fff2eb;
  border-radius: 25px;
}
.p-voice__item-category span {
  display: block;
  color: #e3837b;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.p-voice__btn-wrap {
  margin-bottom: clamp(80px, 7.3206442167vw, 100px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-map {
  width: 100%;
  position: relative;
  z-index: 1;
}
.p-map iframe {
  width: 100%;
  aspect-ratio: 1366/400;
  min-height: 200px;
  max-height: 400px;
}

.p-footer {
  position: relative;
  z-index: 1;
}
.p-footer::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../../assets/img/top-footer-bg.png) no-repeat center center/cover;
  z-index: -1;
}

.p-footer__menu {
  padding-block: 60px 81px;
  position: relative;
}
.p-footer__menu::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #6c635f;
  opacity: 0.1;
}
@media screen and (min-width:1024px) {
  .p-footer__menu {
    padding-block: 80px 81px;
  }
}

.p-footer__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 20px;
  gap: 30px;
}
@media screen and (min-width:1024px) {
  .p-footer__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (min-width:1200px) {
  .p-footer__list {
    gap: 60px;
  }
}
.p-footer__list li a {
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 0.7px;
}
.p-footer__list .menu-item-has-children {
  text-align: center;
}
.p-footer__list .sub-menu {
  padding-top: 16px;
  align-content: center;
}
@media screen and (min-width:1024px) {
  .p-footer__list .sub-menu {
    padding-top: 24px;
  }
}
.p-footer__list .sub-menu a {
  display: block;
  padding-block: 4px;
}

.p-footer__info {
  padding-block: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width:768px) {
  .p-footer__info {
    padding-block: 101px 0;
  }
}

.p-footer__logo {
  width: 203.89px;
  height: 80px;
  margin-inline: auto;
}
.p-footer__logo img {
  width: 100%;
}
@media (any-hover: hover) {
  .p-footer__logo:hover {
    opacity: 0.7;
  }
}

.p-footer__text-wrap {
  padding-top: 40px;
  margin-bottom: 100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (any-hover: hover) {
  .p-footer__text-wrap a:hover {
    opacity: 0.7;
  }
}

.p-footer__text {
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 0.7px;
}

.p-copyright {
  display: block;
  text-align: center;
  padding-bottom: 98px;
  font-size: 11px;
  line-height: 1.5454545455;
  letter-spacing: 0.55px;
}
@media screen and (min-width:1024px) {
  .p-copyright {
    padding-bottom: 29px;
  }
}

.p-single {
  padding-top: 50px;
  background: #fefaf8;
  position: relative;
}
.p-single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 664px;
  background: url(../../assets/img/single-fv.png) no-repeat center center/cover;
  pointer-events: none;
}
@media screen and (min-width:768px) {
  .p-single {
    padding-top: 70px;
  }
}

.p-single__content-wrap {
  padding-top: 80px;
  padding-bottom: 100px;
  max-width: 1040px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width:768px) {
  .p-single__content-wrap {
    padding-block: 128px 150px;
  }
}

.p-single__content-info {
  display: flex;
  gap: 15.5px;
}

.content-info__date {
  color: #c75f62;
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.content-info__category {
  min-width: 120px;
  padding: 4px 30px;
  background: #ffffff;
  color: #c75f62;
  font-size: 12px;
  line-height: 1.4166666667;
  border-radius: 5px;
  text-align: center;
}

.p-single__title-h1 {
  margin-block: 48px 80px;
  padding-left: 28px;
  font-size: 25px;
  line-height: 1.44;
  letter-spacing: 1.5px;
  font-weight: 600;
  position: relative;
}
.p-single__title-h1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 34px;
  background: #c75f62;
}

.p-single__content {
  padding: 60px 20px;
  background: #ffffff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.8333333333;
  letter-spacing: 1.2px;
}
.p-single__content h2 {
  margin-top: 80px;
  padding-left: 23px;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 1.2px;
  font-weight: 600;
  position: relative;
}
.p-single__content h2::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 5px;
  background: #c75f62;
}
.p-single__content p {
  font-size: 15px;
  line-height: 1.8333333333;
  letter-spacing: 1.2px;
  padding-top: 45px;
}
.p-single__content p:first-of-type {
  padding-top: 0;
}
.p-single__content p + .p-single__content p {
  padding-top: 40px;
}
.p-single__content .wp-block-image {
  margin-top: 78px;
}
.p-single__content ol {
  list-style: auto;
  padding-left: 30px;
}
.p-single__content ol li {
  list-style-type: auto;
}
.p-single__content ol li:nth-of-type(n + 2) {
  margin-top: 10px;
}
.p-single__content ol li::marker {
  color: #c75f62;
  background: #c75f62;
  font-size: 1.2rem;
}
@media screen and (min-width:768px) {
  .p-single__content {
    padding: 100px 70px;
  }
}

.p-single__btn {
  display: block;
  margin-top: 80px;
  width: 218px;
  height: 45.5px;
  padding-top: 12.75px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.4285714286;
  font-weight: 500;
  background: #e6b795;
  text-align: center;
  border-radius: 20px;
  margin-inline: auto;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .p-single__btn:hover {
    opacity: 0.7;
    transition: all 0.3s ease;
  }
}

.p-page-senior {
  overflow: hidden;
  color: #6c5f5a;
  position: relative;
  z-index: 1;
}
.p-page-senior::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  background: transparent linear-gradient(180deg, #ffffff 0%, #fdf9f7 100%) 0% 0% no-repeat padding-box;
  z-index: -1;
}

.p-page-senior__top {
  position: relative;
  width: auto;
  padding-top: clamp(60px, 8.0078125vw, 82px);
  padding-bottom: clamp(80px, 7.3938506589vw, 101px);
}
.p-page-senior__top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
  width: 134.6266471449vw;
  aspect-ratio: 1839/803;
  background: url(../../assets/img/page-concept-program-bg.png) no-repeat center center/cover;
  pointer-events: none;
  max-width: 1839px;
}

.p-page-body__leadBold-senior {
  margin-top: 53px;
  margin-inline: auto;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.9583333333;
  letter-spacing: 0.0208333333em;
}

.p-page-body__leadRegular-senior {
  margin-top: 15px;
  margin-inline: auto;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.0533333333em;
}

.p-page-senior__btn-wrap {
  margin-top: 105px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-page-senior__btn-wrap .p-camp__btn {
  width: 330px;
}
@media screen and (min-width:768px) {
  .p-page-senior__btn-wrap .p-camp__btn {
    width: 420px;
  }
}
.p-page-senior__btn-wrap .p-camp__btn::before {
  content: "まずはGRANLABでピラティスを体験";
  top: -18px;
  left: 50%;
  translate: -50%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.p-page-senior__list-container {
  margin-top: 100px;
}

.p-page-senior__follow {
  margin-inline: calc(50% - 50vw);
  padding-block: 75px 90px;
  background-color: #faf3f4;
}

.p-page-senior__followText {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  color: #6c5f5a;
  font-size: clamp(16px, 1.7578125vw, 18px);
  font-weight: 500;
  line-height: 2.05;
  letter-spacing: 0.0444444444em;
}

.p-page-senior__pursue {
  margin-top: 5.3125rem;
}

.p-page-senior__pursue-wrap {
  display: flex;
  flex-direction: column;
  max-width: 1060px;
  margin-inline: auto;
  gap: 24px 0;
}
@media screen and (min-width:1024px) {
  .p-page-senior__pursue-wrap {
    flex-direction: row;
    align-items: center;
  }
}

.p-page-senior__pursue-title-pink {
  margin-top: 18px;
  padding-block: 13px;
  padding-inline: 12px;
  color: #ffffff;
  font-size: clamp(18px, 1.6105417277vw, 22px);
  line-height: 1.4545454545;
  letter-spacing: 1.1px;
  font-weight: 600;
  text-align: center;
  background: #c75f62;
  max-width: 1060px;
  margin-inline: auto;
}
@media screen and (min-width:1024px) {
  .p-page-senior__pursue-title-pink {
    margin-inline: unset;
  }
}

.p-page-senior__pursue-img {
  aspect-ratio: 319/299;
  max-width: 319px;
  border-radius: 10px;
  margin-inline: auto;
}
@media screen and (min-width:1024px) {
  .p-page-senior__pursue-img {
    margin-inline: 0;
  }
}
.p-page-senior__pursue-img img {
  border-radius: 10px;
}

.p-page-senior__pursue-texts {
  width: 100%;
  max-width: 867px;
  display: flex;
  flex-direction: column;
  gap: 2.8125rem;
}

.p-page-senior__pursue-text {
  font-size: clamp(16px, 1.6105417277vw, 22px);
  line-height: 1.8181818182;
  letter-spacing: 1.1px;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  max-width: 500px;
}
@media screen and (min-width:768px) {
  .p-page-senior__pursue-text {
    max-width: none;
  }
}

.p-page-senior__sugestion {
  margin-top: 3.75rem;
  max-width: 1025px;
  margin-inline: auto;
}

.p-page-senior__feature {
  margin-top: 8rem;
  padding-bottom: 6.25rem;
}

.p-page-senior__bigArrowWrap {
  margin-inline: calc(50% - 50vw);
}

.p-page-senior__cta {
  padding-block: 5rem 5rem;
}

.p-page-senior__sceirnceTitle {
  margin-top: clamp(80px, 9.3704245974vw, 128px);
  padding-block: 13px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.4545454545;
  letter-spacing: 1.1px;
  font-weight: 600;
  text-align: center;
  background: #c75f62;
  max-width: 1060px;
  margin-inline: auto;
}

@media screen and (min-width:768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (min-width:1024px) {
  .u-sp-xl {
    display: none !important;
  }
}
@media screen and (min-width:1200px) {
  .u-sp-xxl {
    display: none !important;
  }
}
@media screen and (max-width:767px) {
  .u-pc {
    display: none !important;
  }
}
.u-xxl {
  display: none !important;
}
@media screen and (min-width:1200px) {
  .u-xxl {
    display: block !important;
  }
}

.u-font {
  font-family: "Noto Sans JP", sans-serif;
}
.u-font__jp {
  font-family: "Noto Sans JP", sans-serif;
}
.u-font__en {
  font-family: "Noto Serif", serif;
}

.u-text__center {
  text-align: center !important;
}
@media screen and (max-width:767px) {
  .u-text__center--sp {
    text-align: center !important;
  }
}
@media screen and (min-width:768px) {
  .u-text__center--pc {
    text-align: center !important;
  }
}

.u-text__left {
  text-align: left !important;
}
@media screen and (max-width:767px) {
  .u-text__left--sp {
    text-align: left !important;
  }
}
@media screen and (min-width:768px) {
  .u-text__left--pc {
    text-align: left !important;
  }
}

.u-text__right {
  text-align: right !important;
}
@media screen and (max-width:767px) {
  .u-text__right--sp {
    text-align: right !important;
  }
}
@media screen and (min-width:768px) {
  .u-text__right--pc {
    text-align: right !important;
  }
}

.u-text__nowrap {
  white-space: nowrap;
}
@media screen and (max-width:767px) {
  .u-text__nowrap--sp {
    white-space: nowrap;
  }
}
@media screen and (min-width:768px) {
  .u-text__nowrap--pc {
    white-space: nowrap;
  }
}

.u-pointer__none {
  pointer-events: none !important;
}
@media screen and (max-width:767px) {
  .u-pointer__none--sp {
    pointer-events: none !important;
  }
}
@media screen and (min-width:768px) {
  .u-pointer__none--pc {
    pointer-events: none !important;
  }
}
/*# sourceMappingURL=style.css.map */