html {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  word-wrap: break-word;
}
@media print, screen and (min-width: 768px) and (max-width: 1400px) {
  html {
    font-size: 0.7142857143vw;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 1.3020833333vw;
  }
}
html * {
  font-weight: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-size: 1.6rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 2.8rem;
  }
}

header,
main,
section,
aside,
footer {
  width: 100%;
}

a {
  cursor: pointer;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
a:hover {
  opacity: 0.7;
}

figure img {
  width: 100%;
  height: auto;
}
figure img[src$=".svg"] {
  max-width: 100%;
}

th {
  font-weight: normal;
}

#wrapper {
  overflow: hidden;
}

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

.tal {
  text-align: left;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.fwb {
  font-weight: bold;
}

.noFind {
  text-align: center;
  width: 100%;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .noFind {
    margin-top: 2rem;
  }
}

.scrollbar {
  overflow: hidden scroll;
  padding-right: 1rem;
}
.scrollbar::-webkit-scrollbar {
  width: 1rem;
}
.scrollbar::-webkit-scrollbar-track {
  background-color: #e6e6e6;
}
.scrollbar::-webkit-scrollbar-thumb {
  background-color: #b3b3b3;
}

.flowLink {
  position: relative;
  padding-bottom: 0.4rem;
}
@media print, screen and (min-width: 768px) {
  .flowLink::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #29abe2;
    height: 2px;
    width: 100%;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
  }
}
.flowLink:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.marker {
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, rgba(205, 188, 161, 0.5)));
  background: linear-gradient(transparent 70%, rgba(205, 188, 161, 0.5) 0%);
  padding: 0 0.4rem;
}

.scrollAnim {
  position: absolute;
  text-align: center;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  font-weight: bold;
  font-size: 1.2rem;
}
.scrollAnim a {
  position: relative;
  display: inline-block;
  padding-bottom: 8rem;
}
.scrollAnim a::before, .scrollAnim a::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 0.3rem;
}
.scrollAnim a::before {
  height: 8rem;
  background-color: #29abe2;
  bottom: 0;
}
.scrollAnim a::after {
  height: 0rem;
  background-color: #fff;
  bottom: 8rem;
  -webkit-animation: scroll_anim 1.6s ease-in-out 0s infinite normal forwards;
          animation: scroll_anim 1.6s ease-in-out 0s infinite normal forwards;
}

@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  #wrapper:not(.preload) * {
    -webkit-transition: none !important;
    transition: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@-webkit-keyframes scroll_anim {
  0% {
    height: 0;
    bottom: 8rem;
  }
  70% {
    height: 5rem;
  }
  80% {
    bottom: 0;
  }
  100% {
    height: 0;
    bottom: 0;
  }
}
@keyframes scroll_anim {
  0% {
    height: 0;
    bottom: 8rem;
  }
  70% {
    height: 5rem;
  }
  80% {
    bottom: 0;
  }
  100% {
    height: 0;
    bottom: 0;
  }
}
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
@keyframes zoom {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.scrollItem,
.scrollListItem {
  opacity: 0;
  -webkit-transition: all ease-in-out 0.6s;
  transition: all ease-in-out 0.6s;
}
.scrollItem.scrollActive,
.scrollListItem.scrollActive {
  opacity: 1 !important;
  -webkit-transform: translate(0) scale(1) !important;
          transform: translate(0) scale(1) !important;
}

.fadein {
  opacity: 0;
}
.fadein.scrollActive {
  opacity: 1;
}

.fadeTop {
  -webkit-transform: translateY(5rem);
          transform: translateY(5rem);
}
.fadeTop.scrollActive {
  -webkit-transform: translate(0);
          transform: translate(0);
}

.fadeRight {
  -webkit-transform: translateX(5rem);
          transform: translateX(5rem);
}
.fadeRight.scrollActive {
  -webkit-transform: translate(0);
          transform: translate(0);
}

.fadeBottom {
  -webkit-transform: translateY(-5rem);
          transform: translateY(-5rem);
}
.fadeBottom.scrollActive {
  -webkit-transform: translate(0);
          transform: translate(0);
}

.fadeLeft {
  -webkit-transform: translateX(-5rem);
          transform: translateX(-5rem);
}
.fadeLeft.scrollActive {
  -webkit-transform: translate(0);
          transform: translate(0);
}

.fadeInLeft,
.fadeInRight {
  position: relative;
}
.fadeInLeft::after,
.fadeInRight::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  -webkit-transition: all ease-in-out 0.6s;
  transition: all ease-in-out 0.6s;
  -webkit-transform-origin: center right;
          transform-origin: center right;
}
.fadeInLeft.scrollActive::after,
.fadeInRight.scrollActive::after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.fadeInRight::after {
  -webkit-transform-origin: center left;
          transform-origin: center left;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  height: 12rem;
  width: 100%;
  z-index: 1000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media print, screen and (min-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .header {
    height: 10rem;
  }
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: auto;
  width: 94.5%;
  max-width: 1600px;
}
@media only screen and (max-width: 767px) {
  .header__wrapper {
    width: 92%;
    margin-top: 3rem;
  }
}
.header__logo {
  width: 42.7rem;
}
@media only screen and (max-width: 767px) {
  .header__logo {
    width: 48.8rem;
    position: relative;
    top: 1rem;
    z-index: 2;
    z-index: 1001;
  }
}
@media print, screen and (min-width: 768px) {
  .header.change {
    background-color: rgba(255, 255, 255, 0.5);
    height: 8rem;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav {
    position: fixed;
    inset: 0;
    height: 100vh;
    width: 100vw;
    background-color: #f5e8d6;
    padding: 14rem 6rem 6rem;
    overflow: hidden scroll;
    -webkit-transition: all ease-in-out 0.6s;
    transition: all ease-in-out 0.6s;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    z-index: 999;
  }
  .header .gnav.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.header .gnav__list {
  margin-bottom: 0.28rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.1rem;
}
@media screen and (max-width: 950px) {
  .header .gnav__list {
    gap: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav__list {
    margin-top: 7rem;
    margin-left: 5rem;
    display: block;
  }
}
.header .gnav__item {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .header .gnav__item {
    margin-right: 2.6rem;
    font-size: 2.8rem;
  }
}
.header .gnav__item a {
  display: block;
  position: relative;
  font-weight: bold;
  text-align: center;
  padding: 0 0.5rem 0.4rem;
}
@media only screen and (max-width: 767px) {
  .header .gnav__item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2.5rem 0;
  }
}
@media print, screen and (min-width: 768px) {
  .header .gnav__item .gnav_contact {
    padding-top: 0.3rem;
    margin-left: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav__item .gnav_contact {
    font-size: 3.375rem;
    width: 55rem;
    height: 11.2rem;
    margin: 12rem auto 0;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav__item .gnav_official {
    font-size: 2.86rem;
    width: 46.7rem;
    height: 9.5rem;
    margin: 6rem auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #b2b09b;
    border-color: #b2b09b;
  }
}
.header__btn {
  width: 7.5rem;
  height: 7.5rem;
  aspect-ratio: 1/1;
  background-color: #a58a6a;
  border-radius: 999px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 3rem;
  right: 3rem;
  z-index: 1000;
}
@media print, screen and (min-width: 768px) {
  .header__btn {
    display: none;
  }
}
.header__btn.active .bar:first-of-type {
  -webkit-transform: translateY(1.5rem) rotate(45deg);
          transform: translateY(1.5rem) rotate(45deg);
  width: 100%;
}
.header__btn.active .bar:nth-child(2) {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}
.header__btn.active .bar:last-of-type {
  -webkit-transform: translateY(-1.3rem) rotate(-45deg);
          transform: translateY(-1.3rem) rotate(-45deg);
  width: 100%;
}
.header__btn .mark {
  position: relative;
  cursor: pointer;
  height: 3rem;
  width: 3.5rem;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.header__btn .bar {
  position: absolute;
  background-color: #fff;
  height: 0.3rem;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.header__btn .bar:first-of-type {
  width: 1.5rem;
  left: 0;
  top: 0;
}
.header__btn .bar:nth-child(2) {
  width: 100%;
  top: 1.4rem;
}
.header__btn .bar:last-of-type {
  width: 1.5rem;
  bottom: 0;
  right: 0;
}

.wrapper {
  max-width: 1219px;
  padding-inline: 20px;
  margin-inline: auto;
}

.btn-type01 {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  color: #fff;
  background-color: #a58a6a;
  border: 2px solid #a58a6a;
  border-radius: 999px;
  width: 18.5rem;
  height: 5rem;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (min-width: 768px) {
  .btn-type01:hover {
    color: #a58a6a;
    background-color: #fff;
    opacity: 1;
  }
}

.title-type01 {
  display: inline-block;
}
.title-type01 .en {
  font-size: 10rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #cdbca1;
}
@media only screen and (max-width: 767px) {
  .title-type01 .en {
    font-size: 10rem;
  }
}
.title-type01 .ja {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: right;
  display: block;
  margin: 1.1rem 0.5rem 0 0.5rem;
}
@media only screen and (max-width: 767px) {
  .title-type01 .ja {
    font-size: 2.4rem;
  }
}

.main {
  padding-top: 12rem;
}
@media only screen and (max-width: 767px) {
  .main {
    padding-top: 13rem;
  }
}

.global__bg {
  width: 100%;
  min-width: 107.6vw;
  opacity: 0;
  -webkit-transition: all ease-in-out 0.6s;
  transition: all ease-in-out 0.6s;
}
@media screen and (max-width: 1601px) {
  .global__bg {
    max-width: 1680px;
  }
}
.global__bg.js-show {
  position: fixed;
  top: 15%;
  left: -1%;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .global__bg.js-show {
    top: 7.5%;
    left: -5%;
    opacity: 1;
    width: 111vw;
  }
}
.global__bg.js-fixed {
  opacity: 0.4;
  z-index: -1;
}

.mv {
  height: 56.4880952381vw;
  margin-inline: auto;
  margin-bottom: 5rem;
  position: relative;
}
@media screen and (min-height: 768px) and (max-width: 1601px) {
  .mv {
    max-height: 949px;
    max-width: 1601px;
  }
}
@media only screen and (max-width: 767px) {
  .mv {
    height: auto;
  }
}
.mv__container .img {
  position: absolute;
}
.mv__copy {
  position: absolute;
  top: 46.25%;
  right: 5.1875%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all ease-in-out 1s;
  transition: all ease-in-out 1s;
  -webkit-transform: translateY(5rem);
          transform: translateY(5rem);
}
@media only screen and (max-width: 767px) {
  .mv__copy {
    margin: 15rem 0 0 9rem;
    position: relative;
  }
}
.mv__copy h2 {
  width: 59rem;
}
.mv__copy .note {
  font-size: 1.9rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin: 1.5rem 0 0 0;
}
@media only screen and (max-width: 767px) {
  .mv__copy .note {
    font-size: 1.9rem;
    margin: 2.8rem 0 0 -0.4rem;
  }
}
.mv__copy.js-show {
  opacity: 1 !important;
  -webkit-transform: translate(0) scale(1) !important;
          transform: translate(0) scale(1) !important;
}
.mv .img_01 {
  width: 47.0238095238vw;
  top: 0.625%;
  left: 24.375%;
}
@media screen and (max-width: 1601px) {
  .mv .img_01 {
    max-width: 733px;
  }
}
@media only screen and (max-width: 767px) {
  .mv .img_01 {
    position: unset;
    width: 62rem;
    margin-inline: auto;
  }
}
.mv .img_02 {
  width: 16.0714285714vw;
  bottom: 20%;
  left: 4.875%;
  z-index: 1;
}
@media screen and (max-width: 1601px) {
  .mv .img_02 {
    max-width: 248px;
  }
}
@media only screen and (max-width: 767px) {
  .mv .img_02 {
    width: 28rem;
    bottom: unset;
    left: 2rem;
    top: 52rem;
  }
}
.mv .img_03 {
  width: 22.3214285714vw;
  top: 1.25%;
  right: 3.75%;
}
@media screen and (max-width: 1601px) {
  .mv .img_03 {
    max-width: 349px;
  }
}
@media only screen and (max-width: 767px) {
  .mv .img_03 {
    width: 29.8rem;
    top: -10rem;
    right: -3.5rem;
  }
}

.service {
  padding: 2rem 0 13rem;
}
@media only screen and (max-width: 767px) {
  .service {
    margin-top: 11rem;
  }
}
.service h2 {
  font-size: 5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .service h2 {
    font-size: 5rem;
  }
}
.service__read {
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
  margin-top: 4.5rem;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .service__read {
    font-size: 3rem;
    text-align: left;
    margin-top: 2.5rem;
    padding: 0 2rem 0 1rem;
  }
}
@media print, screen and (min-width: 768px) {
  .service__area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 2rem;
    gap: 37rem;
  }
}
@media only screen and (max-width: 767px) {
  .service__area {
    margin-top: 6rem;
  }
}
.service__content {
  position: relative;
}
.service__content figure {
  width: 42rem;
}
@media only screen and (max-width: 767px) {
  .service__content figure {
    width: 43.8rem;
    margin-inline: auto;
  }
}
@media print, screen and (min-width: 768px) {
  .service__content .text {
    position: absolute;
  }
}
@media only screen and (max-width: 767px) {
  .service__content .text {
    text-align: center;
    margin-top: -3.5rem;
  }
}
.service__content .text h3 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  background-color: #333;
  display: inline-block;
  padding: 0.3rem 1.5rem 0.7rem;
}
@media only screen and (max-width: 767px) {
  .service__content .text h3 {
    font-size: 4.5rem;
    padding: 0.8rem 2.5rem 1.2rem;
  }
}
.service__content .text p {
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 1.1rem;
}
@media only screen and (max-width: 767px) {
  .service__content .text p {
    text-align: left;
    padding-inline: 2rem;
    margin-top: 2.1rem;
  }
}
@media print, screen and (min-width: 768px) {
  .service__content.content_01 {
    margin-left: -1rem;
  }
}
@media print, screen and (min-width: 768px) {
  .service__content.content_01 .text {
    width: 29.8rem;
    top: 6.8rem;
    right: -23rem;
  }
}
.service__content.content_01 .text h3 {
  background-color: #bca78a;
}
@media print, screen and (min-width: 768px) {
  .service__content.content_02 {
    margin-right: -2rem;
  }
}
@media only screen and (max-width: 767px) {
  .service__content.content_02 {
    margin-top: 7rem;
  }
}
@media print, screen and (min-width: 768px) {
  .service__content.content_02 .text {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    width: 29.3rem;
    top: 22rem;
    right: 37rem;
  }
}
.service__content.content_02 .text h3 {
  background-color: #b2b09b;
}
.service__point {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.6;
  margin-top: 5.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .service__point {
    font-size: 3.3rem;
    padding-left: 1rem;
    margin-top: 7.6rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.service__point figure {
  width: 11.2rem;
}
@media only screen and (max-width: 767px) {
  .service__point figure {
    width: 10.7rem;
    margin-top: 2rem;
  }
}
.service__point figure > img {
  height: 100%;
}
.service__point p {
  letter-spacing: 0.06em;
  padding-left: 3.2rem;
}
@media only screen and (max-width: 767px) {
  .service__point p {
    padding-left: 2.6rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.service__point .marker {
  font-size: 4rem;
}
@media only screen and (max-width: 767px) {
  .service__point .marker {
    font-size: 3.8rem;
  }
}
.service__note {
  font-size: 2rem;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 2;
  width: 89rem;
  margin: 3.3rem auto 0;
}
@media only screen and (max-width: 767px) {
  .service__note {
    font-size: 2.8rem;
    text-align: left;
    width: 100%;
    padding-inline: 1rem;
    margin-top: 4.3rem;
  }
}
.service__note span {
  display: block;
  width: 100%;
  padding: 1.6rem;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #a58a6a;
  border-radius: 2rem;
}
@media only screen and (max-width: 767px) {
  .service__note span {
    padding: 3.6rem 5rem;
  }
}

.feature {
  padding-top: 6rem;
  margin-top: -6rem;
}
@media screen and (min-width: 1601px) {
  .feature {
    background-color: #f5e8d6;
  }
}
.feature .wrapper {
  position: relative;
}
.feature .wrapper::before {
  content: "";
  background: url(../img/feature_deco.svg) no-repeat center center/cover;
  width: 22.4rem;
  height: 12.9rem;
  position: absolute;
  top: -15.5rem;
  left: -2.4rem;
}
@media only screen and (max-width: 767px) {
  .feature .wrapper::before {
    width: 18.4rem;
    height: 10.9rem;
    top: -15rem;
    left: 4.6rem;
  }
}
.feature h2 {
  position: absolute;
  top: -21rem;
  right: 20px;
}
@media only screen and (max-width: 767px) {
  .feature h2 {
    top: -18rem;
    right: 5.8rem;
  }
}
.feature h3 {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 7rem;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .feature h3 {
    font-size: 3.5rem;
    margin-top: 4rem;
  }
}
.feature h3 .marker {
  font-size: 4rem;
  text-align: center;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(0%, #fff));
  background: linear-gradient(transparent 75%, #fff 0%);
}
.feature__inner {
  height: 62.625vw;
  max-width: 1617px;
  max-height: 1002px;
  margin-inline: auto;
  padding-top: 9rem;
  background: url(../img/feature_bg.svg) no-repeat center top/101vw;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .feature__inner {
    height: auto;
    max-height: unset;
    background-image: url(../img/feature_bg_sp.svg);
    background-size: 214vw;
    background-position: 90% top;
    padding-bottom: 22rem;
  }
}
.feature__list {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .feature__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5rem;
  }
}
.feature__list li {
  width: calc((100% - 6rem) / 3);
  background-color: #fff;
  border-radius: 2rem;
  padding: 4rem 2.7rem 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem 0;
}
@media only screen and (max-width: 767px) {
  .feature__list li {
    padding: 6rem 7rem;
    width: 100%;
    border-radius: 3rem;
  }
}
.feature__list li .num {
  font-size: 2.5rem;
  font-family: "Poppins", sans-serif;
  color: #cdbca1;
}
@media only screen and (max-width: 767px) {
  .feature__list li .num {
    font-size: 3.75rem;
  }
}
.feature__list li .read {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4583333333;
  letter-spacing: 0.06em;
  text-align: center;
  color: #93907d;
}
@media only screen and (max-width: 767px) {
  .feature__list li .read {
    font-size: 3.2rem;
  }
}
.feature__list li .note {
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  line-height: 2;
  letter-spacing: 0.06em;
}
.feature__list li figure {
  margin: 2.8rem auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.feature__list li.item_01 figure {
  width: 23.2rem;
}
@media only screen and (max-width: 767px) {
  .feature__list li.item_01 figure {
    width: 23.2rem;
  }
}
.feature__list li.item_02 figure {
  width: 22.7rem;
}
@media only screen and (max-width: 767px) {
  .feature__list li.item_02 figure {
    width: 23.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .feature__list li.item_03 {
    padding: 8.5rem 7rem 6rem 6rem;
  }
}
.feature__list li.item_03 figure {
  width: 33rem;
}
@media only screen and (max-width: 767px) {
  .feature__list li.item_03 figure {
    width: 33rem;
  }
}

.flow {
  padding-top: 5rem;
  margin-top: -9.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1080px) and (min-width: 768px) {
  .flow {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .flow {
    padding: 1rem 0 5rem;
    margin-top: 0;
  }
}
.flow h2 .ja {
  text-align: left;
}
.flow__wrapper {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .flow__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.flow__bubble {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.7230769231;
  text-align: center;
  width: 39rem;
  height: 29.8rem;
  background: url(../img/flow_bubble.svg) no-repeat center center/100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 21rem;
  left: 20px;
}
@media screen and (max-width: 1218px) and (min-width: 768px) {
  .flow__bubble {
    left: 12rem;
  }
}
@media only screen and (max-width: 767px) {
  .flow__bubble {
    font-size: 2.3rem;
    width: 36.1rem;
    background-image: url(../img/flow_bubble_sp.svg);
    top: -14rem;
    left: 35rem;
  }
}
.flow__list {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 2.8rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 1218px) and (min-width: 768px) {
  .flow__list {
    margin-right: 6rem;
  }
}
@media only screen and (max-width: 767px) {
  .flow__list {
    margin-top: 7rem;
    gap: 4.5rem;
  }
}
.flow__list li {
  width: 70rem;
  padding: 3.5rem 2rem 3.5rem 18.6rem;
  background-color: #f4f4f3;
  border-radius: 999px;
  -webkit-box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .flow__list li {
    width: 100%;
    padding: 4rem 0 4rem 0 13.6rem;
  }
}
.flow__list li:not(:last-child)::after {
  content: "";
  width: 3.69rem;
  height: 2.7rem;
  background: url(../img/flow_arrow.svg) no-repeat center center/100%;
  position: absolute;
  bottom: -4.3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .flow__list li:not(:last-child)::after {
    width: 4.6rem;
    height: 3.4em;
    bottom: -9.3rem;
  }
}
.flow__list li span {
  font-size: 3.3rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #a58a6a;
}
@media only screen and (max-width: 767px) {
  .flow__list li span {
    font-size: 4.1rem;
  }
}
.flow__list li p {
  font-size: 2.24rem;
  font-weight: bold;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 767px) {
  .flow__list li p {
    font-size: 2.8rem;
  }
}

#flow {
  padding-bottom: 15.6rem;
}

.price {
  padding-top: 12rem;
  margin-top: -2rem;
}
.price h2 {
  position: absolute;
  top: -4.2rem;
  left: 4rem;
}
@media only screen and (max-width: 767px) {
  .price h2 {
    left: 6rem;
  }
}
.price h2 .ja {
  text-align: left;
}
.price__container {
  padding: 4.6rem 6rem;
  background-color: #f4f4f3;
  -webkit-box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.1);
  border-radius: 2rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .price__container {
    padding: 4.5rem 7rem;
  }
}
.price__container::before {
  content: "";
  background: url(../img/price_deco.svg) no-repeat center center/cover;
  width: 15.1rem;
  height: 13.9rem;
  position: absolute;
  top: 13.2rem;
  left: 10.3rem;
}
@media only screen and (max-width: 767px) {
  .price__container::before {
    height: 12.9rem;
    top: -8.8rem;
    left: 46.3rem;
  }
}
.price__container .note {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.06em;
  padding-left: 40rem;
}
@media only screen and (max-width: 767px) {
  .price__container .note {
    font-size: 2.8rem;
    padding-left: 0;
    margin-top: 10rem;
  }
}
.price__container a {
  margin-top: 2rem;
}
.price .btn-type01 {
  font-size: 2.25rem;
  width: 27.7rem;
  height: 7.5rem;
  margin: 3.2rem 0 0 40rem;
}
@media only screen and (max-width: 767px) {
  .price .btn-type01 {
    font-size: 3.37rem;
    margin: 4rem auto 0;
    width: 41.6rem;
    height: 11.2rem;
  }
}

@media screen and (min-width: 1601px) {
  .staff {
    background-color: #f5e8d6;
  }
}
.staff .wrapper {
  position: relative;
}
.staff .wrapper::before {
  content: "";
  background: url(../img/staff_deco.svg) no-repeat center center/cover;
  width: 17.9rem;
  height: 14.3rem;
  position: absolute;
  top: -20rem;
  left: -3rem;
}
@media only screen and (max-width: 767px) {
  .staff .wrapper::before {
    width: 15.9rem;
    height: 12.3rem;
    top: -26rem;
    left: 6rem;
  }
}
.staff h2 {
  position: absolute;
  top: -15rem;
  right: 20px;
}
@media only screen and (max-width: 767px) {
  .staff h2 {
    top: -20rem;
    right: 5rem;
  }
}
.staff h3 {
  font-size: 3.5rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}
.staff h3 span {
  font-size: 4rem;
  text-align: center;
  display: inline-block;
  position: relative;
}
.staff h3 span::after {
  content: "";
  width: 100%;
  height: 1.5rem;
  background-color: #fff;
  position: absolute;
  bottom: -1rem;
  left: 0;
  z-index: -1;
}
.staff__inner {
  height: 55.8125vw;
  max-width: 1617px;
  max-height: 893px;
  margin-inline: auto;
  background: url(../img/staff_bg.svg) no-repeat center top/101vw;
  padding-top: 18rem;
}
@media only screen and (max-width: 767px) {
  .staff__inner {
    height: auto;
    max-height: unset;
    padding: 24.5rem 0;
    background-image: url(../img/staff_bg_sp.svg);
    background-size: 216vw;
  }
}
.staff__area {
  max-width: 1460px;
  margin-inline: auto;
  padding-inline: 12rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .staff__area {
    padding-inline: 9rem;
    margin-top: 2rem;
  }
}
.staff__slider {
  overflow: hidden;
}
.staff__list {
  margin-top: 4.5rem;
}
.staff__list li .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .staff__list li .inner {
    gap: 1rem;
  }
}
.staff__list li figure {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 999px;
  overflow: hidden;
}
.staff__list li .job {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  margin-top: 1rem;
  min-height: 5.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .staff__list li .job {
    font-size: 3rem;
    min-height: 8.5rem;
  }
}
.staff__list li .detail {
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .staff__list li .detail {
    font-size: 2.4rem;
    padding-inline: 1rem;
  }
}
.staff .swiper-button-prev,
.staff .swiper-button-next {
  width: 5rem;
  height: 5rem;
  aspect-ratio: 1/1;
  border-radius: 999px;
  background: #a58a6a;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  top: 37%;
  right: 20px;
}
@media only screen and (max-width: 767px) {
  .staff .swiper-button-prev,
  .staff .swiper-button-next {
    width: 6rem;
    height: 6rem;
    top: 57%;
    right: 11px;
  }
}
.staff .swiper-button-prev::after,
.staff .swiper-button-next::after {
  display: none;
}
.staff .swiper-button-prev::before,
.staff .swiper-button-next::before {
  content: "";
  width: 0.9rem;
  height: 1.2rem;
  background: url(../img/staff_slider_arrow.svg) no-repeat center center/cover;
  position: relative;
  right: -1%;
}
@media only screen and (max-width: 767px) {
  .staff .swiper-button-prev::before,
  .staff .swiper-button-next::before {
    width: 1.1rem;
    height: 1.3rem;
  }
}
.staff .swiper-button-prev:hover,
.staff .swiper-button-next:hover {
  cursor: pointer;
  opacity: 0.7;
}
.staff .swiper-button-prev {
  left: 20px;
}
@media only screen and (max-width: 767px) {
  .staff .swiper-button-prev {
    left: 15px;
  }
}
.staff .swiper-button-prev::before {
  rotate: 180deg;
  right: 4.5%;
}

.faq {
  padding: 6rem 0 10.5rem;
}
@media only screen and (max-width: 767px) {
  .faq {
    padding-bottom: 15rem;
    margin-top: -9rem;
  }
}
.faq__wrapper {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .faq__wrapper {
    display: grid;
  }
}
.faq__wrapper::before {
  content: "";
  background: url(../img/faq_deco.svg) no-repeat center center/cover;
  width: 15.6rem;
  height: 16.7rem;
  position: absolute;
  top: -15.5rem;
  right: -2rem;
}
@media only screen and (max-width: 767px) {
  .faq__wrapper::before {
    width: 12.6rem;
    height: 13.7rem;
    top: -1rem;
    right: 9rem;
  }
}
.faq h2 {
  grid-area: 1/1/3/2;
}
.faq h2 .ja {
  text-align: left;
}
.faq__read {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 8rem 0 0 4.5rem;
  grid-area: 1/2/2/3;
}
@media only screen and (max-width: 767px) {
  .faq__read {
    font-size: 3rem;
    line-height: 2;
    letter-spacing: 0.06em;
    padding-inline: 1rem;
    margin: 6rem 0 0;
  }
}
.faq__list {
  width: 95%;
  margin: 5.5rem 0 0 auto;
  grid-area: 2/2/3/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.7rem;
}
@media only screen and (max-width: 767px) {
  .faq__list {
    width: 96.5%;
    margin: 6.5rem 0 0 1rem;
    gap: 4.7rem;
  }
}
.faq__list dl {
  background-color: #f4f4f3;
  border-radius: 5rem;
  -webkit-box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  .faq__list dl {
    border-radius: 3rem;
  }
}
.faq__list dt, .faq__list dd {
  font-size: 2.24rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .faq__list dt, .faq__list dd {
    font-size: 2.8rem;
    line-height: 1.6;
  }
}
.faq__list dt .inner, .faq__list dd .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .faq__list dt .inner, .faq__list dd .inner {
    gap: 2.5rem;
  }
}
.faq__list dt {
  font-weight: bold;
  padding: 3rem 7.5rem 3rem 6rem;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  .faq__list dt {
    padding: 3.7rem 9rem 3.2rem 5.5rem;
  }
}
.faq__list dt::before, .faq__list dt::after {
  content: "";
  background-color: #a58a6a;
  position: absolute;
}
.faq__list dt::before {
  width: 4px;
  height: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 4.25rem;
}
@media only screen and (max-width: 767px) {
  .faq__list dt::before {
    width: 0.6rem;
    height: 2.5rem;
    right: 4.3rem;
  }
}
.faq__list dt::after {
  width: 2rem;
  height: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 3.5rem;
}
@media only screen and (max-width: 767px) {
  .faq__list dt::after {
    width: 2.5rem;
    height: 0.6rem;
    right: 3.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .faq__list dt:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}
.faq__list dt .num {
  color: #a58a6a;
}
.faq__list dt.active::before {
  display: none;
}
.faq__list dd {
  font-weight: 500;
  width: calc(100% - 11.5rem);
  padding: 3rem 0;
  margin-inline: auto;
  border-top: 3px dashed #e0e0e0;
  display: none;
}
@media only screen and (max-width: 767px) {
  .faq__list dd {
    padding: 3.2rem 0 3.7rem;
  }
}
.faq__list dd .num {
  color: #cdbca1;
}
.faq__list .num {
  font-size: 3.3rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  margin-bottom: auto;
  position: relative;
  top: 0.1em;
}
@media print, screen and (min-width: 768px) {
  .faq__list .num {
    margin-top: -0.3rem;
  }
}
@media only screen and (max-width: 767px) {
  .faq__list .num {
    font-size: 4.1rem;
  }
}

@media screen and (min-width: 1601px) {
  .contact {
    background-color: #f5e8d6;
  }
}
.contact .wrapper {
  position: relative;
}
.contact .wrapper::before {
  content: "";
  background: url(../img/contact_deco.svg) no-repeat center center/cover;
  width: 17rem;
  height: 14rem;
  position: absolute;
  top: -22.8rem;
  right: 6rem;
}
@media only screen and (max-width: 767px) {
  .contact .wrapper::before {
    width: 14rem;
    height: 13rem;
    top: -26.5rem;
    right: 6rem;
  }
}
.contact h2 {
  position: absolute;
  left: 4.2rem;
  top: -16.5rem;
}
@media only screen and (max-width: 767px) {
  .contact h2 {
    left: 5.2rem;
    top: -20rem;
  }
}
.contact h2 .ja {
  text-align: left;
}
.contact h3 {
  font-size: 3.5rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 767px) {
  .contact h3 {
    font-size: 4rem;
  }
}
.contact__inner {
  max-width: 1625px;
  margin-inline: auto;
  padding-top: 22rem;
  background: url(../img/contact_bg.svg) no-repeat center top/101vw;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .contact__inner {
    padding-top: 22.5rem;
    background-size: 158vw;
  }
}
.contact__inner::after {
  content: "";
  width: 100%;
  height: 50%;
  background-color: #f5e8d6;
  position: absolute;
  bottom: 0;
  z-index: -1;
}
.contact__read {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.06em;
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .contact__read {
    font-size: 2.8rem;
    line-height: 2;
  }
}
.contact .btn-type01 {
  font-size: 2.25rem;
  width: 27.7rem;
  height: 7.5rem;
  margin: 4rem auto 0;
}
@media only screen and (max-width: 767px) {
  .contact .btn-type01 {
    font-size: 3.37rem;
    margin: 6rem auto 0;
    width: 41.6rem;
    height: 11.2rem;
  }
}

.footer {
  background-color: #f5e8d6;
  text-align: center;
  padding: 13rem 0;
}
.footer__logo {
  width: 47rem;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .footer__logo {
    width: 58rem;
  }
}
.footer__nav {
  font-weight: bold;
  letter-spacing: 0.06em;
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.5rem;
}
@media only screen and (max-width: 767px) {
  .footer__nav {
    margin-top: 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 5rem 0;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .footer__nav {
    gap: 6rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer__nav li.style-btn {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .footer__nav li.style-btn a {
    margin-inline: auto;
  }
}
@media only screen and (max-width: 767px) {
  .footer__nav li:not(.style-btn) {
    text-align: left;
    width: 45%;
    padding-bottom: 3rem;
    border-bottom: 2px dashed #fff;
  }
}
@media only screen and (max-width: 767px) {
  .footer__nav li:nth-child(odd) {
    padding-left: 6rem;
  }
}
.footer__copy {
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  padding-top: 3rem;
  margin-top: 4rem;
  border-top: 3px dashed #fff;
}
@media only screen and (max-width: 767px) {
  .footer__copy {
    font-size: 2.25rem;
    line-height: 1.7333333333;
    margin-top: 5rem;
  }
}
.footer .btn-type01 {
  font-size: 1.8rem;
  width: 29.2rem;
  height: 6rem;
  background-color: #b2b09b;
  border-color: #b2b09b;
}
@media only screen and (max-width: 767px) {
  .footer .btn-type01 {
    font-size: 2.86rem;
    width: 46.7rem;
    height: 9.5rem;
  }
}
@media print, screen and (min-width: 768px) {
  .footer .btn-type01:hover {
    color: #b2b09b;
    background-color: #fff;
  }
}