@charset "UTF-8";
:root {
  --color-main: #173259;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-bg: #efefef;
  --color-bg-gray: #e3e3e3;
  --color-border: #64757f;
  --color-official: #1b3458;
  --color-request: #a68433;
  --color-reserve: #8a1324;
  --color-blue01: #4D7FC6;
  --color-blue02: #5179B3;
  --color-blue03: #163259;
  --color-lightblue: #37c4c9;
  --color-orange01: #a68433;
  --color-brown: #5B443C;
  --color-yellow: #e0b318;
  --color-green: #12841f;
}

body {
  overflow-x: unset;
}

.color_lightblue {
  color: var(--color-lightblue);
}
.color_yellow {
  color: var(--color-yellow);
}

.bg_main {
  background-color: var(--color-main);
}
.bg_orange {
  background-color: var(--color-orange01);
}

em {
  font-style: normal;
}

figure {
  position: relative;
}
figure figcaption {
  position: absolute;
  bottom: 0.5em;
  right: 1em;
  display: block;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--color-white);
  text-shadow: 0 0 1px rgb(0, 0, 0), 0 0 3px rgb(0, 0, 0), 0 0 5px rgb(0, 0, 0), 0 0, 0 0 7px rgb(0, 0, 0), 0 0 10px rgb(0, 0, 0), 0 0 10px rgb(0, 0, 0);
}

.tx_note {
  margin-top: 1em;
  font-size: 1.2rem;
}
@media screen and (max-width: 520px) {
  .tx_note {
    font-size: 1rem;
  }
}

header {
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid #eee;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-end;
  height: 64px;
  padding: 14px 40px 0;
  position: fixed;
  z-index: 100;
  width: 100%;
}
@media screen and (max-width: 768px) {
  header {
    padding: 8px 20px 0;
  }
}
header .header_summary {
  color: var(--color-main);
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 17px;
  z-index: 2;
}
@media screen and (max-width: 520px) {
  header .header_summary {
    flex-flow: column wrap;
    gap: 12px;
    height: auto;
    margin-bottom: 9px;
  }
}
header .header_summary h1 {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  order: 2;
}
@media screen and (max-width: 768px) {
  header .header_summary h1 {
    font-size: 1.4rem;
    margin-left: -0.5em;
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  header .header_summary h1 {
    font-size: 2.692vw;
  }
}
header .header_summary p {
  max-width: 224px;
  width: 90%;
  order: 1;
}
@media screen and (max-width: 768px) {
  header .header_summary p {
    width: 200px;
  }
}
@media screen and (max-width: 520px) {
  header .header_summary p {
    width: 170px;
  }
}
header .header_nav {
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 4;
}
header .header_nav .links {
  background: var(--color-main);
  border-radius: 8px 8px 0 0;
  color: var(--color-white);
  cursor: pointer;
  line-height: 48px;
  margin: 0 40px 0 auto;
  text-align: center;
  width: 10em;
}
header .header_nav .links::after {
  content: "+";
  margin-left: 8px;
}
@media screen and (max-width: 820px) {
  header .header_nav .links {
    font-size: 1.4rem;
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 520px) {
  header .header_nav .links {
    font-size: 3.077vw;
    line-height: 40px;
  }
}
header .header_nav .anchorlist {
  background-color: var(--color-main);
  display: none;
  max-height: calc(100vh - 64px); /* header_navの高さ分を引く */
  padding: 32px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 100vw;
  position: absolute;
  top: 100%;
  left: 0;
}
header .header_nav .anchorlist.is-open {
  display: block;
}
header .header_nav .anchorlist.is-open + p::after {
  content: "-";
}
@media screen and (max-width: 768px) {
  header .header_nav .anchorlist {
    padding: 24px 0;
  }
}
@media screen and (max-width: 520px) {
  header .header_nav .anchorlist {
    padding: 16px 0;
  }
}
header .header_nav .anchorlist ul {
  display: flex;
  flex-flow: row wrap;
  margin: auto;
  max-width: 1400px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 960px) {
  header .header_nav .anchorlist ul {
    gap: 24px 0;
  }
}
@media screen and (max-width: 520px) {
  header .header_nav .anchorlist ul {
    gap: 16px 0;
  }
}
header .header_nav .anchorlist li {
  width: 25%;
  position: relative;
}
@media screen and (max-width: 960px) {
  header .header_nav .anchorlist li {
    width: 50%;
  }
}
@media screen and (max-width: 520px) {
  header .header_nav .anchorlist li {
    width: 100%;
  }
}
header .header_nav .anchorlist li::after {
  background-color: #fff;
  content: "";
  display: block;
  height: 100%;
  width: 1px;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 520px) {
  header .header_nav .anchorlist li::after {
    height: 1px;
    width: 100%;
    top: auto;
    bottom: -16px;
  }
}
@media screen and (max-width: 960px) {
  header .header_nav .anchorlist li:nth-child(2)::after, header .header_nav .anchorlist li:nth-child(4)::after {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  header .header_nav .anchorlist li:nth-child(2)::after {
    display: block;
  }
}
header .header_nav .anchorlist li:first-child::before {
  background-color: #fff;
  content: "";
  display: block;
  height: 100%;
  width: 1px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  header .header_nav .anchorlist li:first-child::before {
    display: none;
  }
}
header .header_nav .anchorlist li .label {
  background-color: var(--color-request);
  color: #fff;
  font-size: 1.6rem;
  padding: 0.15em 0.5em;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  header .header_nav .anchorlist li .label {
    font-size: 1.4rem;
  }
}
header .header_nav .anchorlist li a {
  display: block;
  margin-top: 32px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  header .header_nav .anchorlist li a {
    margin-top: 16px;
  }
}
@media screen and (max-width: 520px) {
  header .header_nav .anchorlist li.nolb a {
    margin-top: 12px;
  }
}
header .header_nav .anchorlist li .t_name {
  color: #fff;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  header .header_nav .anchorlist li .t_name {
    font-size: 1.4rem;
  }
}
header .header_nav .anchorlist li .t_name span {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  header .header_nav .anchorlist li .t_name span {
    font-size: 1rem;
  }
}

.bd_anchorlist {
  background: var(--color-main);
  padding: 12px 0;
}
@media screen and (max-width: 768px) {
  .bd_anchorlist {
    padding: 8px 0;
  }
}
@media screen and (max-width: 520px) {
  .bd_anchorlist {
    padding: 0 0 16px;
  }
}
.bd_anchorlist ul {
  display: flex;
  flex-flow: row wrap;
  margin: auto;
  max-width: 1400px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 960px) {
  .bd_anchorlist ul {
    gap: 24px 0;
  }
}
@media screen and (max-width: 520px) {
  .bd_anchorlist ul {
    gap: 16px 0;
  }
}
.bd_anchorlist li {
  width: 25%;
  position: relative;
}
@media screen and (max-width: 960px) {
  .bd_anchorlist li {
    width: 50%;
  }
}
@media screen and (max-width: 520px) {
  .bd_anchorlist li {
    width: 100%;
  }
}
.bd_anchorlist li::after {
  background-color: #fff;
  content: "";
  display: block;
  height: 100%;
  width: 1px;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 520px) {
  .bd_anchorlist li::after {
    height: 1px;
    width: 100%;
    top: auto;
    bottom: -16px;
  }
}
@media screen and (max-width: 960px) {
  .bd_anchorlist li:nth-child(2)::after, .bd_anchorlist li:nth-child(4)::after {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  .bd_anchorlist li:nth-child(2)::after {
    display: block;
  }
}
.bd_anchorlist li:first-child::before {
  background-color: #fff;
  content: "";
  display: block;
  height: 100%;
  width: 1px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .bd_anchorlist li:first-child::before {
    display: none;
  }
}
.bd_anchorlist li .label {
  background-color: var(--color-request);
  color: #fff;
  font-size: 2rem;
  padding: 0.15em 0.5em;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .bd_anchorlist li .label {
    font-size: 1.6rem;
  }
}
.bd_anchorlist li a {
  display: block;
  margin-top: 32px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .bd_anchorlist li a {
    margin-top: 16px;
  }
}
@media screen and (max-width: 520px) {
  .bd_anchorlist li.nolb a {
    margin-top: 12px;
  }
}
.bd_anchorlist li .t_name {
  color: #fff;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .bd_anchorlist li .t_name {
    font-size: 1.4rem;
  }
}
.bd_anchorlist li .t_name span {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .bd_anchorlist li .t_name span {
    font-size: 1rem;
  }
}

.mv .pc_only {
  display: block;
}
@media screen and (max-width: 768px) {
  .mv .pc_only {
    display: none;
  }
}
.mv .sp_only {
  display: none;
}
@media screen and (max-width: 768px) {
  .mv .sp_only {
    display: block;
  }
}

.property_list {
  position: relative;
  margin: 0 auto;
  padding: 100px 0 1px;
}
.property_list .parallax-bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.property_list .parallax-bg::before {
  content: "";
  position: sticky;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100vh;
  background: url(../images/bg.webp) no-repeat top center/100%;
}
@media screen and (max-width: 768px) {
  .property_list {
    padding: 64px 0 0;
  }
}
@media screen and (max-width: 520px) {
  .property_list {
    padding: 48px 0 0;
  }
}
.property_list.bg01 {
  background-color: #f1f0f4;
}
.property_list.bg01 .property {
  border-top: 8px solid var(--color-main);
}
.property_list.bg02 {
  background-color: #f9f7f0;
}
.property_list.bg02 .property {
  border-top: 8px solid var(--color-orange01);
}
.property_list.bg02 .parallax-bg::before {
  background-image: url(../images/bg2.webp);
}
.property_list__inner {
  margin: 0 auto;
  max-width: 1400px;
  width: calc(100% - 20px);
}
.property_list .hdg {
  display: grid;
  grid-template: auto/40px 1fr max-content;
  align-items: center;
  gap: 24px;
  margin-block: 80px 40px;
  padding: 25px 40px 31px 0;
  color: var(--color-white);
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .property_list .hdg {
    grid-template: auto/40px 1fr;
    gap: 10px;
    margin-block: 40px 16px;
    padding: 16px 20px 16px 0;
  }
}
.property_list .hdg em {
  font-size: 3.2rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .property_list .hdg em {
    font-size: 2.8rem;
  }
}
.property_list .hdg span {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .property_list .hdg span {
    grid-column: 2/3;
    font-size: 1.4rem;
  }
}
.property_list .hdg::before {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background: var(--color-white);
}
.property_list .hdg01 {
  background: var(--color-blue01);
  background: linear-gradient(90deg, rgb(77, 127, 198) 0%, rgb(68, 104, 156) 30%, rgb(58, 81, 114) 100%);
}
.property_list .hdg02 {
  background: var(--color-orange01);
  background: linear-gradient(90deg, rgb(210, 192, 148) 0%, rgb(184, 161, 119) 30%, rgb(148, 130, 86) 100%);
}

.property {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 40px 80px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .property {
    padding: 48px;
  }
}
@media screen and (max-width: 991px) {
  .property {
    padding: 32px;
  }
}
@media screen and (max-width: 768px) {
  .property {
    margin-bottom: 64px;
    padding: 24px;
  }
}
@media screen and (max-width: 520px) {
  .property {
    margin-bottom: 48px;
  }
}
.property_inner {
  display: grid;
  grid-template: auto 1fr/1fr min(54.84%, 680px);
  align-items: start;
  gap: 65px 5.24%;
}
@media screen and (max-width: 1024px) {
  .property_inner {
    grid-template: auto 1fr/repeat(2, 1fr);
    gap: 32px 16px;
  }
}
@media screen and (max-width: 768px) {
  .property_inner {
    grid-template: auto/1fr;
    gap: 24px;
  }
}
.property_inner ul {
  grid-area: 2/1/3/2;
  display: grid;
  grid-template: max-content/repeat(2, 1fr);
  gap: 16px;
}
@media screen and (max-width: 991px) {
  .property_inner ul {
    grid-area: 2/1/3/3;
  }
}
@media screen and (max-width: 768px) {
  .property_inner ul {
    grid-area: auto;
  }
}
@media screen and (max-width: 520px) {
  .property_inner ul {
    gap: 10px;
  }
}
.property_inner li {
  text-align: center;
}
.property_inner li.full {
  grid-column: 1/3;
}
.property_inner li a {
  color: var(--color-white);
  display: block;
  padding: 0.5em 0.25em;
  font-size: 2rem;
  letter-spacing: 0.1em;
  transition: opacity 0.4s ease;
}
@media screen and (max-width: 520px) {
  .property_inner li a {
    font-size: 1.6rem;
  }
}
.property_inner li a:hover {
  opacity: 0.5;
}
.property_inner li.official a {
  background-color: var(--color-official);
}
.property_inner li.request a {
  background-color: var(--color-request);
}
.property_inner li.reserve a {
  background-color: var(--color-reserve);
}
.property_inner li.online a {
  background-color: var(--color-green);
}
.property_img {
  grid-area: 1/2/3/3;
}
@media screen and (max-width: 991px) {
  .property_img {
    grid-area: 1/2/2/3;
  }
}
@media screen and (max-width: 768px) {
  .property_img {
    grid-area: auto;
  }
}
.property_summary {
  grid-area: 1/1/2/2;
}
@media screen and (max-width: 768px) {
  .property_summary {
    grid-area: auto;
  }
}
.property_summary h2 {
  border-bottom: 1px solid var(--color-main);
  font-size: 2.4rem;
  line-height: 1.5;
  padding-bottom: 16px;
}
@media screen and (max-width: 991px) {
  .property_summary h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 520px) {
  .property_summary h2 {
    font-size: 1.8rem;
    padding-bottom: 8px;
  }
}
.property_summary h3 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
@media screen and (max-width: 520px) {
  .property_summary h3 {
    font-size: 4.615vw;
  }
}
.property_point {
  margin-block-start: 16px;
  font-size: 1.8rem;
  line-height: 1.75;
}
@media screen and (max-width: 991px) {
  .property_point {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 520px) {
  .property_point {
    margin-block-start: 8px;
    font-size: 1.4rem;
  }
}

.property_movie_list {
  display: grid;
  grid-template: auto/repeat(3, 1fr);
  gap: 56px;
}
@media screen and (max-width: 1024px) {
  .property_movie_list {
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .property_movie_list {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: auto;
  }
}
.property_movie_list li {
  grid-column: 2;
  justify-self: center;
}
@media screen and (max-width: 768px) {
  .property_movie_list li {
    grid-column: 1;
  }
}

.property_map_inner {
  max-width: 944px;
  margin-inline: auto;
}

.property_plan_inner {
  display: grid;
  grid-template: max-content 1fr/1fr min(54.84%, 680px);
  align-items: start;
  gap: 43px 7.74%;
}
@media screen and (max-width: 1024px) {
  .property_plan_inner {
    grid-template-columns: 1fr 45%;
    gap: 24px 32px;
  }
}
@media screen and (max-width: 991px) {
  .property_plan_inner {
    grid-template-columns: 1fr 45%;
  }
}
@media screen and (max-width: 768px) {
  .property_plan_inner {
    grid-template: auto/1fr;
    gap: 24px;
  }
}
.property_plan_detail {
  grid-area: 1/1/2/2;
}
@media screen and (max-width: 768px) {
  .property_plan_detail {
    grid-area: auto;
  }
}
.property_plan figure {
  grid-area: 1/2/3/3;
}
@media screen and (max-width: 768px) {
  .property_plan figure {
    grid-area: auto;
  }
}
.property_plan figure img {
  display: block;
  margin: auto;
  max-height: 680px;
  width: auto;
}
.property_plan_point {
  grid-area: 2/1/3/2;
}
@media screen and (max-width: 768px) {
  .property_plan_point {
    grid-area: auto;
  }
}
.property_plan_point h4 {
  font-size: 2rem;
  letter-spacing: 0.2em;
}
.property_plan_point ul {
  margin-block-start: 24px;
  display: grid;
  gap: 16px;
}
@media screen and (max-width: 520px) {
  .property_plan_point ul {
    margin-block-start: 16px;
    gap: 6px;
  }
}
.property_plan_point ul li {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 520px) {
  .property_plan_point ul li {
    font-size: 1.4rem;
  }
}
.property_plan_point ul li::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  margin-block-start: 16px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%224%22%20height%3D%221%22%3E%3Cdefs%3E%3CclipPath%20id%3D%22a%22%3E%3Cpath%20d%3D%22M1104%20486h4v1h-4z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Cg%20clip-path%3D%22url(%23a)%22%20transform%3D%22translate(-1104%20-486)%22%3E%3Cpath%20d%3D%22M1104%20486h1v1h-1z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") repeat-x center left/4px 1px;
}
@media screen and (max-width: 520px) {
  .property_plan_point ul li::after {
    margin-block-start: 8px;
  }
}
.property_plan_layout {
  display: grid;
  place-content: center;
  min-height: 160px;
  color: var(--color-white);
  padding: 32px 10px 37px;
  font-size: 3.2rem;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .property_plan_layout {
    min-height: unset;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 520px) {
  .property_plan_layout {
    padding: 12px 10px 17px;
    font-size: 2.4rem;
  }
}
.property_plan_layout em {
  font-size: 2em;
  line-height: 1;
}
.property_plan_layout small {
  position: relative;
  display: inline-block;
  margin-block-start: 8px;
  transform: translateX(115%);
  font-size: 0.6em;
  text-align: left;
}
.property_plan_area {
  padding: 32px 8px 32px 16px;
  background: var(--color-bg-gray);
  font-size: 1.4rem;
  line-height: 1.75;
}
@media screen and (max-width: 520px) {
  .property_plan_area {
    padding: 16px 0 16px 16px;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }
}
.property_plan_area em {
  font-size: 2em;
  line-height: 1;
}

.property_nav {
  position: sticky;
  bottom: 0;
  left: 0;
  padding: 20px 30px;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 40px;
  z-index: 99;
}
@media screen and (max-width: 520px) {
  .property_nav {
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 20px;
  }
}
.property_nav.nav01 {
  background: #b5b5b5;
  background: linear-gradient(90deg, rgb(181, 181, 181) 0%, rgb(168, 167, 167) 25%);
}
.property_nav.nav02 {
  background: #b5b5b5;
  background: linear-gradient(90deg, rgb(181, 181, 181) 0%, rgb(168, 167, 167) 25%);
}
.property_nav .logo {
  height: 40px;
}
.property_nav .logo img {
  width: auto;
  height: 100%;
}
.property_nav ul {
  display: grid;
  grid-template: auto/repeat(3, 1fr);
  gap: 15px;
  max-width: 991px;
  width: calc(100% - 222px);
}
.property_nav ul.cols2 {
  grid-template: auto/repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .property_nav ul {
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  .property_nav ul {
    gap: 10px;
  }
}
.property_nav li a {
  color: var(--color-white);
  display: block;
  padding: 0.5em 0.25em;
  font-size: 2rem;
  letter-spacing: 0.1em;
  text-align: center;
  transition: opacity 0.4s ease;
}
.property_nav li a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 520px) {
  .property_nav li a {
    display: grid;
    place-content: center;
    height: 100%;
    font-size: 1.6rem;
    line-height: 1.25;
  }
}
.property_nav li.official a {
  background-color: var(--color-main);
}
.property_nav li.request a {
  background-color: var(--color-request);
}
.property_nav li.reserve a {
  background-color: var(--color-reserve);
}

.property_sub_list {
  background-color: #dcdbdd;
  margin: 120px auto;
  padding: 120px 0;
}
.property_sub_list__inner {
  margin: 0 auto;
  max-width: 1400px;
  width: calc(100% - 20px);
}
.property_sub_list .fx {
  display: flex;
  flex-flow: row wrap;
  gap: 64px 24px;
  justify-content: center;
}
.property_sub_list .property_sub_item {
  background: var(--color-white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 24px;
  width: calc((100% - 24px) / 2);
  position: relative;
}
@media screen and (max-width: 768px) {
  .property_sub_list .property_sub_item {
    width: 100%;
  }
}
.property_sub_list .label {
  background: var(--color-main);
  color: var(--color-yellow);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 24px;
  padding: 0 1em;
  position: absolute;
  top: -24px;
  left: 0;
}
.property_sub_list .sub_summary {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.property_sub_list .sub_summary figure {
  width: 48.15%;
}
@media screen and (max-width: 520px) {
  .property_sub_list .sub_summary figure {
    margin-bottom: 16px;
    width: 100%;
  }
}
.property_sub_list .sub_summary .sub_head {
  width: 49.38%;
}
@media screen and (max-width: 520px) {
  .property_sub_list .sub_summary .sub_head {
    width: 100%;
  }
}
.property_sub_list .sub_summary .sub_head h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
@media screen and (max-width: 520px) {
  .property_sub_list .sub_summary .sub_head h2 {
    font-size: 1.5rem;
  }
}
.property_sub_list .sub_summary .sub_head h2 span {
  display: block;
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 8px;
}
@media screen and (max-width: 520px) {
  .property_sub_list .sub_summary .sub_head h2 span {
    font-size: 1.2rem;
  }
}
.property_sub_list .sub_summary .sub_head p {
  border-top: 1px solid #d0d0d0;
  line-height: 1.5em;
  padding-top: 16px;
}
.property_sub_list .sub_cv {
  margin-top: 24px;
}
.property_sub_list .sub_cv ul {
  display: flex;
  flex-flow: row wrap;
  gap: 16px;
}
.property_sub_list .sub_cv li {
  text-align: center;
  width: calc((100% - 32px) / 3);
}
@media screen and (max-width: 980px) {
  .property_sub_list .sub_cv li {
    width: calc((100% - 16px) / 2);
  }
}
@media screen and (max-width: 980px) {
  .property_sub_list .sub_cv li.official {
    width: 100%;
  }
}
.property_sub_list .sub_cv li a {
  color: var(--color-white);
  display: block;
  padding: 0.5em 0.25em;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  transition: opacity 0.4s ease;
}
@media screen and (max-width: 768px) {
  .property_sub_list .sub_cv li a {
    font-size: 1.4rem;
  }
}
.property_sub_list .sub_cv li a:hover {
  opacity: 0.5;
}
.property_sub_list .sub_cv li.official a {
  background-color: var(--color-official);
}
.property_sub_list .sub_cv li.request a {
  background-color: var(--color-request);
}
.property_sub_list .sub_cv li.reserve a {
  background-color: var(--color-reserve);
}

.caption .caption_list {
  max-width: 1400px;
  width: calc(100% - 20px);
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  .caption .caption_list {
    margin: 64px auto;
  }
}
@media screen and (max-width: 520px) {
  .caption .caption_list {
    margin: 48px auto;
  }
}
.caption .caption_list li {
  font-size: 1.4rem;
}

.banner {
  margin: 0 auto 120px;
  max-width: 1140px;
  width: 96%;
}
@media screen and (max-width: 768px) {
  .banner {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 520px) {
  .banner {
    margin-bottom: 64px;
  }
}

.float-banner {
  position: fixed;
  bottom: 96px;
  left: 0;
  z-index: 9;
  transition: opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}
.float-banner.is-visible {
  opacity: 1;
  pointer-events: all;
}
.float-banner .banner-space {
  max-width: 320px;
  position: relative;
}

.float-close {
  background-color: #444;
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  left: 0;
  top: -24px;
  z-index: 800;
  cursor: pointer;
}
.float-close::before, .float-close::after {
  width: 16px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: var(--color-white);
}
.float-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.float-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media only screen and (max-width: 768px) {
  .float-banner {
    bottom: 0;
    right: 28px;
  }
}
@media only screen and (max-width: 520px) {
  .float-banner {
    right: 0;
  }
  .float-banner .banner-space {
    max-width: 240px;
  }
}
.pagetop {
  bottom: 110px;
}
@media only screen and (max-width: 520px) {
  .pagetop {
    bottom: 150px;
  }
}/*# sourceMappingURL=style.css.map */