@charset "UTF-8";
/*----------------- variable ---------------------*/
/*----------------- font ---------------------*/
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
:root {
  --font-oswald: "Oswald", sans-serif;
}

/*----------------- main ---------------------*/
.pre-inc #top {
  padding-top: 95px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .pre-inc #top {
    padding-top: 78px;
  }
}
.pre-inc {
  /*** ボタン ***/
}
.pre-inc #top .request_bt {
  width: 48%;
  max-width: 380px;
  margin: 0 auto;
}
.pre-inc #top .request_bt a {
  transition: all 0.5s;
  display: block;
  position: relative;
  overflow: hidden;
}
.pre-inc #top .request_bt a img {
  position: relative;
  z-index: 3;
}
.pre-inc #top .request_bt a:hover {
  opacity: 1;
}
.pre-inc #top .request_bt a:hover img {
  opacity: 1;
}
.pre-inc #top .request_bt a::after {
  background: #fff;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: 3;
  transform: translateY(-50%) scale(0.1);
  transition: opacity 0.5s, transform 0s;
  transition-delay: 0s, 0.4s;
}
.pre-inc #top .request_bt a:hover::after {
  opacity: 0.3;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity 0.8s, transform 0.6s ease-in-out;
}
.pre-inc {
  /**********/
}
.pre-inc #top .reserve_bt {
  width: 48%;
  max-width: 380px;
  margin: 0 auto;
}
.pre-inc #top .reserve_bt a {
  transition: all 0.5s;
  display: block;
  position: relative;
  overflow: hidden;
}
.pre-inc #top .reserve_bt a img {
  position: relative;
  z-index: 3;
}
.pre-inc #top .reserve_bt a:hover {
  opacity: 1;
}
.pre-inc #top .reserve_bt a:hover img {
  opacity: 1;
}
.pre-inc #top .reserve_bt a::after {
  background: #fff;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: 3;
  transform: translateY(-50%) scale(0.1);
  transition: opacity 0.5s, transform 0s;
  transition-delay: 0s, 0.4s;
}
.pre-inc #top .reserve_bt a:hover::after {
  opacity: 0.3;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity 0.8s, transform 0.6s ease-in-out;
}
.pre-inc .info_area {
  padding: 70px 0;
  background: #fff;
  text-align: center;
}
.pre-inc .info_area .info_title {
  width: 60%;
  max-width: 150px;
  margin: 0 auto 50px;
}
.pre-inc .info_area .info_text {
  width: 90%;
  max-width: 600px;
  margin: 0 auto 50px;
  color: #6D573E;
}
.pre-inc .info_area .info_text ul {
  text-align: left;
}
.pre-inc .info_area .info_text ul li {
  margin-bottom: 20px;
  font-size: min(3.3vw, 15px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.pre-inc .info_area .info_text ul li span {
  display: block;
  width: 120px;
}
@media (max-width: 767px) {
  .pre-inc .info_area .info_title {
    width: 40%;
    max-width: inherit;
    margin: 0 auto 30px;
  }
  .pre-inc .info_area .info_text {
    width: 90%;
    max-width: inherit;
    margin: 0 auto 30px;
  }
  .pre-inc .info_area .info_text ul li span {
    display: block;
    width: auto;
    margin-right: 20px;
  }
  .pre-inc.top .img_in {
    -webkit-transition: 1s;
    transition: 1s;
    opacity: 0;
    transform: scale(1.1, 1.1) translateY(5%);
    -moz-transform: scale(1.1, 1.1) translateY(5%);
    -webkit-transform: scale(1.1, 1.1) translateY(5%);
    -o-transform: scale(1.1, 1.1) translateY(5%);
    -ms-transform: scale(1.1, 1.1) translateY(5%);
  }
  .pre-inc.top.fin1 .img_in {
    opacity: 1;
    -webkit-transition: 2s;
    transition: 2s;
    transform: scale(1, 1) translateY(0%);
    -moz-transform: scale(1, 1) translateY(0%);
    -webkit-transform: scale(1, 1) translateY(0%);
    -o-transform: scale(1, 1) translateY(0%);
    -ms-transform: scale(1, 1) translateY(0%);
  }
  .pre-inc #top .request_bt {
    width: 100%;
    max-width: inherit;
    margin: 0 auto 20px;
  }
  .pre-inc #top .reserve_bt {
    width: 100%;
    max-width: inherit;
    margin: 0 auto 0px;
  }
  .pre-inc.top .txt_in {
    filter: blur(20px);
    opacity: 0;
    -webkit-transition: 1.5s 0.5s;
    -moz-transition: 1.5s 0.5s;
    -o-transition: 1.5s 0.5s;
    transition: 1.5s 0.5s;
    top: 3%;
    left: 50%;
    transform: translate(-50%, 3%);
  }
  .pre-inc.top.fin1 .txt_in {
    filter: blur(0px);
    opacity: 1;
    top: 15%;
    left: 50%;
    transform: translate(-50%, 0%);
    text-align: center;
    color: #fff;
    font-size: min(4.8vw, 50px);
  }
  .pre-inc main p {
    line-height: 1.5em;
    letter-spacing: 0.15em;
    letter-spacing: 0em;
  }
  .pre-inc main .ttl {
    font-size: 32px;
    font-size: clamp(10px, 6.933333316vw, 32px);
  }
  .pre-inc main .lead {
    font-size: 24px;
    font-size: clamp(10px, 5.599999986vw, 24px);
  }
  .pre-inc main .text {
    font-size: 16px;
    font-size: clamp(10px, 3.199999992vw, 16px);
  }
  .pre-inc main .txt {
    font-size: 14px;
    font-size: clamp(10px, 2.66666666vw, 14px);
  }
}
.pre-inc {
  /***限定フロー***/
}
.pre-inc .limitedFlow {
  width: 95%;
  max-width: 1800px;
  margin: 0 auto;
}
.pre-inc .limitedFlow__head {
  border-top: 1px solid #ccc;
  padding-top: 50px;
}
.pre-inc .limitedFlow__ttl {
  text-align: center;
  font-size: clamp(16px, 1.267rem + 0.556vw, 31px);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}
.pre-inc .limitedFlow__txt {
  font-size: clamp(16px, 1.267rem + 0.556vw, 21px);
  letter-spacing: 0.06em;
  line-height: 1.6;
}
.pre-inc .limitedFlow__body {
  margin-top: 50px;
}
.pre-inc .limitedFlowList {
  flex-wrap: nowrap;
  background: #9f8d77;
}
.pre-inc .limitedFlowList > li {
  display: flex;
  position: relative;
  width: 33.3334%;
  color: #fff;
  padding: 70px 5.5555555556%;
  overflow: hidden;
  z-index: 0;
}
.pre-inc .limitedFlowList > li + li {
  padding-left: 3.3333333333%;
}
.pre-inc .limitedFlowList > li::before,
.pre-inc .limitedFlowList > li::after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: calc(100% + 17px);
  background-color: rgba(255, 255, 255, 0.3);
}
.pre-inc .limitedFlowList > li::before {
  top: -10px;
  transform: rotate(-20deg);
}
.pre-inc .limitedFlowList > li::after {
  bottom: -10px;
  transform: rotate(20deg);
}
.pre-inc .limitedFlowList > li:last-child::before,
.pre-inc .limitedFlowList > li:last-child::after {
  content: none;
}
.pre-inc .limitedFlowList__num {
  width: 20.6818181818%;
  position: relative;
}
.pre-inc .limitedFlowList__num img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pre-inc .limitedFlowList__txtBox {
  width: 68.1818181818%;
  margin-left: 15.9090909091%;
}
.pre-inc .limitedFlowList__ttl {
  font-size: clamp(17px, 1.2rem + 0.521vw, 22px);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
.pre-inc .limitedFlowList__txt {
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 1.8;
  margin-top: 1em;
  text-align: justify;
}
.pre-inc .limitedFlowList__txt .note {
  font-size: 13px;
  text-align: left;
}
.pre-inc .limitedFlowList__txt .note a {
  color: #fff;
}
.pre-inc .limitedFlowList__btn {
  max-width: 230px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.6);
  color: #344C51;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 1.5em;
  transition: 0.4s;
}
.pre-inc .limitedFlowList__txtBox .entry_bt {
  display: block;
  margin-top: 10px;
  background: #750303;
  width: 90%;
  border-radius: 10px;
}
.pre-inc .limitedFlowList__txtBox .login_bt {
  display: block;
  width: 80%;
  line-height: 40px;
  border-radius: 10px;
  background-color: rgba(83, 83, 83, 0.9);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 10px;
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  .pre-inc .limitedFlowList__btn:hover {
    background-color: #344C51;
    color: #fff;
  }
}
@media screen and (max-width: 1440px) {
  .pre-inc .limitedFlowList > li {
    padding: 50px 3.3333333333%;
  }
  .pre-inc .limitedFlowList > li + li {
    padding-left: 1.6666666667%;
  }
  .pre-inc .limitedFlowList__txtBox {
    margin-left: 6.8181818182%;
  }
}
@media screen and (max-width: 1200px) {
  .pre-inc .limitedFlowList > li {
    display: block;
  }
  .pre-inc .limitedFlowList > li + li {
    padding-left: 3.3333333333%;
  }
  .pre-inc .limitedFlowList__txtBox {
    width: 100%;
    margin-top: 50px;
    margin-left: 0;
  }
}
@media screen and (max-width: 990px) {
  .pre-inc .limitedFlow__head {
    padding-top: 60px;
  }
  .pre-inc .limitedFlow__ttl {
    width: 50%;
    margin-inline: auto;
  }
  .pre-inc .limitedFlow__txt {
    width: 100%;
    margin-top: 40px;
    text-align: center;
  }
  .pre-inc .limitedFlow__body {
    margin-inline: auto;
    max-width: 560px;
  }
  .pre-inc .limitedFlowList {
    display: block;
  }
  .pre-inc .limitedFlowList > li {
    width: 100%;
    padding: 40px 60px 20%;
  }
  .pre-inc .limitedFlowList > li + li {
    padding: 0px 60px 20%;
  }
  .pre-inc .limitedFlowList > li:last-child {
    padding-bottom: 50px;
  }
  .pre-inc .limitedFlowList > li::before,
  .pre-inc .limitedFlowList > li::after {
    right: auto;
    bottom: 0;
    width: calc(100% + 32px);
    height: 1px;
  }
  .pre-inc .limitedFlowList > li::before {
    top: auto;
    left: -15px;
    transform: rotate(-20deg);
  }
  .pre-inc .limitedFlowList > li::after {
    right: -14px;
  }
  .pre-inc .limitedFlowList__num {
    width: 17.7272727273%;
  }
  .pre-inc .limitedFlowList__ttl {
    font-size: clamp(17px, 1.2rem + 0.521vw, 22px);
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.6;
  }
  .pre-inc .limitedFlowList__txt {
    font-size: 14px;
    letter-spacing: 0.03em;
    line-height: 1.8;
    margin-top: 1em;
    text-align: justify;
  }
  .pre-inc .limitedFlowList__btn {
    max-width: 230px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.6);
    color: #344C51;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-top: 1.5em;
  }
}
@media screen and (max-width: 768px) {
  .pre-inc .limitedFlow__head {
    padding-top: 50px;
  }
  .pre-inc .limitedFlow__ttl {
    width: 96%;
    margin-left: 0;
    margin-bottom: 30px;
    font-size: min(5.5vw, 50px);
  }
  .pre-inc .limitedFlow__txt {
    font-size: clamp(12px, 0.627rem + 1.527vw, 18px);
    margin-top: 1em;
    text-align: c;
  }
  .pre-inc .limitedFlow__body {
    margin-top: 50px;
  }
  .pre-inc .limitedFlowList > li {
    padding: 30px 9.375% 20%;
  }
  .pre-inc .limitedFlowList > li + li {
    padding: 0 9.375% 20%;
  }
  .pre-inc .limitedFlowList > li:last-child {
    padding-bottom: 30px;
  }
  .pre-inc .limitedFlowList__num {
    width: 19.2307692308%;
    margin: 30px auto 5px;
  }
  .pre-inc .limitedFlowList > li:first-child .limitedFlowList__num {
    margin-top: 0px;
  }
  .pre-inc .limitedFlowList__txtBox {
    margin-top: 15px;
  }
  .pre-inc .limitedFlowList__num img {
    position: inherit;
    transform: translate(0%, 0%);
    top: 0;
    left: 0;
  }
  .pre-inc .limitedFlowList__txtBox .entry_bt {
    margin-top: 10px;
    width: 80%;
    margin: 20px auto 0;
  }
  .pre-inc .limitedFlowList__txtBox .login_bt {
    display: block;
    width: 80%;
    margin: 20px auto;
  }
}
.pre-inc {
  /*** トップのヘッダー背景 ***/
}
.pre-inc #header {
  padding: 5px 0 30px 0;
  background: none;
}
.pre-inc #header h1 span {
  color: #000;
}
.pre-inc .drawer-hamburger-icon,
.pre-inc .drawer-hamburger-icon::before,
.pre-inc .drawer-hamburger-icon::after {
  background: #000;
}
.pre-inc .set-3 #header h1 span {
  color: #000;
}
.pre-inc .set-3 .drawer-hamburger-icon,
.pre-inc .set-3 .drawer-hamburger-icon::before,
.pre-inc .set-3 .drawer-hamburger-icon::after {
  background-color: #000;
}
.pre-inc {
  /*
  .footer_cv {
     transition: all 0.3s;
     opacity: 0;
     transform: translateY(100px);
  }
  .footer_cv.Scroll {
  	opacity: 1;
  	transform: translateY(0px);
  }*/
  /*** メインビジュアル ***/
}
.pre-inc .top_mv {
  position: relative;
  z-index: 0;
  height: 100dvh;
}
.pre-inc .top_mv_scene-1 {
  overflow: hidden;
  position: absolute !important;
  inset: 0;
  z-index: -1;
}
.pre-inc .top_mv_scene-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: 60.625% 56.8990042674%;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .pre-inc .top_mv_scene-1 img {
    transform-origin: left 70.4%;
  }
}
.pre-inc .top_mv_scene-1 .top_img_caption {
  z-index: 1;
}
.pre-inc .top_mv_scene-2 {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.pre-inc .top_mv_scene-2_copy {
  position: absolute;
  z-index: 1;
  top: 40%;
  left: 7.5%;
  font-size: 2.734375vw;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.3em;
  line-height: 2;
  color: #604c3f;
  transform: translateY(1em);
  opacity: 0;
  transition: transform 1s ease-out, opacity 1s ease-out;
}
@media screen and (max-width: 767px) {
  .pre-inc .top_mv_scene-2_copy {
    top: 10%;
    font-size: 6.1428571429vw;
  }
}
.pre-inc .top_mv_scene-2_bg {
  height: 100%;
}
.pre-inc .top_mv_scene-2_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pre-inc .top_mv.is-scene-2 .top_mv_scene-2_copy {
  transform: translateY(0);
  opacity: 1;
}
.pre-inc {
  /*** 冒頭箇所 ***/
}
.pre-inc .one_min {
  padding: min(3.7962962963vw, 41px) 0 0;
}
@media screen and (max-width: 767px) {
  .pre-inc .one_min {
    padding: 8.4285714286vw 0 0;
  }
}
.pre-inc .one_min_text {
  width: min(68.0555555556vw, 735px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .pre-inc .one_min_text {
    width: 90.7142857143vw;
  }
}
.pre-inc .one_min_point {
  margin-top: min(3.5185185185vw, 38px);
  padding: min(2.6851851852vw, 29px) 0 min(3.1481481481vw, 34px);
  background: #81583b;
}
@media screen and (max-width: 767px) {
  .pre-inc .one_min_point {
    margin-top: 7.4285714286vw;
    padding: 6.7142857143vw 0;
  }
}
.pre-inc .one_min_point_text {
  width: min(68.2407407407vw, 737px);
  margin: 0 auto;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 767px) {
  .pre-inc .one_min_point_text {
    width: 86.8571428571vw;
  }
}
.pre-inc .top_price {
  padding: min(2.037037037vw, 22px) 0 min(1.2037037037vw, 13px);
  background: #f5f1ef;
}
@media screen and (max-width: 767px) {
  .pre-inc .top_price {
    padding: 6vw 0 4.1428571429vw;
  }
}
.pre-inc .top_price .price_in {
  width: min(56.7592592593vw, 613px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .pre-inc .top_price .price_in {
    width: 84.8571428571vw;
  }
}
.pre-inc .top_cta {
  padding: min(4.3518518519vw, 47px) 0 min(5.2777777778vw, 57px);
}
@media screen and (max-width: 767px) {
  .pre-inc .top_cta {
    padding: 6.5714285714vw 0 8.7142857143vw;
  }
}
.pre-inc .top_cta_text {
  width: min(47.6851851852vw, 515px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .pre-inc .top_cta_text {
    width: 88.4285714286vw;
  }
}
.pre-inc .top_cta_buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(1.2037037037vw, 13px);
  margin: min(2.3148148148vw, 25px) auto 0;
}
@media screen and (max-width: 767px) {
  .pre-inc .top_cta_buttons {
    flex-direction: column;
    gap: 2.4285714286vw;
    margin: 7.8571428571vw auto 0;
  }
}
.pre-inc .top_cta_buttons > * {
  width: min(31.6666666667vw, 342px) !important;
  margin: 0 !important;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .pre-inc .top_cta_buttons > * {
    width: 62.2857142857vw !important;
  }
}
.pre-inc {
  /*** セクション共通パーツ ***/
}
.pre-inc .top_sec {
  overflow: hidden;
  background: #f5f1ef;
}
@media screen and (max-width: 767px) {
  .pre-inc .top_sec_title {
    text-align: center;
  }
}
.pre-inc .top_sec_title h2 {
  font-family: var(--font-oswald);
  font-size: min(4.1666666667vw, 45px);
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
  line-height: 1;
  color: #6D573E;
}
@media screen and (max-width: 767px) {
  .pre-inc .top_sec_title h2 {
    font-size: 8.4285714286vw;
  }
}
.pre-inc .top_sec_title p {
  margin-top: 1.25em;
  font-size: min(1.3888888889vw, 15px);
  font-weight: bold;
  letter-spacing: 0.22em;
  color: #6D573E;
}
@media screen and (max-width: 767px) {
  .pre-inc .top_sec_title p {
    font-size: 2.8571428571vw;
  }
}
.pre-inc .top_sec_text {
  margin-top: 1.5em;
  font-size: min(1.8518518519vw, 20px);
  font-feature-settings: "palt";
  letter-spacing: 0.22em;
  line-height: 1.8;
  color: #6D573E;
}
@media screen and (max-width: 767px) {
  .pre-inc .top_sec_text {
    font-size: 3.5714285714vw;
    text-align: center;
  }
}
.pre-inc .top_sec_button {
  margin-top: min(3.2407407407vw, 35px);
  width: min(24.0740740741vw, 260px);
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .pre-inc .top_sec_button {
    margin: 5.7142857143vw auto 0;
    width: 47.8571428571vw;
  }
}
.pre-inc .more_button {
  overflow: hidden;
  position: relative;
  display: block;
}
.pre-inc .more_button::after {
  background: #fff;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: 3;
  transform: translateY(-50%) scale(0.1);
  transition: opacity 0.5s, transform 0s;
  transition-delay: 0s, 0.4s;
}
.pre-inc .more_button:hover {
  opacity: 1;
}
.pre-inc .more_button:hover img {
  opacity: 1;
}
.pre-inc .more_button:hover::after {
  opacity: 0.3;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity 0.8s, transform 0.6s ease-in-out;
}
.pre-inc *:has(> .top_img_caption) {
  position: relative;
}
.pre-inc .top_img_caption {
  position: absolute;
  bottom: 1em;
  right: 1em;
  font-size: min(0.9259259259vw, 10px);
  text-align: right;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .pre-inc .top_img_caption {
    font-size: 1.8571428571vw;
  }
}
.pre-inc .top_img_caption.--shadow {
  text-shadow: 0 -1px 3px rgba(0, 0, 0, 0.3), -1px -1px 3px rgba(0, 0, 0, 0.3), 1px 0 3px rgba(0, 0, 0, 0.3), 1px 1px 3px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.3), -1px 1px 3px rgba(0, 0, 0, 0.3), -1px 0 3px rgba(0, 0, 0, 0.3), -1px -1px 3px rgba(0, 0, 0, 0.7);
}
.pre-inc {
  /*** ロケーション ***/
}
.pre-inc .top_location {
  padding: min(5vw, 54px) 0 min(10.5555555556vw, 114px);
}
@media screen and (max-width: 767px) {
  .pre-inc .top_location {
    padding: 5.7142857143vw 0 14vw;
  }
}
.pre-inc .top_location_map {
  width: min(100vw, 1080px);
  margin: 0 auto max(-14.8148148148vw, -160px);
}
@media screen and (max-width: 767px) {
  .pre-inc .top_location_map {
    width: auto;
    margin: 0 auto -12.5714285714vw;
  }
}
.pre-inc .top_location_row {
  width: min(92.5925925926vw, 1000px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .pre-inc .top_location_row {
    width: auto;
    flex-direction: column;
    justify-content: start;
    align-items: center;
  }
}
.pre-inc .top_location_img {
  padding: min(0.9259259259vw, 10px) 0;
  width: min(48.4259259259vw, 523px);
  background: #000;
}
@media screen and (max-width: 767px) {
  .pre-inc .top_location_img {
    margin-top: 5.4285714286vw;
    padding: 1.4285714286vw 0;
    width: 74.7142857143vw;
  }
}
.pre-inc .top_location_img .swiper-wrapper {
  transition-timing-function: linear !important;
}
.pre-inc {
  /***  デザイン ***/
}
.pre-inc .top_design {
  padding-bottom: min(11.1111111111vw, 120px);
}
@media screen and (max-width: 767px) {
  .pre-inc .top_design {
    padding-bottom: 10vw;
  }
}
.pre-inc .top_design_mv {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1280/730;
}
@media screen and (max-width: 767px) {
  .pre-inc .top_design_mv {
    aspect-ratio: 700/540;
  }
}
.pre-inc .top_design_mv picture {
  display: block;
  height: 100%;
  width: 100%;
}
.pre-inc .top_design_mv img {
  height: 100%;
  object-fit: cover;
}
.pre-inc .top_design_row {
  width: min(100vw, 1080px);
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .pre-inc .top_design_row {
    width: auto;
    flex-direction: column-reverse;
    justify-content: start;
    align-items: center;
    gap: 3.2857142857vw;
  }
}
.pre-inc .top_design_contents {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pre-inc .top_design_img {
  width: min(50vw, 540px);
  margin-top: max(-2.5925925926vw, -28px);
  margin-bottom: min(3.7037037037vw, 40px);
  padding: min(0.9259259259vw, 10px);
  background: #000;
  transform-origin: left top;
  rotate: -5.625deg;
}
@media screen and (max-width: 767px) {
  .pre-inc .top_design_img {
    width: 65.1428571429vw;
    padding: 1.4285714286vw;
    margin-bottom: 0;
    margin-left: -14.2857142857vw;
  }
}
.pre-inc {
  /*** プラン ***/
}
.pre-inc .top_plan {
  overflow: hidden;
  position: relative;
  z-index: 0;
  padding: min(6.7592592593vw, 73px) 0 min(7.037037037vw, 76px);
}
@media screen and (max-width: 767px) {
  .pre-inc .top_plan {
    padding: 29.1428571429vw 0 13.5714285714vw;
  }
}
.pre-inc .top_plan_bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  translate: -50% 0;
  padding: min(0.9259259259vw, 10px) 0;
  width: 110%;
  background: #000;
  transform-origin: left top;
  rotate: -352.695deg;
}
@media screen and (max-width: 767px) {
  .pre-inc .top_plan_bg {
    padding: 1.4285714286vw 0;
  }
}
.pre-inc .top_plan_bg .swiper-wrapper {
  transition-timing-function: linear !important;
}
.pre-inc .top_plan_bg .swiper-slide {
  width: min(36.6666666667vw, 396px);
}
@media screen and (max-width: 767px) {
  .pre-inc .top_plan_bg .swiper-slide {
    width: 40.4285714286vw;
  }
}
.pre-inc .top_plan_row {
  width: min(87.037037037vw, 940px);
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .pre-inc .top_plan_row {
    width: auto;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 4vw;
  }
}
.pre-inc .top_plan_img {
  width: min(45.8333333333vw, 495px);
}
@media screen and (max-width: 767px) {
  .pre-inc .top_plan_img {
    width: 70.7142857143vw;
    margin-right: -8.5714285714vw;
  }
}
.pre-inc .top_plan_contents {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: min(0.9259259259vw, 10px);
}
@media screen and (max-width: 767px) {
  .pre-inc .top_plan_contents {
    margin-bottom: 0;
  }
}
.pre-inc .top_plan_remarks {
  width: min(28.0555555556vw, 303px);
  margin-top: min(4.1666666667vw, 45px);
}
@media screen and (max-width: 767px) {
  .pre-inc .top_plan_remarks {
    margin: 7.1428571429vw auto 0;
    width: 56.2857142857vw;
  }
}
.pre-inc .bunner_property {
  width: 90%;
  max-width: 900px;
  margin: 30px auto 30px;
}/*# sourceMappingURL=top_renew.css.map */