* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: min(0.5208333333vw, 10px);
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  line-height: 1.5;
  color: #3C3F3A;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3333333333vw;
  }
}

body {
  background: #FCFCFB;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.7;
  }
}

i, em {
  font-style: normal;
}

img, video {
  display: block;
  width: 100%;
}

ul, ol {
  list-style: none;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
.mincho {
  font-family: "Shippori Mincho", serif;
}

.gothic {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.cormorant {
  font-family: "Cormorant Infant", serif;
}

#header {
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  #header {
    background: rgba(118, 138, 97, 0.4);
    backdrop-filter: blur(5rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    inset: 0 auto auto 0;
    width: 100vw;
    height: 12rem;
    padding: 0 3.4rem 0 2.7rem;
  }
}
#header .h_logo {
  position: fixed;
  inset: 5rem auto auto 5rem;
  width: 19.5rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  #header .h_logo {
    position: initial;
    width: 17rem;
  }
}
#header .h_menu {
  position: fixed;
  inset: 6rem 6rem auto auto;
  width: 8rem;
  z-index: 10;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #header .h_menu {
    position: initial;
    margin-top: 1.5rem;
  }
}
#header .h_menu::after {
  content: "MENU";
  color: #fff;
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
#header .h_menu .line {
  position: relative;
  width: 100%;
  height: 2.8rem;
}
#header .h_menu .line span, #header .h_menu .line::before, #header .h_menu .line::after {
  background: #fff;
  position: absolute;
  height: 1px;
  width: 100%;
  transition: inset 0.3s ease, translate 0.3s ease, rotate 0.3s ease;
}
#header .h_menu .line span {
  inset: 50% auto auto 0;
  translate: 0 -50%;
}
#header .h_menu .line::before {
  content: "";
  inset: 0 auto auto 0;
}
#header .h_menu .line::after {
  content: "";
  inset: auto 0 0 auto;
  width: 3rem;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#header #toggle_menu {
  background: rgba(118, 138, 97, 0.4);
  backdrop-filter: blur(30rem);
  position: fixed;
  inset: 0 auto auto 0;
  translate: 0 -105%;
  transition: translate 0.3s ease;
  width: 100vw;
  padding: 18rem 0;
}
@media screen and (max-width: 767px) {
  #header #toggle_menu {
    padding: 18rem 3rem;
  }
}
#header #toggle_menu .h_links {
  width: 138rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  #header #toggle_menu .h_links {
    width: 100%;
  }
}
#header #toggle_menu .h_links ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5rem 6rem;
}
@media screen and (max-width: 767px) {
  #header #toggle_menu .h_links ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem 3rem;
  }
}
#header #toggle_menu .h_links ul li a {
  color: #fff;
  display: block;
  padding-bottom: 0.5rem;
  font-size: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
#header #toggle_menu .h_links ul li a span {
  display: block;
  font-size: 1.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.1em;
}
#header #toggle_menu .h_links ul li.other {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#header #toggle_menu .h_links ul li.other a {
  position: relative;
  padding-left: 5rem;
  font-size: 2rem;
  font-weight: 400;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  #header #toggle_menu .h_links ul li.other a {
    font-size: 2.4rem;
  }
}
#header #toggle_menu .h_links ul li.other a::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  translate: 0 -50%;
  width: 4rem;
}
#header #toggle_menu .h_links ul li.other a.map::before {
  background: url(../img/ico_map.svg) no-repeat center/cover;
  height: 4rem;
}
#header #toggle_menu .h_links ul li.other a.outline::before {
  background: url(../img/ico_outline.svg) no-repeat center/cover;
  height: 3rem;
}
#header.menu_open .h_menu .line span, #header.menu_open .h_menu .line::before {
  inset: 50% auto auto 50%;
  translate: -50% -50%;
}
#header.menu_open .h_menu .line span {
  rotate: 20deg;
}
#header.menu_open .h_menu .line::before {
  rotate: -20deg;
}
#header.menu_open .h_menu .line::after {
  opacity: 0;
  visibility: hidden;
}
#header.menu_open #toggle_menu {
  background: rgba(118, 138, 97, 0.9);
  translate: 0 0;
}

#footer .f_note {
  background: #fff;
  padding: 12rem 6rem;
  font-size: 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
}
#footer .f_info {
  background: url(../img/f_bg.jpg) no-repeat center/cover;
  padding: 12rem 6rem;
}
@media screen and (max-width: 767px) {
  #footer .f_info {
    padding: 12rem 6rem 18rem;
  }
}
#footer .f_info .box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(9rem);
  padding: 8rem;
  border-radius: 1.6rem;
}
#footer .f_info .f_contact {
  color: #fff;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#footer .f_info .f_contact .name {
  padding-bottom: 1rem;
  font-size: 3.6rem;
}
#footer .f_info .f_contact .name span {
  display: block;
  padding-bottom: 1rem;
  font-size: 2.2rem;
}
#footer .f_info .f_contact .tel {
  padding-bottom: 2rem;
}
#footer .f_info .f_contact .tel a {
  display: block;
  font-size: 7.7rem;
}
#footer .f_info .f_contact .cap {
  font-size: 2rem;
}
#footer .f_info .f_seller {
  color: #fff;
}
#footer .f_info .f_seller ul li + li {
  margin-top: 3rem;
}
#footer .f_info .f_seller ul span {
  display: block;
  padding-bottom: 1.4rem;
  font-size: 1.6rem;
  line-height: 1;
  text-indent: -0.5em;
}
#footer .f_info .f_seller ul img.logo01 {
  width: 22.7rem;
}
#footer .f_info .f_seller ul img.logo02 {
  width: 42.4rem;
}
#footer .f_info .f_seller ul img.logo03 {
  width: 31.2rem;
}
#footer .f_btm {
  position: fixed;
  inset: auto auto 0 0;
  width: 100vw;
}
@media screen and (min-width: 768px) {
  #footer .f_btm {
    display: none;
  }
}
#footer .f_btm ul {
  display: flex;
}
#footer .f_btm ul li {
  flex: 1;
}
#footer .f_btm ul li:has(> a.reserve) {
  flex: 3;
}
#footer .f_btm ul a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  height: 12rem;
  font-size: 1.8rem;
  line-height: 1;
}
#footer .f_btm ul a::before {
  content: "";
  display: block;
  height: 5rem;
  aspect-ratio: 1/1;
}
#footer .f_btm ul a.tel {
  background: #fff;
}
#footer .f_btm ul a.tel::before {
  background: url(../img/ico-tel.svg) no-repeat center/cover;
  aspect-ratio: 0.66/1;
}
#footer .f_btm ul a.entry {
  background: #5A812B;
  color: #fff;
}
#footer .f_btm ul a.entry::before {
  background: url(../img/ico-entry.svg) no-repeat center/cover;
}
#footer .f_btm ul a.reserve {
  background: #C06B69;
  color: #fff;
}
#footer .f_btm ul a.reserve::before {
  background: url(../img/ico-reserve.svg) no-repeat center/cover;
}

.c_btn a {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 600;
  height: 13rem;
  background: #897D69 url(../img/ico-arrow-r.svg) no-repeat calc(100% - 5.2rem) center/1.5rem;
  border-radius: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 15%;
  box-shadow: 0 0.8rem 0 0 #71634E;
  gap: 0.4em;
}
.c_btn a i {
  font-size: 4.8rem;
  letter-spacing: 0;
}
.c_btn a.s {
  font-size: 2.6rem;
}
.c_btn a.s i {
  font-size: 4rem;
}

.top_bg {
  position: fixed;
  inset: 0;
}
@media screen and (max-width: 767px) {
  .top_bg {
    display: none;
  }
}
.top_bg .bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.8s;
  background: url(../img/top-bg.jpg) no-repeat center/cover;
}
.top_bg .bg.active {
  opacity: 1;
}
.top_bg .bg:before {
  content: "";
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
}
.top_bg h2 {
  position: absolute;
  inset: auto auto 0 0;
  font-size: 18rem;
  font-family: "Cormorant Infant", serif;
  line-height: 0.7;
  color: #fff;
  mix-blend-mode: overlay;
  opacity: 0.5;
}
.top_bg .box {
  position: relative;
  z-index: 1;
  width: 69rem;
  left: 14rem;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
.top_bg .reserve, .top_bg .doc {
  margin-bottom: 5rem;
}
.top_bg .replay {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: block;
  position: relative;
  margin-left: auto;
  padding: 1.5rem 0;
  width: 20rem;
  font-size: 2.6rem;
  font-family: "Cormorant Infant", serif;
  line-height: 1;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
}
.top_bg .replay::before {
  content: "";
  background: url(../img/ico_replay.svg) no-repeat center/cover;
  display: inline-block;
  width: 2.2rem;
  aspect-ratio: 22/26;
  margin-right: 2rem;
}
.top_bg .bg2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(102.85deg, rgba(255, 255, 255, 0.16) 6.39%, rgba(255, 255, 255, 0.4) 65.43%, rgba(255, 255, 255, 0.16) 124.47%);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15), inset 0px 0px 50px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border-radius: 1rem;
  padding: 5rem;
}
.top_bg .doc {
  padding: 3rem 5rem;
}
.top_bg .desc {
  width: 32rem;
}
.top_bg ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  width: 22.5rem;
}
.top_bg li {
  width: calc(50% - 0.5rem);
}
.top_bg li:nth-child(1) {
  width: 100%;
}
.top_bg p {
  font-size: 3.1rem;
  letter-spacing: 16%;
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
}
.top_bg figure {
  width: 25.5rem;
  position: relative;
}
.top_bg figure img {
  position: absolute;
  top: -11rem;
  left: -2.5rem;
  max-width: 25.5rem;
}
.top_bg .btn a {
  box-shadow: 0 0.6rem 0 0 rgba(58, 61, 55, 0.4);
  font-size: 2.4rem;
  color: #768A61;
  height: 7rem;
  background: #FFF8C1 url(../img/ico-arrow-r3.svg) no-repeat calc(100% - 3rem) center/0.7rem;
  border-radius: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 15%;
  box-shadow: 0 0.8rem 0 0 #71634E;
  gap: 0.4em;
}
.top_bg .btn a.b {
  background-color: #EEF4EC;
}

.bg_top:before {
  background: #768A61;
}

.bg_residence:before {
  background: #9d8c70;
}

.bg_book:before {
  background: #877b67;
}

.bg_park:before {
  background: #a4b98e;
}

.bg_plan:before {
  background: #889f7e;
}

.bg_location:before {
  background: #d8b6bc;
}

.bg_access:before {
  background: #ae9977;
}

.bg_footer:before {
  background: #768A61;
}

.top_sec {
  background: #fff;
  position: relative;
  width: 75rem;
  margin: 0 20rem 0 auto;
}
@media screen and (max-width: 767px) {
  .top_sec {
    width: 100%;
    margin: auto;
  }
}
.top_sec .info {
  background: #fdf2ec;
  padding: 8rem 4rem;
}
.top_sec .info .ttl {
  color: #758860;
  padding-bottom: 2rem;
  font-size: 8rem;
  text-align: center;
}
.top_sec .info .block + .block {
  margin-top: 2rem;
}
.top_sec .info .cap {
  padding-top: 2rem;
  font-size: 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.mv_btn {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 10;
}
.mv_btn button {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  position: relative;
  padding: 1.5rem 0;
  width: 20rem;
  font-size: 2.6rem;
  font-family: "Cormorant Infant", serif;
  line-height: 1;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
}
.mv_btn .replay {
  display: none;
}
.mv_btn .replay::before {
  content: "";
  background: url(../img/ico_replay.svg) no-repeat center/cover;
  display: inline-block;
  width: 2.2rem;
  aspect-ratio: 22/26;
  margin-right: 2rem;
}
.mv_btn .skip::before {
  content: "";
  background: url(../img/ico_skip.svg) no-repeat center/cover;
  display: inline-block;
  width: 2rem;
  aspect-ratio: 20/19;
  margin-right: 2rem;
}

body:not(.loaded):has(.mv) .f_btm, body:not(.loaded):has(.mv) .mv .start {
  display: none;
}

.mv-pc {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
}
.mv-pc video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_top {
  position: relative;
}
.top_top .start {
  position: absolute;
  left: 1.2rem;
  top: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url(../img/mv-start-bg.png) no-repeat center/contain;
  width: 29.55rem;
  height: 27.8rem;
}
@media screen and (max-width: 767px) {
  .top_top .start {
    top: 13.4rem;
  }
}
.top_top .start p {
  font-size: 2.5651rem;
  line-height: 1;
}
.top_top .start i {
  color: #768A61;
  font-size: 5.597rem;
}
.top_top .start em {
  font-size: 3.5rem;
  letter-spacing: -0.03em;
  margin-top: 0.4em;
}
.top_top .start small {
  display: block;
  font-size: 2rem;
  letter-spacing: -0.03em;
  margin-top: 0.6em;
}
.top_top .mv {
  position: relative;
}
.top_top .mv img, .top_top .mv video {
  display: block;
  height: calc(100vh - 12rem);
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .top_top .mv figure {
    display: none;
  }
}
.top_top .box {
  background: url(../img/top-lead-bg.png) no-repeat top center/cover;
  padding-bottom: 6.5rem;
}
.top_top .lead {
  text-align: center;
  font-size: 3rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #768A61;
  margin-top: 4rem;
}
.top_top .area {
  border-radius: 0 5rem 0 0;
  background: #F4F5EF;
  padding: 8rem 0 7rem;
}
.top_top .total {
  letter-spacing: 15%;
  font-size: 5.2rem;
  position: relative;
  margin: 0 6rem;
  font-weight: 500;
  white-space: nowrap;
}
.top_top .total:before, .top_top .total:after {
  content: "";
  position: absolute;
  height: 2px;
  background: rgba(60, 63, 58, 0.3);
  right: 0;
}
.top_top .total:before {
  top: 1.5rem;
  width: calc(100% - 23rem);
}
.top_top .total:after {
  width: 100%;
  bottom: 0;
}
.top_top .total small {
  font-size: 4.2rem;
  letter-spacing: 0.05em;
}
.top_top .total em {
  display: block;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 11%;
}
.top_top .total i {
  font-size: 12rem;
  letter-spacing: 0;
  color: #81922E;
  margin: 0 0.1em;
  letter-spacing: 0;
}
.top_top .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 4rem 4rem 0;
  text-align: center;
}
.top_top .list dl {
  padding: 0 3rem;
}
.top_top .list dl + dl {
  border-left: solid 1px rgba(60, 63, 58, 0.3);
}
.top_top .list dt {
  font-size: 3rem;
  letter-spacing: 11%;
}
.top_top .list dt i {
  display: block;
  font-size: 2.2rem;
  color: #fff;
  border-radius: 2px;
  background: #C36C6C;
}
.top_top .list dt i.b {
  background: #5B842C;
}
.top_top .list dt em {
  font-size: 4rem;
  display: inline-flex;
  align-items: center;
  margin-right: 0.3em;
}
.top_top .list dt em:before, .top_top .list dt em:after {
  content: "";
  background: url(../img/kakko-left.svg) no-repeat center top/contain;
  width: 0.9rem;
  height: 1em;
}
.top_top .list dt em:after {
  background-image: url(../img/kakko-right.svg);
  background-position: center bottom;
}
.top_top .list dd {
  font-size: 3.2rem;
  white-space: nowrap;
}
.top_top .list dd small {
  font-size: 2.4rem;
  vertical-align: 1.9em;
}
.top_top .list dd i {
  color: #81922E;
  font-size: 11.6rem;
  line-height: 1;
  letter-spacing: -0.1em;
  margin-right: 0.1em;
}
.top_top .price {
  margin: 0 4rem 5rem;
  border: solid 2px rgba(60, 63, 58, 0.5);
  padding: 2rem 3.5rem;
  white-space: nowrap;
}
.top_top .all {
  font-size: 4rem;
  letter-spacing: 11%;
  border-bottom: dashed 2px rgba(60, 63, 58, 0.5);
  padding-bottom: 0.3em;
  margin-bottom: 0.4em;
}
.top_top .all em {
  font-size: 3rem;
  background: #3C3F3A;
  color: #fff;
  padding: 0 0.6em;
  vertical-align: 0.8em;
  margin-right: 0.8em;
}
.top_top .all i {
  color: #81922E;
  line-height: 1;
  font-size: 10.5rem;
}
.top_top .manth {
  font-size: 3rem;
}
.top_top .manth em {
  font-size: 2.4rem;
  background: rgba(60, 63, 58, 0.8);
  color: #fff;
  letter-spacing: 11%;
  padding: 0 0.8em;
  vertical-align: 0.7em;
  margin-right: 0.8em;
}
.top_top .manth i {
  color: #81922E;
  line-height: 1;
  font-size: 9rem;
}
.top_top .manth small {
  position: relative;
  margin-left: 1.2em;
  padding-left: 0.6em;
}
.top_top .manth small:before {
  content: "";
  position: absolute;
  border-left: solid 2px rgba(60, 63, 58, 0.3);
  height: 5.7rem;
  bottom: 0;
  left: 0;
}
.top_top .reserve {
  border-radius: 5rem 0 0 0;
  background: #768A61 url(../img/reserve-bg.png) no-repeat center top/100%;
  color: #fff;
  text-align: center;
  padding: 9rem 6rem 8rem;
}
.top_top .reserve img {
  border-radius: 0.4rem;
}
.top_top .reserve .ttl2 {
  font-size: 6.2rem;
  font-weight: 500;
  letter-spacing: 15%;
  margin-bottom: 0.3em;
}
.top_top .reserve .sub {
  margin-bottom: 4rem;
  font-size: 3.8rem;
  letter-spacing: 10%;
}
.top_top .reserve .sub small {
  display: block;
  font-size: 3.2rem;
}
.top_top .reserve figure {
  margin: 6.5rem 2rem 6rem;
}
.top_top .c_btn a {
  color: #768A61;
  background-color: #FFF8C1;
  background-image: url(../img/ico-arrow-r2.svg);
  box-shadow: 0 0.8rem 0 0 #637451;
  font-size: 3.8rem;
}

.top_residence {
  padding: 5rem 6rem 15rem;
  background: url(../img/top-residence-bg.jpg) no-repeat center top/100%;
}
.top_residence .ttl2 {
  font-weight: 500;
  font-size: 5.5rem;
  letter-spacing: 11%;
}
.top_residence .ttl2 small {
  display: block;
  text-decoration: underline;
  text-underline-offset: 0.32em;
  text-decoration-thickness: 1px;
  font-size: 4.8rem;
  margin-bottom: 1em;
}
.top_residence .ttl2 img {
  width: 20.1rem;
  display: inline-block;
}
.top_residence .ttl2 i {
  font-size: 4.4rem;
}
.top_residence .ttl2 em {
  display: block;
  font-size: 6.3rem;
  letter-spacing: 15%;
}
.top_residence ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 4rem 0 5rem;
  text-align: center;
}
.top_residence li + li {
  border-left: solid 1px rgba(60, 63, 58, 0.3);
}
.top_residence li p {
  font-size: 2rem;
  letter-spacing: 5%;
  margin-top: 1.2em;
  line-height: 1.4;
}
.top_residence li img {
  width: 11rem;
  margin: 0 auto;
  display: block;
}

.c_lead {
  font-size: 2.4rem;
  text-align: center;
  border: solid 1px #3C3F3A;
  padding: 0.58em 0;
  line-height: 1.8;
  letter-spacing: 11%;
  margin: 3rem 0 6rem;
}

.top_book {
  border-radius: 4rem 0 0 0;
  overflow: hidden;
  position: relative;
  margin-top: -4rem;
}
.top_book .bg {
  background: #FCFCFB url(../img/top-book-bg.png) no-repeat center top/100%;
  padding: 5rem 6rem 14rem;
}
.top_book .ttl2 {
  font-size: 3.4rem;
  letter-spacing: 10%;
  font-weight: 500;
  line-height: 170%;
}
.top_book .sub {
  font-size: 9rem;
  color: #A18254;
  white-space: nowrap;
}
.top_book ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 4rem 0 5rem;
  gap: 6rem 5rem;
  text-align: center;
}
.top_book li p {
  font-size: 2.2rem;
  line-height: 160%;
  margin-top: 0.6em;
}

.top_park {
  border-radius: 0 4rem 0 0;
  overflow: hidden;
  position: relative;
  margin-top: -4rem;
}
.top_park .info {
  padding-bottom: 12rem;
}
.top_park .head {
  position: relative;
}
.top_park .ttl2 {
  position: absolute;
  width: 100%;
  top: 8.5rem;
  text-align: center;
  font-size: 7.5rem;
  letter-spacing: 10%;
  font-weight: 500;
}
.top_park .ttl2 small {
  font-size: 3.6rem;
  display: block;
}
.top_park .ttl2 em {
  color: #948665;
}
.top_park .box {
  margin-top: -4rem;
  position: relative;
}
.top_park .txt {
  position: absolute;
  left: 6rem;
  top: 7rem;
}
.top_park .txt1 {
  background: #61764D;
  font-size: 2rem;
  color: #fff;
  padding: 0.5em 1em;
  letter-spacing: 5%;
}
.top_park .txt2 {
  margin-left: -4rem;
}
.top_park .txt2 img {
  width: 34.8rem;
}
.top_park .txt3 {
  background: rgba(255, 255, 255, 0.8);
  font-size: 2rem;
  line-height: 1.6;
  border-radius: 1rem;
  letter-spacing: 10%;
  padding: 2rem 3.6rem;
  padding-right: 1.3rem;
  display: inline-block;
}
.top_park .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 4rem 0 5rem;
  background: url(../img/top-park-line.svg) no-repeat 50%/contain;
  height: 45.6rem;
  gap: 6rem 0;
}
.top_park dt {
  font-size: 3.8rem;
  letter-spacing: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #768A61;
  gap: 0.5em;
  margin-bottom: 3rem;
}
.top_park dt img {
  width: 9rem;
}
.top_park dd {
  text-align: center;
  font-size: 2rem;
  line-height: 1.4;
  margin-top: 0.6em;
  letter-spacing: 5%;
}
.top_park .inner {
  padding: 5rem 6rem 8rem;
}
.top_park .c_btn a {
  background-color: #91B26F;
  box-shadow: 0 0.8rem 0 0 #71924F;
}

.top_plan {
  border-radius: 0 4rem 0 0;
  overflow: hidden;
  position: relative;
  margin-top: -4rem;
}
.top_plan .ttl2 {
  font-size: 4.2rem;
  font-weight: 500;
  letter-spacing: 5%;
}
.top_plan .ttl2 i {
  font-size: 9rem;
  color: #768A61;
  line-height: 1.2;
}
.top_plan .box {
  padding: 4rem 6rem 12rem;
  position: relative;
}
.top_plan .box:before {
  content: "";
  background: url(../img/top-plan-img02.png) no-repeat center/contain;
  position: absolute;
  width: 20.8rem;
  height: 24.65rem;
  right: 0;
  top: -8rem;
}
.top_plan dt {
  text-align: center;
  color: #fff;
  font-size: 3rem;
  letter-spacing: 5%;
  background: #768A61;
}
.top_plan dd {
  background: #465042;
  color: #fff;
  display: flex;
  justify-content: center;
  font-size: 2.2rem;
  letter-spacing: 5%;
  padding: 1rem 0;
  white-space: nowrap;
  align-items: center;
}
.top_plan dd p {
  padding: 0 2rem;
  text-align: center;
}
.top_plan dd p + p {
  position: relative;
}
.top_plan dd p + p:before {
  content: "";
  position: absolute;
  border-left: solid 1px rgba(255, 255, 255, 0.3);
  height: 6rem;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
.top_plan dd i {
  color: #E6D1A3;
  font-size: 6rem;
  line-height: 1;
  letter-spacing: 0;
}
.top_plan dd small {
  display: block;
  line-height: 1.2;
}
.top_plan .note {
  font-size: 2rem;
  letter-spacing: 8%;
  margin-top: 3rem;
  line-height: 1.8;
}
.top_plan .row {
  display: flex;
  justify-content: space-between;
  margin: 6rem 0 5rem;
  align-items: center;
}
.top_plan .row figure {
  width: 32.7rem;
}
.top_plan .row .desc {
  width: 29rem;
}
.top_plan .row .name {
  font-size: 3.1rem;
  letter-spacing: 15%;
}
.top_plan .row .name em {
  font-size: 5rem;
  line-height: 1;
}
.top_plan .row .type {
  font-size: 4.7rem;
  color: #A08831;
  margin: 4rem 0 1rem;
}
.top_plan .row .type i {
  font-size: 6.2rem;
}
.top_plan .row .court {
  background: #A08831;
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 5%;
  text-align: center;
  padding: 0.2em 0;
  margin-bottom: 0.5em;
}
.top_plan .txt1 {
  font-size: 7.5rem;
  letter-spacing: 5%;
  line-height: 1;
}
.top_plan .txt1 i {
  font-size: 10rem;
  line-height: 1;
}
.top_plan .txt2 {
  font-size: 5rem;
  letter-spacing: 5%;
  text-align: right;
  line-height: 1;
}
.top_plan .txt2 i {
  font-size: 7rem;
  line-height: 1;
}
.top_plan .txt3 {
  font-size: 2.2rem;
  letter-spacing: 15%;
  margin-left: 2rem;
  margin-top: 1rem;
}
.top_plan .txt4 {
  font-size: 6rem;
  letter-spacing: 5%;
  line-height: 1;
  margin-left: 2rem;
}
.top_plan .txt4 em {
  font-size: 8rem;
  line-height: 1;
}
.top_plan .txt4 i {
  font-size: 0.4em;
  vertical-align: 0.8em;
}
.top_plan .c_btn a {
  background-color: #768A61;
  box-shadow: 0 0.8rem 0 0 #596948;
}

.top_location {
  border-radius: 0 4rem 0 0;
  overflow: hidden;
  position: relative;
  margin-top: -2rem;
}
.top_location .mv {
  position: relative;
}
.top_location .mv .txt {
  position: absolute;
  inset: 6rem auto auto 6rem;
  font-size: 6.2rem;
  text-shadow: 0 0 5rem #fff, 0 0 5rem #fff, 0 0 5rem #fff;
}
.top_location .mv .txt img {
  width: 23.7rem;
  margin-bottom: 4rem;
}
.top_location .mv .txt strong {
  color: #CD7486;
  font-size: 7.2rem;
}
.top_location .mv .txt em {
  font-size: 6.7rem;
}
.top_location .box {
  padding: 4rem 6rem 16rem;
  position: relative;
}
.top_location .box:before {
  content: "";
  background: url(../img/top-location-img02.png) no-repeat center/contain;
  position: absolute;
  width: 21.6rem;
  height: 38.4rem;
  right: 0;
  top: -18rem;
}
.top_location dl {
  margin-bottom: 3rem;
}
.top_location dt {
  display: flex;
  align-items: flex-end;
  margin-bottom: 2rem;
  gap: 3rem;
  font-size: 3.4rem;
  white-space: nowrap;
  letter-spacing: 11%;
}
.top_location dt span {
  padding-bottom: 1rem;
}
.top_location dt i {
  font-size: 10rem;
  color: #81922E;
  line-height: 1;
  letter-spacing: -0.03em;
}
.top_location dt i.b {
  color: #E1A1A5;
}
.top_location dt i.c {
  color: #93C3C6;
}
.top_location dt small {
  font-size: 2.8rem;
}
.top_location dt small.s {
  font-size: 2.5rem;
}
.top_location dt img {
  width: 9rem;
}
.top_location dd {
  background: #FBF0F1;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 5%;
  padding: 0.8em 0;
}
.top_location .c_btn {
  margin-top: 8rem;
}
.top_location .c_btn a {
  background-color: #CD7486;
  box-shadow: 0 0.8rem 0 0 #B45366;
}

.top_access {
  border-radius: 4rem 0 0 0;
  overflow: hidden;
  position: relative;
  margin-top: -4rem;
}
.top_access .box {
  padding: 5rem 6rem 12rem;
  position: relative;
}
.top_access .mv {
  position: relative;
}
.top_access .txt {
  position: absolute;
  left: 6rem;
  top: 6rem;
}
.top_access .txt1 {
  font-size: 3.3rem;
  margin-bottom: 3rem;
  letter-spacing: 15%;
}
.top_access .txt2 {
  font-size: 3.8rem;
  letter-spacing: 5%;
}
.top_access .txt2 em {
  color: #D9A34A;
  font-size: 4.8rem;
  letter-spacing: 10%;
}
.top_access .txt3 {
  background: rgba(255, 255, 255, 0.8);
  font-size: 2rem;
  line-height: 1.6;
  border-radius: 1rem;
  letter-spacing: 10%;
  padding: 2rem 3.6rem;
  margin-top: 3rem;
  display: inline-block;
  text-align: center;
}
.top_access dl {
  margin-bottom: 3rem;
}
.top_access dl + dl {
  border-top: dashed 2px rgba(60, 63, 58, 0.5);
  padding-top: 4rem;
  margin-top: 6rem;
}
.top_access dt {
  display: flex;
  margin-bottom: 5rem;
  gap: 4rem;
  font-size: 3.4rem;
  white-space: nowrap;
  letter-spacing: 11%;
}
.top_access dt span {
  position: relative;
  margin-top: -1rem;
}
.top_access dt img {
  width: 22rem;
}
.top_access dt b {
  font-size: 2.2rem;
  min-width: 10rem;
  display: inline-block;
  text-align: center;
  color: #fff;
  padding: 0.1em 0.6em;
  border-radius: 2px;
  font-weight: 500;
  background: #C36C6C;
  position: absolute;
  top: 2em;
}
.top_access dt b.b {
  background: #5B842C;
}
.top_access dt em {
  font-size: 4.5rem;
  display: inline-flex;
  align-items: center;
  margin-right: 0.3em;
}
.top_access dt em:before, .top_access dt em:after {
  content: "";
  background: url(../img/kakko-left.svg) no-repeat center top/contain;
  width: 0.9rem;
  height: 1em;
}
.top_access dt em:after {
  background-image: url(../img/kakko-right.svg);
  background-position: center bottom;
}
.top_access dt i {
  font-size: 11.6rem;
  letter-spacing: -0.05em;
  color: #81922E;
  line-height: 1;
}
.top_access dt u {
  text-decoration: none;
  opacity: 0.7;
  font-size: 3.4rem;
  margin-left: 0.6em;
}
.top_access dd {
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: 10%;
}
.top_access .c_btn {
  margin-top: 8rem;
}
.top_access .c_btn a {
  background-color: #C39F66;
  box-shadow: 0 0.8rem 0 0 #A58046;
}

/*# sourceMappingURL=style.css.map */
