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

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  font-size: 15px;
}
@media (max-width: 1140px) {
  html {
    font-size: 1.5789473684vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 3.8vw;
  }
}

body {
  font-family: "Noto Serif JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #333;
  background: #fff;
}

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

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  a:hover {
    opacity: 1;
  }
}

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

.l-inner {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding: 0 3.91%;
  }
}

.l-section {
  padding: 6.6666666667rem 0;
}
@media screen and (max-width: 768px) {
  .l-section {
    padding: 5.3333333333rem 0;
  }
}

.c-cta {
  padding: 6.6666666667rem 0;
  background-image: url("/../images/cta-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .c-cta {
    padding: 4rem 0;
    background-image: url("/../images/cta-bg-sp.png");
  }
}

.c-cta .c-cta__title-main {
  color: #fff;
}

.c-cta .c-cta__title-main::before {
  background: #fff;
}

.c-cta__btn-box {
  position: relative;
  display: flex;
  gap: 10%;
  padding: 0 4.5%;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .c-cta__btn-box {
    max-width: 58.9%;
    margin: 0 auto;
    flex-direction: column;
    gap: 2.6666666667rem;
    padding: 0;
    margin-top: 2.6666666667rem;
  }
}

.c-cta__btn-box::before,
.c-cta__btn-box::after {
  content: "";
  width: 1px;
  height: 50px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
}
@media screen and (max-width: 768px) {
  .c-cta__btn-box::before,
  .c-cta__btn-box::after {
    display: none;
  }
}

.c-cta__btn-box::before {
  left: 34%;
}

.c-cta__btn-box::after {
  right: 32%;
}

.c-cta__btn {
  position: relative;
  z-index: 1;
}

.c-cta__btn::before {
  content: "";
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #b1883a;
  opacity: 0;
  z-index: -1;
}

.c-cta__btn img {
  -o-object-fit: contain;
     object-fit: contain;
}

.c-cta__btn:hover a,
.c-cta__btn:hover::before {
  opacity: 1;
}

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

.c-section__sub-title {
  position: relative;
  display: inline-block;
  font-size: 1.3333333333rem;
  letter-spacing: 0.1em;
  color: #b18839;
  padding-bottom: 1.3333333333rem;
}
@media screen and (max-width: 768px) {
  .c-section__sub-title {
    padding-bottom: 0.6666666667rem;
  }
}

.c-section__sub-title::before {
  content: "";
  width: 2rem;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #b18839;
}

.c-section__main-title {
  font-size: 2.1333333333rem;
  letter-spacing: 0.1em;
  margin-top: 1.3333333333rem;
}
@media screen and (max-width: 768px) {
  .c-section__main-title {
    margin-top: 0.6666666667rem;
  }
}

.c-section__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  margin-top: 2rem;
}

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

.c-section__title2-main {
  position: relative;
  font-size: 2.1333333333rem;
  padding-bottom: 1.3333333333rem;
}
@media screen and (max-width: 768px) {
  .c-section__title2-main {
    padding-bottom: 0.6666666667rem;
  }
}

.c-section__title2-main::before {
  content: "";
  width: 2rem;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #b18839;
}

.c-section__title2-main span {
  color: #B1883A;
}

.p-campaign {
  background-image: url("/../images/campaign-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 3rem 0 3.3333333333rem;
}
@media screen and (max-width: 768px) {
  .p-campaign {
    padding: 3.3333333333rem 0;
  }
}

.p-campaign__body {
  position: relative;
  background: #fff;
  outline: 1px solid #b1883a;
  outline-offset: -0.6666666667rem;
  text-align: center;
  padding: 3.3333333333rem;
}
@media screen and (max-width: 768px) {
  .p-campaign__body {
    padding: 3rem 2.2666666667rem 3.3333333333rem;
  }
}

.p-campaign__title {
  position: relative;
  display: inline-block;
  font-size: 2.2666666667rem;
  line-height: 1;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #333;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-campaign__title {
    line-height: 1.5;
    border-bottom: none;
    padding-bottom: 0rem;
  }
}

.p-campaign__title span {
  color: #b1883a;
}

.p-campaign__title .is-big {
  font-size: 4.6666666667rem;
  line-height: 1;
  letter-spacing: 0.005em;
}

.p-campaign__text {
  font-size: 1.4666666667rem;
  letter-spacing: 0.1em;
  line-height: 1.6363636364;
  margin-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-campaign__text {
    max-width: 33.3333333333rem;
    margin: 0 auto;
    border-top: 1px solid #333;
    padding-top: 2rem;
    margin-top: 1.6rem;
  }
}

.p-campaign__text span {
  color: #b1883a;
}

.p-campaign__btn {
  margin-top: 1.3333333333rem;
}
@media screen and (max-width: 768px) {
  .p-campaign__btn {
    margin-top: 2.1333333333rem;
  }
}

.p-campaign__btn a {
  display: inline-block;
  width: 100%;
  max-width: 300px;
}

.p-campaign__image-left,
.p-campaign__image-right {
  position: absolute;
  bottom: -2.6666666667rem;
  width: 14.6666666667rem;
}
@media screen and (max-width: 768px) {
  .p-campaign__image-left,
  .p-campaign__image-right {
    width: 7.3333333333rem;
    top: -4rem;
    bottom: auto;
  }
}

.p-campaign__image-left {
  left: -5.3333333333rem;
}
@media screen and (max-width: 768px) {
  .p-campaign__image-left {
    left: -6.3333333333rem;
  }
}

.p-campaign__image-right {
  right: -6.6666666667rem;
}
@media screen and (max-width: 768px) {
  .p-campaign__image-right {
    right: -6.3333333333rem;
  }
}

.p-campaign__addition-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8666666667rem;
  font-size: min(0.8666666667rem, 13px);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #fff;
  margin-top: 0.8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-campaign__addition-text {
    text-align: left;
  }
}

@media screen and (max-width: 1000px) and (min-width: 769px) {
  .p-campaign__image-left,
  .p-campaign__image-right {
    position: absolute;
    bottom: -1.3333333333rem;
    width: 13.3333333333rem;
  }
}
@media screen and (max-width: 600px) {
  .p-campaign__title {
    font-size: clamp(20px, 5.5vw, 34px);
  }
  .p-campaign__title .is-big {
    font-size: clamp(40px, 11.5vw, 70px);
  }
  .p-campaign__text {
    font-size: clamp(16px, 4.2vw, 22px);
    text-align: left;
  }
  .p-campaign__image-left,
  .p-campaign__image-right {
    width: 6.6666666667rem;
  }
}
.p-consultation__tag-wrap {
  margin-top: 3.3333333333rem;
}

.p-consultation__tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1%;
}
@media screen and (max-width: 768px) {
  .p-consultation__tags {
    flex-wrap: wrap;
    gap: 0.6666666667rem;
  }
}

.p-consultation__tags:not(:first-of-type) {
  margin-top: 0.6666666667rem;
}

.p-consultation__tag {
  min-width: 14.6666666667rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(11px, 1.4vw, 20px);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #fff;
  background: #000;
  border-radius: 2rem;
  padding: 0.5333333333rem 2.4%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-consultation__tag {
    min-width: 11.1333333333rem;
    font-size: clamp(10px, 3vw, 15.5px);
    line-height: 1;
  }
}

.p-drawer__icon {
  position: absolute;
  top: clamp(20px, 4vw, 25px);
  right: clamp(15px, 4vw, 30px);
  z-index: 1000;
}

.p-drawer__icon.is-active .p-drawer__icon-bar1 {
  width: 22px;
  top: 50%;
  transform: rotate(-45deg);
}

.p-drawer__icon.is-active .p-drawer__icon-bar2 {
  display: none;
}

.p-drawer__icon.is-active .p-drawer__icon-bar3 {
  width: 22px;
  top: 50%;
  transform: rotate(45deg);
}

.p-drawer__icon-bars {
  width: 30px;
  height: 22px;
  display: block;
  position: relative;
  z-index: 1000;
}

.p-drawer__icon-bar1,
.p-drawer__icon-bar2,
.p-drawer__icon-bar3 {
  position: absolute;
  width: 30px;
  height: 2px;
  background: #fff;
  top: 0;
  left: 0;
  transition: ease 0.5s;
  border-radius: 5px;
}

.p-drawer__icon-bar1 {
  top: 0px;
}

.p-drawer__icon-bar2 {
  top: 10px;
}

.p-drawer__icon-bar3 {
  top: 20px;
}

.p-drawer__icon.is-active .p-drawer__icon-bar1,
.p-drawer__icon.is-active .p-drawer__icon-bar3 {
  background: #333;
}

.p-drawer__contents {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #F2F2F2;
  padding: 3rem 2rem;
  z-index: 250;
  transform: translateX(105%);
  transition: all 0.5s;
}

.p-drawer__contents.is-active {
  transform: translateX(0);
}

.p-drawer__contents-logo {
  text-align: center;
}

.p-drawer__contents-logo img {
  width: 16.6666666667rem;
}

.p-drawer__content-items {
  text-align: center;
  margin-top: 1.3333333333rem;
}

.p-drawer__content-item {
  position: relative;
  text-align: center;
  border-bottom: 1px solid #333;
  padding: 2rem 2.6666666667rem;
  text-align: left;
}

.p-drawer__content-item::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 6px);
  transform: translateY(-50%);
  left: 0;
  width: 14px;
  height: 14px;
  border: solid #b1883a;
  border-width: 0 3px 3px 0;
  transform: rotate(-45deg);
}

.p-drawer__content-item a {
  display: block;
  font-size: clamp(20px, 5vw, 30px);
  letter-spacing: 0.08em;
}

.p-evaluation {
  background: #F2F2F2;
}

.p-evaluation__image {
  margin-top: 1.8666666667rem;
}

.p-faq__boxs {
  margin-top: 3.3333333333rem;
  cursor: pointer;
}

.p-faq__box {
  border-bottom: 1px solid #d6d6d6;
  padding: 1.6666666667rem 0;
}
@media screen and (max-width: 768px) {
  .p-faq__box {
    padding: 1.3333333333rem 0;
  }
}

.p-faq__box:first-child {
  border-top: 1px solid #d6d6d6;
}

.p-faq__box-q {
  position: relative;
  padding: 0 3.3333333333rem 0 3rem;
}
@media screen and (max-width: 768px) {
  .p-faq__box-q {
    padding: 0 2.8rem 0 2.1333333333rem;
  }
}

.p-faq__box-q p {
  font-size: 1.4666666667rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-faq__box-q p {
    font-size: clamp(16px, 4vw, 22px);
  }
}

.p-faq__box-q::before {
  content: "Q";
  position: absolute;
  top: 0;
  left: 1.0666666667rem;
  font-size: 1.3333333333rem;
  color: #b1883a;
}
@media screen and (max-width: 768px) {
  .p-faq__box-q::before {
    left: 0.5333333333rem;
    font-size: clamp(15px, 4vw, 20px);
  }
}

.p-faq__box-q::after {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: calc(50% + 5px);
  transform: translateY(-50%);
  right: 20px;
  background-image: url(/../images/arrow-bottom-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.p-faq__box.is-open .p-faq__box-q::after {
  top: calc(50% - 5px);
  transform: translateY(-50%) rotate(180deg);
}

.p-faq__box-a {
  max-height: 0;
  overflow: hidden;
  background: #f5f1e8;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.p-faq__box.is-open .p-faq__box-a {
  margin-top: 1rem;
}

.p-faq__box:first-child .p-faq__box-a {
  max-height: none;
}

.p-faq__box.is-open .p-faq__box-a {
  max-height: none;
}

.p-faq__box-a p {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  padding: 1.4666666667rem 3rem 1.4666666667rem 5.3333333333rem;
}
@media screen and (max-width: 768px) {
  .p-faq__box-a p {
    padding: 1.0666666667rem 1.6rem 1.0666666667rem 4.2666666667rem;
  }
}

.p-faq__box-a p::before {
  content: "A.";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 3.3333333333rem;
  font-size: 1.3333333333rem;
  color: #b1883a;
}
@media screen and (max-width: 768px) {
  .p-faq__box-a p::before {
    left: 1.6666666667rem;
    font-size: clamp(15px, 4vw, 20px);
  }
}

.p-flow {
  padding: 6.6666666667rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-flow {
    padding: 5.3333333333rem 0 0;
  }
}

.p-flow__tabs {
  margin-top: 3.3333333333rem;
}
@media screen and (max-width: 768px) {
  .p-flow__tabs {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-top: 3.3333333333rem;
  }
}

@media screen and (max-width: 768px) {
  .p-flow .p-flow__tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-flow__tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3333333333rem;
  padding: 2.3333333333rem 5rem;
  background-color: transparent;
  opacity: 0.6;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media screen and (max-width: 768px) {
  .p-flow__tab {
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.3333333333rem;
    padding: 1.3333333333rem 6.25%;
  }
}

.p-flow__tab.current {
  background-color: #f5f1e8;
  opacity: 1;
}

.p-flow__tab::before {
  content: "";
  width: 2rem;
  height: 2px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #f29600;
}

.p-flow__tab:first-of-type .p-flow__tab-icon img {
  max-width: 6rem;
}
@media screen and (max-width: 768px) {
  .p-flow__tab:first-of-type .p-flow__tab-icon img {
    max-width: 4.5333333333rem;
  }
}

.p-flow__tab:nth-of-type(2) .p-flow__tab-icon img {
  max-width: 5.3333333333rem;
}
@media screen and (max-width: 768px) {
  .p-flow__tab:nth-of-type(2) .p-flow__tab-icon img {
    max-width: 4.5333333333rem;
  }
}

.p-flow__tab-icon img {
  -o-object-fit: contain;
     object-fit: contain;
  filter: invert(20%) sepia(0%) saturate(0%) brightness(60%) contrast(100%);
  min-height: 4.5333333333rem;
}
@media screen and (max-width: 768px) {
  .p-flow__tab-icon img {
    min-height: 3.4666666667rem;
  }
}

.p-flow__tab.current .p-flow__tab-icon img {
  filter: none;
}

.p-flow__tab-title {
  font-size: clamp(23px, 1.5vw, 32px);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-flow__tab-title {
    font-size: clamp(20px, 5vw, 32px);
    text-align: center;
  }
}

.p-flow__tab-sub-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-top: 0.3333333333rem;
}
@media screen and (max-width: 768px) {
  .p-flow__tab-sub-title {
    font-size: clamp(11px, 3vw, 15px);
  }
}

.p-flow__mail,
.p-flow__visit {
  background: #f5f1e8;
  padding: 3.3333333333rem 0;
}

.p-flow .p-flow__mail-item {
  justify-content: space-between;
  gap: 5.5%;
  background: #fff;
  padding: 4% 4rem 3%;
}
@media screen and (max-width: 768px) {
  .p-flow .p-flow__mail-item {
    flex-direction: column;
    padding: 2.6666666667rem 6.8%;
  }
}

.p-flow__mail-item:not(:first-of-type) {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-flow__mail-item:not(:first-of-type) {
    margin-top: 2.6666666667rem;
  }
}

.p-flow__mail-item:first-of-type {
  position: relative;
}

.p-flow__mail-item:first-of-type::before {
  content: "";
  width: 30px;
  height: 17px;
  position: absolute;
  bottom: -2.4666666667rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("/../images/arrow-bottom-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-flow__mail-item:first-of-type::before {
    bottom: -2rem;
  }
}

.p-flow .p-flow__mail-item-contents {
  width: 59.5%;
  justify-content: flex-start;
  gap: 7%;
}
@media screen and (max-width: 768px) {
  .p-flow .p-flow__mail-item-contents {
    width: 100%;
    justify-content: center;
    gap: 5%;
  }
}

.p-flow__mail-item:first-of-type .p-flow__mail-item-contents {
  gap: 10%;
}
@media screen and (max-width: 768px) {
  .p-flow__mail-item:first-of-type .p-flow__mail-item-contents {
    gap: 5%;
  }
}

.p-flow__mail-item-icon {
  -o-object-fit: contain;
     object-fit: contain;
}

.p-flow__mail-item:first-of-type .p-flow__mail-item-icon {
  max-width: 4.6666666667rem;
}

.p-flow__mail-item:nth-of-type(2) .p-flow__mail-item-icon {
  max-width: 6.2666666667rem;
}

.p-flow__mail-item-text {
  font-size: clamp(13px, 1.5vw, 15px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-flow__mail-item-text {
    font-size: clamp(10px, 3vw, 15px);
  }
}

.p-flow__mail-item-text .accent {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 900;
  color: #b1883a;
  padding-inline: 0.3333333333rem;
}
@media screen and (max-width: 768px) {
  .p-flow__mail-item-text .accent {
    font-size: clamp(12px, 3.1vw, 18px);
    padding-inline: 0.2rem;
  }
}

.p-flow__mail-item-text .is-big {
  font-family: "Noto Serif JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: 2.1333333333rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .p-flow__mail-item-text .is-big {
    font-size: clamp(20px, 5vw, 32px);
  }
}

.p-flow__mail-item-btn {
  width: 42.1%;
  min-width: 24.6666666667rem;
}
@media screen and (max-width: 768px) {
  .p-flow__mail-item-btn {
    width: 100%;
    min-width: auto;
    max-width: 24.6666666667rem;
    margin-top: 2rem;
  }
}

.p-flow__purchase-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3333333333rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-flow__purchase-items {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.6666666667rem;
  }
}

.p-flow__purchase-item {
  position: relative;
  background: #fff;
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  .p-flow__purchase-item {
    padding: 2rem 2.6666666667rem;
  }
}

.p-flow__purchase-item::before {
  content: "";
  width: 30px;
  height: 17px;
  position: absolute;
  top: -2.4666666667rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("/../images/arrow-bottom-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-flow__purchase-item::before {
    top: -2rem;
  }
}

@media screen and (max-width: 768px) {
  .p-flow__purchase-item:nth-of-type(n + 2)::before {
    display: none;
  }
}

.p-flow__purchase-item-title {
  font-size: 2.1333333333rem;
  text-align: center;
  border-bottom: 1px solid #333;
  padding-bottom: 0.6666666667rem;
}
@media screen and (max-width: 768px) {
  .p-flow__purchase-item-title {
    font-size: clamp(20px, 5vw, 32px);
  }
}

.p-flow__purchase-item-image,
.p-flow__purchase-item-text {
  margin-top: 1.3333333333rem;
}

.p-flow__purchase-item-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-flow__purchase-item-text {
    font-size: clamp(11px, 3vw, 14px);
  }
}

.p-flow__visit__map {
  position: relative;
  width: 100%;
  padding-top: 46%;
}
@media screen and (max-width: 768px) {
  .p-flow__visit__map {
    padding-top: 68%;
  }
}

.p-flow__visit__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-flow__visit .p-flow__purchase-item-image img {
  padding-right: 12%;
}

@media screen and (max-width: 768px) {
  .p-flow__visit .p-flow__purchase-items {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .p-flow__visit .p-flow__purchase-item::before {
    display: none;
  }
}

.p-footer {
  background: #F2F2F2;
  padding: 4rem 0 1.3333333333rem;
}
@media screen and (max-width: 768px) {
  .p-footer {
    padding: 3.3333333333rem 0 6.6666666667rem;
  }
}

.p-footer__logo img {
  width: 100%;
  max-width: 16.6666666667rem;
  margin: 0 auto;
}

.p-footer__nav {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-footer__nav {
    margin-top: 3.3333333333rem;
  }
}

.p-footer .p-footer__lists {
  width: 100%;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-footer .p-footer__lists {
    flex-direction: column;
    gap: 1.3333333333rem;
  }
}

.p-footer .p-footer__list {
  position: relative;
}

.p-footer .p-footer__list::before {
  content: "";
  width: 1px;
  height: 90%;
  position: absolute;
  top: calc(50% + 2px);
  transform: translateY(-50%) rotate(20deg);
  right: -2rem;
  background: #333;
  transform-origin: top right;
}
@media screen and (max-width: 768px) {
  .p-footer .p-footer__list::before {
    display: none;
  }
}

.p-footer .p-footer__list:last-of-type:before {
  display: none;
}

.p-footer__list a {
  font-size: 1.3333333333rem;
  letter-spacing: 0.08em;
}

.p-footer__text {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-footer__text {
    margin-top: 3.3333333333rem;
  }
}

.p-footer__text,
.p-footer__copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8666666667rem;
  font-weight: 400;
  line-height: 1.6428571429;
  letter-spacing: 0.08em;
  text-align: center;
}

.p-footer__top-btn {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 50px;
  right: 50px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 30;
}
@media screen and (max-width: 768px) {
  .p-footer__top-btn {
    bottom: 6.3333333333rem;
    right: 10px;
  }
}

.p-footer__fix {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 30;
}

.p-footer__fix-btn-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6666666667rem;
  padding: 0.6666666667rem;
}

.p-footer__fix-btn img {
  aspect-ratio: 305/64;
}

.p-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.6666666667rem 0;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .p-header {
    padding: 15.5px 0;
  }
}

.is-visible {
  opacity: 1;
}

.is-fixed {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
}

.is-fading {
  opacity: 0;
}

.p-header__inner {
  width: 100%;
  max-width: 1840px;
  margin: 0 auto;
  padding: 0 1.3333333333rem;
}

.p-header .p-header__contents {
  justify-content: space-between;
  gap: 2%;
}

.p-header__logo {
  width: 13.3333333333rem;
  min-width: 100px;
  flex-shrink: 1;
}
@media screen and (max-width: 768px) {
  .p-header__logo {
    width: 11.3333333333rem;
  }
}

.p-header__nav {
  flex-shrink: 0;
}

.p-header__lists {
  gap: 2.5vw;
}

.p-header__list {
  position: relative;
  line-height: 1.1;
  text-align: center;
}

.p-header__list::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: calc(50% + 2px);
  transform: translateY(-50%) rotate(20deg);
  right: -1.4vw;
  background: #fff;
  transform-origin: top right;
}

.p-header__list:last-of-type:before {
  display: none;
}

.p-header__list a {
  display: block;
  height: inherit;
  font-size: clamp(10px, 1.2vw, 20px);
  letter-spacing: 0.08em;
  color: #fff;
}

.p-header__list a:hover {
  opacity: 1;
  color: #B1883A;
}

.p-header__btn-box {
  justify-content: flex-end;
  gap: 2.5%;
  flex-shrink: 1;
}

.p-header__btn {
  max-width: 15.3333333333rem;
}

.p-header__btn a {
  opacity: 1;
}

.p-header__btn img {
  aspect-ratio: 230/64;
}

.p-mv {
  margin-top: 0;
}

.p-mv__swiper-box {
  position: relative;
}

.p-mv .swiper-slide {
  position: relative;
}

.p-mv .swiper-slide img {
  aspect-ratio: 4000/1920;
}
@media screen and (max-width: 768px) {
  .p-mv .swiper-slide img {
    min-height: 100vh;
    aspect-ratio: 1280/2200;
  }
}

.p-mv .swiper-slide__contents {
  position: absolute;
  top: 55%;
  left: 20%;
  transform: translate(-16.9%, -55%);
}
@media screen and (max-width: 768px) {
  .p-mv .swiper-slide__contents {
    width: 100%;
    top: 6.6666666667rem;
    top: clamp(70px, 22vw, 100px);
    left: 50%;
    transform: translateX(-50%);
  }
}

.p-mv .swiper-slide--inversion .swiper-slide__contents {
  position: absolute;
  top: 55%;
  left: auto;
  right: 10%;
  transform: translate(-16.9%, -55%);
}
@media screen and (max-width: 768px) {
  .p-mv .swiper-slide--inversion .swiper-slide__contents {
    width: 100%;
    top: 6.6666666667rem;
    top: clamp(75px, 22vw, 100px);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

.p-mv .swiper-slide__contents-title {
  font-size: clamp(14px, 1.8vw, 34px);
  line-height: 2.0588235294;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-mv .swiper-slide__contents-title {
    font-size: clamp(15px, 4.5vw, 34px);
    line-height: 1.7647058824;
    text-align: center;
  }
}

.p-mv .swiper-slide__contents-title--white {
  color: #fff;
}

.swiper-slide__contents-box {
  max-width: 90%;
}
@media screen and (max-width: 768px) {
  .swiper-slide__contents-box {
    max-width: 100%;
  }
}

.p-mv .swiper-slide__contents-catch-wrap {
  justify-content: flex-start;
  gap: 3.5%;
  margin-top: clamp(22px, 4%, 30px);
}
@media screen and (max-width: 768px) {
  .p-mv .swiper-slide__contents-catch-wrap {
    justify-content: center;
    margin-top: 2rem;
    margin-top: clamp(10px, 3%, 30px);
  }
}

.p-mv .swiper-slide__contents-catch-wrap--white {
  color: #fff;
}

.p-mv .swiper-slide__contents-catch {
  font-size: clamp(11.5px, 1.5vw, 25px);
  letter-spacing: 0.1em;
  line-height: 1.36;
  padding: 3%;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-mv .swiper-slide__contents-catch {
    font-size: clamp(12px, 3.6vw, 26px);
    line-height: 1.3076923077;
  }
}

.p-mv .swiper-slide__contents-catch-wrap--white .swiper-slide__contents-catch {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.p-mv .swiper-slide__contents-btn-box {
  justify-content: flex-start;
  gap: 1.5%;
  margin-top: clamp(30px, 7%, 50px);
}
@media screen and (max-width: 768px) {
  .p-mv .swiper-slide__contents-btn-box {
    display: none;
  }
}

.p-mv .swiper-slide__contents-btn {
  width: 16vw;
  max-width: 18rem;
}

.p-mv .swiper-slide__contents-btn a:hover {
  opacity: 1;
}

.p-mv .swiper-slide__contents-btn img {
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: auto;
}

@keyframes zoomOut {
  0% {
    transform: scale(1.1);
    opacity: 1;
  }
  80% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.swiper-slide-active picture img {
  animation: zoomOut 3s cubic-bezier(0, 0, 0.1, 1) both;
}

.swiper-slide__contents-btn img {
  animation: none;
}

.p-purchase__swiper-wrap {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background: #F2F2F2;
  margin-top: 3.3333333333rem;
  padding: 1.3333333333rem 0 2.6666666667rem;
  padding-left: 0.6666666667rem;
}
@media screen and (max-width: 768px) {
  .p-purchase__swiper-wrap {
    padding: 1.3333333333rem 0 2rem;
    padding-left: 0;
  }
}

.p-purchase__swiper .swiper-wrapper {
  align-items: center;
}

.p-purchase__swiper .swiper-slide {
  width: 188px;
  height: 350px;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .p-purchase__swiper .swiper-slide {
    height: -moz-max-content;
    height: max-content;
    transform: scale(0.9);
  }
}

@media screen and (max-width: 600px) {
  .p-purchase__swiper .swiper-slide-active {
    transform: scale(1.1);
  }
}

.p-purchase__swiper .swiper-slide__text {
  font-size: 0.8rem;
  text-align: center;
  transition: transform 0.3s ease;
  padding-right: 0.6666666667rem;
}

.p-purchase__swiper .swiper-slide-active .swiper-slide__text {
  display: none;
}

.p-purchase__swiper .swiper-slide__image {
  opacity: 0.6;
  margin-top: 2rem;
}

.p-purchase__swiper .swiper-slide-active .swiper-slide__image {
  opacity: 1;
  margin-top: 0rem;
}

.p-purchase__swiper .swiper-slide-active .swiper-slide__image img {
  width: 100%;
  max-width: 220px;
  height: 400px;
  max-height: 400px;
}
@media screen and (max-width: 600px) {
  .p-purchase__swiper .swiper-slide-active .swiper-slide__image img {
    max-width: 150px;
    max-height: 250px;
  }
}

.p-purchase__swiper .swiper-slide__image img {
  max-width: 150px;
  height: auto;
  max-height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-purchase__swiper .swiper-slide__image img {
    max-width: 120px;
    max-height: 200px;
  }
}

.p-purchase__swiper .swiper-button-next,
.p-purchase__swiper .swiper-button-prev {
  color: #b1883a;
}

.p-purchase__swiper .swiper-button-next {
  right: calc(50% - 150px);
}
@media screen and (max-width: 768px) {
  .p-purchase__swiper .swiper-button-next {
    right: calc(50% - 10rem);
  }
}
@media screen and (max-width: 600px) {
  .p-purchase__swiper .swiper-button-next {
    right: calc(50% - 8.3333333333rem);
  }
}

.p-purchase__swiper .swiper-button-prev {
  left: calc(50% - 150px);
}
@media screen and (max-width: 768px) {
  .p-purchase__swiper .swiper-button-prev {
    left: calc(50% - 10rem);
  }
}
@media screen and (max-width: 600px) {
  .p-purchase__swiper .swiper-button-prev {
    left: calc(50% - 8.3333333333rem);
  }
}

.p-purchase__swiper .swiper-button-next,
.p-purchase__swiper .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.p-purchase__swiper .swiper-button-prev::before,
.p-purchase__swiper .swiper-button-next::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border: solid #b1883a;
  border-width: 0 3px 3px 0;
  position: absolute;
}

.p-purchase__swiper .swiper-button-prev::before {
  transform: rotate(135deg);
}

.p-purchase__swiper .swiper-button-next::before {
  transform: rotate(-45deg);
}

.p-purchase__swiper-wrap {
  position: relative;
}

.p-purchase__swiper-wrap::after {
  content: "";
  width: 16px;
  height: 40px;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("/../images/triangle-top-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-purchase__swiper-wrap::after {
    left: calc(50% - 0.3333333333rem);
  }
}

.p-purchase__slide {
  margin-top: 3.3333333333rem;
}

.p-purchase__slide-title,
.p-purchase__slide-title span {
  position: relative;
  z-index: 1;
}

.p-purchase__slide-title {
  font-size: 2.1333333333rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-purchase__slide-title {
    font-size: clamp(16px, 5vw, 32px);
  }
}

.p-purchase__slide-title::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #333;
  z-index: -1;
}

.p-purchase__slide-title span {
  padding-inline: 2rem;
}

.p-purchase__slide-title span::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: -1;
}

.p-purchase__slide-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.3333333333rem 1.3333333333rem;
  margin-top: 3.3333333333rem;
}
@media screen and (max-width: 768px) {
  .p-purchase__slide-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3333333333rem 2rem;
    padding: 0 4%;
  }
}
@media screen and (max-width: 600px) {
  .p-purchase__slide-items {
    gap: 1.3333333333rem 0.6666666667rem;
    padding: 0;
  }
}

.p-purchase__slide-item-title {
  position: relative;
  font-size: 1rem;
  font-size: clamp(12px, 1.5vw, 15px);
  letter-spacing: 0.05em;
  text-align: center;
  background: #F2F2F2;
  padding: 1.6666666667rem 0.6666666667rem 3.3333333333rem;
}
@media screen and (max-width: 768px) {
  .p-purchase__slide-item-title {
    font-size: clamp(10px, 3vw, 15px);
  }
}

.p-purchase__slide-item-title::before {
  content: "";
  width: 2rem;
  height: 2px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #f29600;
}

.p-purchase__slide-item-image {
  position: relative;
  margin-top: -1.3333333333rem;
  z-index: 1;
}

.p-purchase__slide-item-image img {
  max-height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-purchase__slide-item-image img {
    max-height: -moz-max-content;
    max-height: max-content;
    max-height: 25vh;
    aspect-ratio: 240/375;
  }
}

.p-purchase__catch {
  background: #ece4d1;
  padding: 2.6666666667rem 4rem;
  margin-top: 6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-purchase__catch {
    padding: 3.3333333333rem 6.7%;
    margin-top: 4rem;
  }
}

.p-purchase__catch h3 {
  font-size: clamp(24px, 2.3vw, 32px);
  border-bottom: 1px solid #333;
  padding-bottom: 0.3333333333rem;
}
@media screen and (max-width: 768px) {
  .p-purchase__catch h3 {
    font-size: clamp(19px, 5vw, 32px);
    line-height: 1.3125;
    padding-bottom: 1.4666666667rem;
  }
}

.p-purchase__catch p {
  font-size: clamp(13px, 1.5vw, 18px);
  letter-spacing: 0.2em;
  margin-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-purchase__catch p {
    font-size: clamp(10px, 3.1vw, 18px);
    line-height: 2;
  }
}

.p-purchase__contact {
  position: relative;
  font-size: clamp(24px, 2.3vw, 32px);
  margin-top: 1.8666666667rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-purchase__contact {
    font-size: clamp(19px, 5vw, 32px);
    margin-top: 2.6666666667rem;
  }
}

.p-purchase__contact::before {
  content: "";
  width: 20px;
  height: 16px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("/../images/triangle-bottom-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.p-reason {
  background: #F2F2F2;
  padding: 6.6666666667rem 0 10rem;
}
@media screen and (max-width: 768px) {
  .p-reason {
    padding: 5.3333333333rem 0 9.3333333333rem;
  }
}

.p-reason__items {
  margin-top: 4.6666666667rem;
}
@media screen and (max-width: 768px) {
  .p-reason__items {
    margin-top: 0rem;
  }
}

.p-reason__item {
  position: relative;
  display: flex;
  gap: 5%;
  z-index: 1;
}

.p-reason__item:not(:first-of-type) {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .p-reason__item:not(:first-of-type) {
    margin-top: 0rem;
  }
}

.p-reason__item::before {
  content: "";
  width: 95%;
  height: 87%;
  position: absolute;
  top: 4.3333333333rem;
  right: 0;
  background: #fff;
  z-index: -1;
}

.p-reason__item-image {
  width: 30%;
}

.p-reason__item-image img {
  height: auto;
  aspect-ratio: 300/200;
}

.p-reason__item-contents {
  width: 65%;
  padding-right: 4.5%;
}

.p-reason__item-number {
  position: relative;
  font-size: 1.7333333333rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #b1883a;
}

.p-reason__item-number::before {
  content: "";
  width: 3.3333333333rem;
  height: 1px;
  position: absolute;
  top: calc(50% + 1px);
  transform: translateY(-50%);
  left: -4rem;
  background: #b1883a;
}

.p-reason__item-title {
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-top: 1rem;
}

.p-reason__item:nth-of-type(2) .p-reason__item-title {
  font-size: 1.8333333333rem;
}

.p-reason__item-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  margin-top: 1rem;
}

@media screen and (max-width: 768px) {
  .p-reason__item {
    background: linear-gradient(180deg, #F2F2F2 0%, #F2F2F2 37%, #fff 37%, #fff 100%);
  }
  .p-reason__item::before {
    display: none;
  }
  .p-reason__item-image {
    width: 84.74%;
    margin: 0 auto;
  }
  .p-reason__item-contents {
    width: 100%;
    padding: 2rem 2.4rem 3.3333333333rem 2.4rem;
  }
  .p-reason__item-number {
    text-align: center;
  }
  .p-reason__item-number::before {
    content: "";
    width: 3.3333333333rem;
    height: 1px;
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
  .p-reason__item-title {
    font-size: clamp(17px, 5vw, 32px);
    margin-top: 1.3333333333rem;
    text-align: center;
  }
  .p-reason__item:nth-of-type(2) .p-reason__item-title {
    font-size: clamp(17px, 5vw, 32px);
  }
  .p-reason__item-text {
    margin-top: 1.0666666667rem;
  }
}
@media screen and (max-width: 600px) {
  .p-reason__item {
    background: linear-gradient(180deg, #F2F2F2 0%, #F2F2F2 20%, #fff 20%, #fff 100%);
  }
}
.p-reason__swiper-wrap {
  position: relative;
  margin-top: 3.3333333333rem;
}

.p-reason .swiper-slide {
  height: auto;
}

.p-reason .swiper-slide__body {
  height: 100%;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -4rem;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 10px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px));
  background: var(--swiper-pagination-bullet-inactive-color, #fff);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 1);
}

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

.p-reason-swiper-button-prev,
.p-reason-swiper-button-next {
  position: absolute;
  top: auto;
  bottom: -4.8666666667rem;
  z-index: 11;
}

.p-reason-swiper-button-prev {
  left: 20%;
}

.p-reason-swiper-button-next {
  right: 20%;
}

.p-reason-swiper-button-prev::before,
.p-reason-swiper-button-next::before {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  border: solid #b1883a;
  border-width: 0 3px 3px 0;
}

.p-reason-swiper-button-prev::before {
  left: 50%;
  transform: translateX(-50%) rotate(135deg);
}

.p-reason-swiper-button-next::before {
  right: calc(50% - 12px);
  transform: translateX(-50%) rotate(-45deg);
}

.u-is-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-is-pc {
    display: none;
  }
}

.u-is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-is-sp {
    display: block;
  }
}

.u-is-600 {
  display: none;
}
@media screen and (max-width: 600px) {
  .u-is-600 {
    display: block;
  }
}

.u-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.u-is-1190 {
  display: none;
}

@media screen and (max-width: 1190px) {
  .u-is-1190 {
    display: block;
  }
}
.u-mt0 {
  margin-top: 0;
}
/*# sourceMappingURL=style.css.map */
