@charset "UTF-8";
/*----------------------------------------

	common CSS

-----------------------------------------*/
.l-content {
  overflow: hidden;
}

/*----------------------------------------
    共通部分スライダー
-----------------------------------------*/
.s-slider-thumb {
  cursor: pointer;
  position: relative;
  aspect-ratio: 1366/810;
  overflow: hidden;
}
.s-slider-thumb img {
  min-width: 100%;
  width: auto;
  height: 100%;
}
.s-slider-thumb.-active::before {
  content: "";
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.s-slider-thumb-wrap {
  display: -ms-grid;
  display: grid;
  gap: 15px;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr;
  grid-template-columns: repeat(7, 1fr);
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 30px;
}
@media screen and (max-width: 767.99px ) {
  .s-slider-thumb-wrap {
    -ms-grid-columns: 1fr 5px 1fr 5px 1fr 5px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin-top: 20px;
  }
}
.s-slider-area__inner {
  position: relative;
  margin-top: 70px;
}
@media screen and (max-width: 767.99px ) {
  .s-slider-area__inner {
    margin-top: 40px;
  }
}

.s-common-slide {
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.s-common-slide.-active {
  position: relative;
  opacity: 1;
}
.s-common-slide .s-design-img {
  margin-top: 0;
}
@media screen and (max-width: 767.99px ) {
  .s-common-slide .s-design-text {
    min-height: 4lh;
  }
}

/*----------------------------------------
	ランドプランのモーダル
-----------------------------------------*/
.s-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
}
.s-modal.-active {
  display: block;
}
.s-modal .__body {
  padding-top: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 800px;
  width: 96%;
}
.s-modal .__body .s-design-img {
  margin-top: 0;
}
.s-modal .__body .s-design-img .-b {
  color: #000;
}
.s-modal .__close {
  width: 30px;
  margin-left: auto;
  display: block;
  margin-bottom: 10px;
}

/*----------------------------------------
	list
-----------------------------------------*/
.s-list {
  padding: 30px 0 5px;
}
@media print, screen and (min-width: 768px ) {
  .s-list {
    padding: 70px 0 25px;
  }
}
.s-list .__ttl {
  margin-bottom: 20px;
  font-size: 2.3rem;
  line-height: 1.7;
  text-align: center;
}
@media print, screen and (min-width: 768px ) {
  .s-list .__ttl {
    margin-bottom: 40px;
    font-size: 3.2rem;
  }
}

/*----------------------------------------
	ページ間リンク
-----------------------------------------*/
.s-switch {
  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: 26px;
  margin-top: 1px;
  padding: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 767.99px ) {
  .s-switch {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 10px;
  }
}
.s-switch.--bottom {
  margin-top: 100px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767.99px ) {
  .s-switch.--bottom {
    margin-top: 70px;
    margin-bottom: 70px;
  }
}
.s-switch .__link {
  max-width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
  width: 100%;
  height: 80px;
  padding: 0 5px;
  text-align: center;
  font-size: 24px;
  line-height: 1.3;
  opacity: 0.6;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 767.99px ) {
  .s-switch .__link {
    height: 60px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.4;
  }
}
.s-switch .__link.--classy {
  background: -webkit-gradient(linear, right top, left top, from(#620734), to(#A82566));
  background: linear-gradient(270deg, #620734 0%, #A82566 100%);
}
.s-switch .__link.--brillia {
  background: -webkit-gradient(linear, right top, left top, from(#0A3C69), to(#1477A4));
  background: linear-gradient(270deg, #0A3C69 0%, #1477A4 100%);
}
.s-switch .__link.-active {
  opacity: 1;
}
.s-switch .__link:hover {
  opacity: 1;
}
.s-switch .__en {
  font-family: "Marcellus", serif;
}

/*----------------------------------------
	common
-----------------------------------------*/
.s-category-ttl {
  font-size: 50px;
  text-align: center;
  margin-top: 70px;
}
@media screen and (max-width: 767.99px ) {
  .s-category-ttl {
    margin-top: 50px;
    font-size: 35px;
  }
}
.s-category-ttl::after {
  content: "";
  margin-top: 11px;
  margin-right: auto;
  margin-left: auto;
  height: 40px;
  width: 1px;
  display: block;
  background-color: #b6b6b6;
}
@media screen and (max-width: 767.99px ) {
  .s-category-ttl::after {
    height: 30px;
  }
}
.s-category-ttl.-land {
  margin-top: 120px;
}
@media screen and (max-width: 767.99px ) {
  .s-category-ttl.-land {
    margin-top: 80px;
  }
}

.s-name {
  font-size: 14px;
  font-family: YuMincho, YuMinchoM, Yu Mincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
@media screen and (max-width: 767.99px ) {
  .s-name {
    font-size: 12.5px;
  }
}
.s-name span {
  display: block;
  font-size: 32px;
  font-family: "Marcellus", serif;
  color: #3372a8;
}
@media screen and (max-width: 767.99px ) {
  .s-name span {
    font-size: 24px;
  }
}

.s-contents-wrap {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media print, screen and (min-width: 768px ) {
  .s-contents-wrap {
    padding-right: 0;
    padding-left: 0;
  }
}
.s-contents-wrap.-mt {
  margin-top: -60px;
}

.s-design-img {
  margin-top: 70px;
  position: relative;
  aspect-ratio: 1366/710;
  overflow: hidden;
}
@media screen and (max-width: 767.99px ) {
  .s-design-img {
    margin-top: 40px;
  }
}
.s-design-img img {
  min-width: 100%;
  width: auto;
  height: 100%;
}
.s-design-img figcaption {
  font-size: 12px;
  position: absolute;
  bottom: 7px;
  right: 7px;
  color: #fff;
}
@media screen and (max-width: 767.99px ) {
  .s-design-img figcaption {
    bottom: 5px;
    right: 5px;
    font-size: 10px;
  }
}
.s-design-img figcaption.-b {
  color: #000;
}

.s-design-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.99px ) {
  .s-design-row.--img-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767.99px ) {
  .s-design-row.--img-left .s-design-img {
    margin-left: -20px;
    margin-right: auto;
  }
}
.s-design-row.--img-left .__text-area {
  margin-left: auto;
}
@media screen and (max-width: 767.99px ) {
  .s-design-row.--img-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767.99px ) {
  .s-design-row.--img-right .s-design-img {
    margin-right: -20px;
    margin-left: auto;
  }
}
.s-design-row.--img-right .__text-area {
  margin-right: auto;
}
@media screen and (max-width: 767.99px ) {
  .s-design-row .__text-area {
    margin-top: 12px;
  }
}
@media print, screen and (min-width: 768px ) {
  .s-design-row .__text-area {
    width: 40%;
  }
}
.s-design-row .s-design-text {
  margin-top: 15px;
}
@media print, screen and (min-width: 768px ) {
  .s-design-row .s-design-text {
    margin-top: 30px;
  }
}
.s-design-row .s-design-img {
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767.99px ) {
  .s-design-row .s-design-img {
    width: 92%;
  }
}
@media print, screen and (min-width: 768px ) {
  .s-design-row .s-design-img {
    width: calc(60% - 50px);
  }
}

.s-info-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 65px 1fr;
  grid-template-columns: auto 1fr;
  gap: 65px;
  margin-top: 30px;
}

@media screen and (max-width: 767.99px) {
  .s-info-row {
    margin-top: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.s-design-text {
  line-height: 2.1;
}

@media screen and (max-width: 767.99px) {
  .s-design-text {
    font-size: 1.2rem;
  }
}
.s-design-block-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 164px;
}

@media screen and (max-width: 767.99px) {
  .s-design-block-row {
    gap: 10px;
  }
}
.s-design-block-row .__block {
  max-width: 422px;
}

.s-design-block-row .__block .s-name {
  margin-top: 24px;
}

@media screen and (max-width: 767.99px) {
  .s-design-block-row .__block .s-name {
    margin-top: 20px;
  }
}
.s-design-block-row .__block .s-design-text {
  margin-top: 20px;
}

@media screen and (max-width: 767.99px) {
  .s-design-block-row .__block .s-design-text {
    margin-top: 15px;
  }
}
.s-design-block-row .__block .s-design-img {
  border-radius: 10px;
  overflow: hidden;
}

/*----------------------------------------
	FACADE
-----------------------------------------*/
.s-facade .__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767.99px) {
  .s-facade .__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 75px;
    gap: 50px;
  }
}
.s-facade .__copy {
  font-size: 26px;
  font-family: YuMincho, YuMinchoM, Yu Mincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin-top: 42px;
}

@media screen and (max-width: 767.99px) {
  .s-facade .__copy {
    font-size: 17px;
    margin-top: 20px;
  }
}
.s-facade .__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767.99px) {
  .s-facade .__img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: -70px;
  }
}
@media print, screen and (min-width: 768px) {
  .s-facade .__img {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    width: 45%;
  }
}
.s-facade .__img img {
  max-width: 100%;
}

@media print, screen and (min-width: 768px) {
  .s-facade .__img img {
    width: calc(100% - 100px);
  }
}
.s-facade .__img figcaption {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 15px;
  font-size: 12px;
}

@media print, screen and (min-width: 768px) {
  .s-facade .__img figcaption {
    width: 90px;
  }
}
@media screen and (max-width: 767.99px) {
  .s-facade .__img figcaption {
    margin-right: 0;
    margin-top: 5px;
    font-size: 10px;
  }
}
@media print, screen and (min-width: 768px) {
  .s-facade .__text-area {
    width: 50%;
  }
}
.s-facade .__text {
  margin-top: 40px;
  padding: 42px 0;
  color: #fff;
  position: relative;
  line-height: 2.1;
}

@media screen and (max-width: 767.99px) {
  .s-facade .__text {
    padding: 20px 0 25px;
    margin-top: 20px;
    font-size: 1.2rem;
  }
}
.s-facade .__text::before {
  content: "";
  display: block;
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  z-index: -1;
  right: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#0A3C69), to(#1477A4));
  background: linear-gradient(0deg, #0A3C69 0%, #1477A4 100%);
}

@media print, screen and (min-width: 1200px) {
  .s-facade .__text::before {
    right: auto;
    left: calc(-650px - (100vw - 1200px) / 2);
  }
}
@media screen and (max-width: 767.99px) {
  .s-facade .__text::before {
    left: calc(50% - 50vw);
    right: auto;
  }
}
.s-facade .__text.--classy::before {
  background: -webkit-gradient(linear, left bottom, left top, from(#620734), to(#A82566));
  background: linear-gradient(0deg, #620734 0%, #A82566 100%);
}

/*----------------------------------------
	LAND PLAN
-----------------------------------------*/
.s-land-plan .__copy {
  font-size: 26px;
  font-family: YuMincho, YuMinchoM, Yu Mincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin-top: 20px;
  text-align: center;
}

@media screen and (max-width: 767.99px) {
  .s-land-plan .__copy {
    font-size: 20px;
    margin-top: 20px;
  }
}
.s-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7px;
}

@media screen and (max-width: 767.99px) {
  .s-tab {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.s-tab.-top {
  margin-top: 40px;
}

@media screen and (max-width: 767.99px) {
  .s-tab.-top {
    margin-top: 20px;
  }
}
.s-tab.-top .__tab {
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
}

@media screen and (max-width: 767.99px) {
  .s-tab.-top .__tab {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
}
.s-tab.-top .__tab.-active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.s-tab.-bottom .__tab {
  -webkit-transform: translateY(-12px);
          transform: translateY(-12px);
}

@media screen and (max-width: 767.99px) {
  .s-tab.-bottom .__tab {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
}
.s-tab.-bottom .__tab.-active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.s-tab .__tab {
  opacity: 0.5;
  font-size: 26px;
  line-height: 1;
  color: #fff;
  text-align: center;
  display: block;
  border: none;
  width: 163px;
  font-family: "Marcellus", serif;
  padding: 16px 0;
  background-color: #A27D3A;
}

@media screen and (max-width: 767.99px) {
  .s-tab .__tab {
    padding: 8px 0;
    font-size: 18px;
  }
}
.s-tab .__tab.-active {
  opacity: 1;
}

.s-tab-content {
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.08);
  padding: 40px 30px 50px;
  position: relative;
  z-index: 1;
  display: none;
}

@media screen and (max-width: 767.99px) {
  .s-tab-content {
    padding: 20px 20px 30px;
  }
}
.s-tab-content.-active {
  display: block;
}

.s-tab-content .__text {
  line-height: 2.1;
  margin-bottom: 20px;
}

@media screen and (max-width: 767.99px) {
  .s-tab-content .__text {
    font-size: 12px;
    margin-bottom: 5px;
  }
}
.s-tab-content .__floor {
  margin-top: 0px;
  color: #3372a8;
  font-size: 26px;
  font-family: "Marcellus", serif;
  padding-bottom: 10px;
  border-bottom: 1px solid currentColor;
}

.s-tab-content .__floor.-c {
  color: #a61955;
}

@media screen and (max-width: 767.99px) {
  .s-tab-content .__floor {
    margin-top: 15px;
    font-size: 20px;
    padding-bottom: 1px;
  }
}
.s-tab-content .__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}

@media screen and (max-width: 767.99px) {
  .s-tab-content .__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-top: 15px;
  }
}
.s-tab-content .__info-text {
  width: 20%;
}

@media screen and (max-width: 767.99px) {
  .s-tab-content .__info-text {
    width: 100%;
  }
}
.s-tab-content .__map {
  position: relative;
  width: 75%;
  container-type: inline-size;
}

.s-tab-content .__map.-f2 {
  width: 59%;
  margin-right: auto;
  margin-left: auto;
}

.s-tab-content .__map.-f3 {
  width: 59%;
  margin-right: auto;
  margin-left: auto;
}

.s-tab-content .__map.-f3b {
  width: 59%;
  margin-right: auto;
  margin-left: auto;
}

.s-tab-content .__map.-f17 {
  width: 53%;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 767.99px) {
  .s-tab-content .__map {
    width: 100% !important;
  }
}
.s-tab-content .__map.-br .__map-link::before {
  background: #FFF;
}

.s-tab-content .__map.-br .__map-link > span {
  background: #2e739c !important;
}

@-webkit-keyframes anime {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 1;
  }
  70% {
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1.8, 1.8);
    transform: scale(1.8, 1.8);
    opacity: 0;
  }
}
@keyframes anime {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 1;
  }
  70% {
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1.8, 1.8);
    transform: scale(1.8, 1.8);
    opacity: 0;
  }
}
.s-tab-content .__map-link {
  position: absolute;
  width: 3.1cqw;
  height: 3.1cqw;
  color: #fff;
  font-family: "Marcellus", serif;
  font-size: 18px;
  line-height: 3.1cqw;
}

.s-tab-content .__map-link.-f2 {
  width: 3.7cqw;
  height: 3.7cqw;
  line-height: 3.7cqw;
}

.s-tab-content .__map-link.-f3 {
  width: 4.1cqw;
  height: 4.1cqw;
  font-size: 20px;
  line-height: 4.1cqw;
}

.s-tab-content .__map-link.-f4 {
  width: 4.5cqw;
  height: 4.5cqw;
  font-size: 19px;
  line-height: 4.5cqw;
}

@media screen and (max-width: 767.99px) {
  .s-tab-content .__map-link {
    display: none;
  }
}
.s-tab-content .__map-link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 3%;
  background: #ac1e23;
  -webkit-animation: anime 2s ease-out 1s infinite;
  animation: anime 2s ease-out 1s infinite;
}

.s-tab-content .__map-link > span {
  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;
  line-height: inherit;
  width: 100%;
  height: 100%;
  background: #ac1e23;
  border: 1px solid #fff;
  display: block;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.s-tab-content .__map-link.-f1-1 {
  bottom: 25.1cqw;
  left: 20cqw;
}

.s-tab-content .__map-link.-f1-2 {
  bottom: 25.1cqw;
  left: 31.9cqw;
}

.s-tab-content .__map-link.-f1-3 {
  bottom: 31cqw;
  left: 43.6cqw;
}

.s-tab-content .__map-link.-f1-4 {
  bottom: 18.5cqw;
  left: 34.8cqw;
}

.s-tab-content .__map-link.-f1-5 {
  bottom: 22.5cqw;
  left: 40.7cqw;
}

.s-tab-content .__map-link.-f1-6 {
  bottom: 42.8cqw;
  left: 33.1cqw;
}

.s-tab-content .__map-link.-f1-7 {
  bottom: 35.6cqw;
  left: 31.6cqw;
}

.s-tab-content .__map-link.-f1-8 {
  bottom: 59.2cqw;
  left: 29.8cqw;
}

.s-tab-content .__map-link.-f1-9 {
  bottom: 50.7cqw;
  left: 15.6cqw;
}

.s-tab-content .__map-link.-f1-10-1 {
  bottom: 61.2cqw;
  left: 40.2cqw;
}

.s-tab-content .__map-link.-f1-10-2 {
  bottom: 55.4cqw;
  left: 48.7cqw;
}

.s-tab-content .__map-link.-f1-10-3 {
  bottom: 53.1cqw;
  left: 64.1cqw;
}

.s-tab-content .__map-link.-f1-10-4 {
  bottom: 45.5cqw;
  left: 42.4cqw;
}

.s-tab-content .__map-link.-f1-10-5 {
  bottom: 45.5cqw;
  left: 48.9cqw;
}

.s-tab-content .__map-link.-f1-10-6 {
  bottom: 45.5cqw;
  left: 55.4cqw;
}

.s-tab-content .__map-link.-f1-11 {
  bottom: 49.6cqw;
  left: 70.1cqw;
}

.s-tab-content .__map-link.-f1-12 {
  bottom: 61.6cqw;
  left: 25cqw;
}

.s-tab-content .__map-link.-f2-1 {
  bottom: 49.05cqw;
  left: 7.65cqw;
}

.s-tab-content .__map-link.-f2-2 {
  bottom: 43.95cqw;
  left: 7.65cqw;
}

.s-tab-content .__map-link.-f2-3 {
  bottom: 37.35cqw;
  left: 8.3cqw;
}

.s-tab-content .__map-link.-f2-4 {
  bottom: 28.25cqw;
  left: 8.33cqw;
}

.s-tab-content .__map-link.-f2-5-1 {
  bottom: 53.95cqw;
  left: 36.8cqw;
}

.s-tab-content .__map-link.-f2-5-2 {
  bottom: 37.35cqw;
  left: 52.5cqw;
}

.s-tab-content .__map-link.-f2-6 {
  bottom: 24.65cqw;
  left: 23.2cqw;
}

.s-tab-content .__map-link.-f3-7 {
  bottom: 16.3cqw;
  left: 28.85cqw;
}

.s-tab-content .__map-link.-f3-8 {
  bottom: 16.7cqw;
  left: 18.65cqw;
}

.s-tab-content .__map-link.-f3-9 {
  bottom: 25.5cqw;
  left: 10.5cqw;
}

.s-tab-content .__map-link.-f3-10 {
  bottom: 38cqw;
  left: 9.7cqw;
}

.s-tab-content .__map-link.-f3-11 {
  bottom: 54.2cqw;
  left: 9.5cqw;
}

.s-tab-content .__map-link.-f3-12 {
  bottom: 34.9cqw;
  left: 24.9cqw;
}

.s-tab-content .__map-link.-b-f1-1 {
  bottom: 60cqw;
  left: 39.9cqw;
}

.s-tab-content .__map-link.-b-f1-2 {
  bottom: 82.9cqw;
  left: 49.5cqw;
}

.s-tab-content .__map-link.-b-f1-3 {
  bottom: 64.9cqw;
  left: 38.4cqw;
}

.s-tab-content .__map-link.-b-f1-4-1 {
  bottom: 61.6cqw;
  left: 70.8cqw;
}

.s-tab-content .__map-link.-b-f1-4-2 {
  bottom: 80.6cqw;
  left: 70.8cqw;
}

.s-tab-content .__map-link.-b-f1-5 {
  bottom: 75.9cqw;
  left: 32.1cqw;
}

.s-tab-content .__map-link.-b-f1-6-1 {
  bottom: 65cqw;
  left: 83.3cqw;
}

.s-tab-content .__map-link.-b-f1-6-2 {
  bottom: 67.7cqw;
  left: 93.6cqw;
}

.s-tab-content .__map-link.-b-f1-6-3 {
  bottom: 45.6cqw;
  left: 81.9cqw;
}

.s-tab-content .__map-link.-b-f1-6-4 {
  bottom: 43.9cqw;
  left: 91.7cqw;
}

.s-tab-content .__map-link.-b-f1-6-5 {
  bottom: 101.9cqw;
  left: 93.7cqw;
}

.s-tab-content .__map-link.-b-f1-7-1 {
  bottom: 32.4cqw;
  left: 91.8cqw;
}

.s-tab-content .__map-link.-b-f1-7-2 {
  bottom: 35cqw;
  left: 75.8cqw;
}

.s-tab-content .__map-link.-b-f1-7-3 {
  bottom: 35cqw;
  left: 65.4cqw;
}

.s-tab-content .__map-link.-b-f1-7-4 {
  bottom: 35cqw;
  left: 39.5cqw;
}

.s-tab-content .__map-link.-b-f1-7-5 {
  bottom: 35cqw;
  left: 28.4cqw;
}

.s-tab-content .__map-link.-b-f1-8 {
  bottom: 56.4cqw;
  left: 59.1cqw;
}

.s-tab-content .__map-link.-b-f1-9 {
  bottom: 65.1cqw;
  left: 58cqw;
}

.s-tab-content .__map-link.-b-f1-10 {
  bottom: 35cqw;
  left: 52.6cqw;
}

.s-tab-content .__map-link.-b-f3-11 {
  bottom: 14.6cqw;
  left: 59.4cqw;
}

.s-tab-content .__map-link.-b-f3-12 {
  bottom: 34.2cqw;
  left: 53.1cqw;
}

.s-tab-content .__map-link.-b-f3-13 {
  bottom: 35cqw;
  left: 18.8cqw;
}

.s-tab-content .__map-link.-b-f3-14 {
  bottom: 38.3cqw;
  left: 47cqw;
}

.s-tab-content .__map-link.-b-f3-15 {
  bottom: 60.1cqw;
  left: 20.8cqw;
}

.s-tab-content .__map-link.-b-f3-16 {
  bottom: 58.4cqw;
  left: 30.3cqw;
}

.s-tab-content .__map-link.-b-f3-17 {
  bottom: 73.2cqw;
  left: 21.2cqw;
}

.s-tab-content .__map-link.-b-f3-18 {
  bottom: 76.9cqw;
  left: 39.4cqw;
}

.s-tab-content .__map-link.-b-f17-19 {
  bottom: 71.7cqw;
  left: 69.5cqw;
}

.s-tab-content .__map-link.-b-f17-20 {
  bottom: 39.1cqw;
  left: 62.1cqw;
}

.s-tab-content .__map-link.-b-f17-21 {
  bottom: 39.3cqw;
  left: 76.6cqw;
}

/*----------------------------------------
	CLASSY
-----------------------------------------*/
.s-classy .s-name span {
  color: #a61955;
}

.s-plan .__copy {
  font-size: 26px;
  font-family: YuMincho, YuMinchoM, Yu Mincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin-top: 80px;
}

@media screen and (max-width: 767.99px) {
  .s-plan .__copy {
    font-size: 20px;
    margin-top: 50px;
  }
}
.s-plan .__text {
  line-height: 2.1;
  margin-top: 10px;
}

@media screen and (max-width: 767.99px) {
  .s-plan .__text {
    margin-top: 15px;
    font-size: 14px;
  }
}
.s-plan .__row {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
}

@media screen and (max-width: 767.99px) {
  .s-plan .__row {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}