@keyframes pinchKeyframe {
  from {
    transform: scale(0.9, 0.9);
  }
  to {
    transform: scale(1, 1);
  }
}
.main .pageHeader {
  margin: 0.6rem 0 0;
}
@media screen and (max-width: 750px) {
  .main .pageHeader {
    margin: 0.4rem 0 0;
  }
}
.main .pageHeader .wrap {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 5.5rem 1fr 0.87rem;
  gap: 0 0.69rem;
}
@media screen and (max-width: 750px) {
  .main .pageHeader .wrap {
    display: block;
  }
}
.main .pageHeader .image {
  grid-row: 1/3;
  grid-column: 1/2;
  margin: 0 0 0 -1rem;
}
@media screen and (max-width: 750px) {
  .main .pageHeader .image {
    margin: 0 -0.2rem;
  }
}
.main .pageHeader .image figcaption {
  text-align: right;
}
@media screen and (max-width: 750px) {
  .main .pageHeader .image figcaption {
    padding-right: 0.2rem;
  }
}
.main .pageHeader .ttl {
  display: contents;
}
@media screen and (max-width: 750px) {
  .main .pageHeader .ttl {
    display: block;
    margin: 0.4rem 0 0;
  }
}
.main .pageHeader .ttl .en {
  grid-row: 1/3;
  grid-column: 3/4;
  border-left: 0.02rem solid currentColor;
  writing-mode: vertical-rl;
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-size: 0.48rem;
  font-weight: 700;
  line-height: 0.72rem;
}
@media screen and (max-width: 750px) {
  .main .pageHeader .ttl .en {
    writing-mode: horizontal-tb;
    border-left: none;
    font-size: 0.32rem;
    line-height: 1;
  }
}
.main .pageHeader .ttl .ja {
  grid-row: 3/4;
  grid-column: 1/4;
  display: flex;
  gap: 0.1rem;
  padding: 0.07rem 0 0;
  font-size: 0.2rem;
  font-weight: 700;
  line-height: 1.1;
}
@media screen and (max-width: 750px) {
  .main .pageHeader .ttl .ja {
    display: block;
    padding: 0.05rem 0 0;
    font-size: 0.16rem;
    line-height: 1;
  }
}
.main .pageHeader .ttl .ja::after {
  flex-grow: 1;
  align-self: flex-end;
  content: "";
  display: block;
  height: 0.02rem;
  margin: 0 0 0.03rem;
  background: currentColor;
}
@media screen and (max-width: 750px) {
  .main .pageHeader .ttl .ja::after {
    content: none;
  }
}
.main .pageHeader .catch {
  grid-row: 1/2;
  grid-column: 2/3;
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 0.95rem;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .main .pageHeader .catch {
    margin: 0.4rem 0 0;
    font-size: 0.24rem;
    line-height: 1.5;
  }
}
.main .pageHeader p {
  grid-row: 2/3;
  grid-column: 2/3;
  padding: 0.5rem 0 0;
  font-size: 0.18rem;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .main .pageHeader p {
    padding: 0.3rem 0 0;
    font-size: 0.16rem;
  }
}

section {
  padding-top: 2rem;
}
@media screen and (max-width: 750px) {
  section {
    padding-top: 0.6rem;
  }
}
section h2.ttl {
  padding-bottom: 0.6rem;
  font-size: 0.5rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  section h2.ttl {
    padding-bottom: 0.4rem;
    font-size: 0.24rem;
  }
}
section h2.ttl .en {
  font-family: "helvetica-neue-lt-pro", sans-serif;
}
section h2.ttl .small {
  display: block;
  padding-top: 0.05rem;
  font-size: 0.12rem;
  line-height: 0.19rem;
}
@media screen and (max-width: 750px) {
  section h2.ttl .small {
    font-size: 0.1rem;
    line-height: 1;
  }
}
section .catch {
  padding-bottom: 0.4rem;
  font-size: 0.3rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  section .catch {
    padding-bottom: 0.3rem;
    font-size: 0.24rem;
  }
}
section .catch + p {
  font-size: 0.16rem;
  font-weight: 500;
  line-height: 1.8;
}
section figure figcaption {
  padding-top: 0.05rem;
  font-size: 0.12rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: right;
}

.scroll_wrap {
  position: relative;
}
.scroll_wrap .content {
  width: 100%;
  left: 0;
  bottom: 0;
}
.scroll_wrap.scrolling .content {
  position: fixed;
}
.scroll_wrap.abs .content {
  position: absolute;
}

.park_mv figcaption {
  padding-right: 0.1rem;
}

@media screen and (min-width: 751px) {
  section.park {
    padding-top: 1rem;
  }
}
section.park .ico {
  width: 0.3rem;
  margin: 0 0.2rem 0.1rem auto;
  animation: swipe 2s infinite;
}
@media screen and (min-width: 751px) {
  section.park .ico {
    display: none;
  }
}
@keyframes swipe {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(0);
  }
  90% {
    opacity: 0.9;
  }
  100% {
    transform: translateX(-150%);
    opacity: 0;
  }
}
section.park .mv {
  position: relative;
  width: 100vw;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 750px) {
  section.park .mv {
    margin-bottom: 0.6rem;
  }
}
section.park .mv .prot .scroll {
  height: calc(100vh - 1.2rem);
  overflow: hidden;
  text-align: center;
}
@media screen and (max-width: 750px) {
  section.park .mv .prot .scroll {
    height: auto;
    overflow: scroll;
  }
}
section.park .mv .prot .fig {
  position: relative;
  display: inline-block;
}
section.park .mv .prot img {
  height: calc(100vh - 1rem);
  max-width: initial;
  width: auto;
  display: block;
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  section.park .mv .prot img {
    width: 200%;
    height: auto;
  }
}
section.park .mv .prot figcaption {
  padding-right: 0.1rem;
}
section.park .mv .scroll_icon {
  width: 0.3rem;
  margin: -0.1rem auto auto 0.2rem;
}
section.park .mv a {
  display: block;
  position: absolute;
  height: 3.6%;
}
section.park .mv a:before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  width: 100%;
  height: 63%;
  border-radius: 3em;
  background-image: radial-gradient(rgba(255, 255, 255, 0), #fff);
  animation: zoomFadeOut 1s infinite linear;
}
section.park .mv a[href=parking] {
  inset: 6.85% auto auto 39%;
  width: 7%;
}
section.park .mv a[href=disaster] {
  inset: 17.3% auto auto 23%;
  width: 6.6%;
}
section.park .mv a[href=tebra] {
  inset: 45.8% auto auto 30.9%;
  width: 9%;
}
section.park .mv a[href=tuktuk] {
  inset: 46.4% auto auto 11.6%;
  width: 12.3%;
}
section.park .mv a[href=pedestrian] {
  inset: 27.8% auto auto 4.9%;
  width: 6.4%;
}
section.park .mv a[href=kitchencar] {
  inset: 3.6% auto auto 10.8%;
  width: 7.5%;
}
section.park .mv a[href=art] {
  inset: 41.1% auto auto 12.7%;
  width: 10%;
}
section.park .mv a[href=lifeevent] {
  inset: 80.8% auto auto 82.9%;
  width: 10.1%;
}
section.park .mv a[href=mail] {
  inset: 11.9% auto auto 31.6%;
  width: 9.8%;
}
section.park .mv a[href=ribrise] {
  inset: 22% auto auto 23.8%;
  width: 12.3%;
}
section.park .mv a[href=flower] {
  inset: 55.6% auto auto 10.9%;
  width: 4.8%;
}
section.park .mv a[href=library] {
  inset: 70.6% auto auto 41.8%;
  width: 8.8%;
}
section.park .mv a[href=artmuseum] {
  inset: 17.2% auto auto 34%;
  width: 9.9%;
}
section.park .mv a[href=wifi] {
  inset: 35.9% auto auto 31.5%;
  width: 10.1%;
}
section.park .mv a[href=book] {
  inset: 52.2% auto auto 46.8%;
  width: 8.7%;
}
section.park .mv a[href=deai] {
  inset: 69.2% auto auto 16.2%;
  width: 6.3%;
}
section.park .mv a[href=deai]:before {
  background-image: radial-gradient(rgba(67, 130, 171, 0), #4382ab);
}
@media screen and (max-width: 750px) {
  section.park .mv a[href=deai] {
    inset: 69.2% auto auto 32.4%;
    width: 12.3%;
  }
}
section.park .mv a[href=manabi] {
  inset: 72.7% auto auto 31.4%;
  width: 6.4%;
}
section.park .mv a[href=manabi]:before {
  background-image: radial-gradient(rgba(205, 122, 52, 0), #cd7a34);
}
@media screen and (max-width: 750px) {
  section.park .mv a[href=manabi] {
    inset: 72.7% auto auto 62.8%;
    width: 12.8%;
  }
}
section.park .mv a[href=ikoi] {
  inset: 58.7% auto auto 57.6%;
  width: 6.4%;
}
section.park .mv a[href=ikoi]:before {
  background-image: radial-gradient(rgba(168, 117, 160, 0), #a875a0);
}
@media screen and (max-width: 750px) {
  section.park .mv a[href=ikoi] {
    inset: 58.7% auto auto 115.2%;
    width: 12.8%;
  }
}
section.park .mv a[href=asobi] {
  inset: 72.6% auto auto 87%;
  width: 6.4%;
}
section.park .mv a[href=asobi]:before {
  background-image: radial-gradient(rgba(217, 99, 71, 0), #d96347);
}
@media screen and (max-width: 750px) {
  section.park .mv a[href=asobi] {
    inset: 72.6% auto auto 174%;
    width: 12.8%;
  }
}
section.park .mv .modal {
  background: #fff;
  position: fixed;
  width: 3rem;
  padding: 0.3rem;
  opacity: 0;
  border-radius: 0.15rem;
  visibility: hidden;
  transition: 0.2s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 750px) {
  section.park .mv .modal {
    width: 2rem;
    padding: 0.2rem;
  }
}
section.park .mv .modal.show {
  opacity: 1;
  visibility: visible;
}
section.park .mv .modal#deai .ttl {
  color: #4382AA;
}
section.park .mv .modal#manabi .ttl {
  color: #CD7A33;
}
section.park .mv .modal#ikoi .ttl {
  color: #A875A0;
}
section.park .mv .modal#asobi .ttl {
  color: #D86346;
}
section.park .mv .modal#kitchencar .logo {
  width: 0.6rem;
  margin-left: auto;
}
section.park .mv .modal#book .logo {
  width: 0.6rem;
  margin-left: auto;
}
section.park .mv .modal#library .logo {
  width: 0.6rem;
  margin-left: auto;
}
section.park .mv .modal#art .logo {
  width: 0.6rem;
  margin-left: auto;
}
section.park .mv .modal#ribrise .logo {
  width: 1rem;
  margin-top: 0.1rem;
  margin-left: auto;
}
section.park .mv .modal#tuktuk .logo {
  width: 1rem;
  margin-top: 0.1rem;
  margin-left: auto;
}
section.park .mv .modal .close {
  background: #000;
  display: block;
  position: absolute;
  inset: -0.1rem -0.1rem auto auto;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  section.park .mv .modal .close {
    width: 0.25rem;
    height: 0.25rem;
  }
}
section.park .mv .modal .close::before, section.park .mv .modal .close::after {
  content: "";
  background: #fff;
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  width: 50%;
  height: 1px;
}
section.park .mv .modal .close::before {
  rotate: 45deg;
}
section.park .mv .modal .close::after {
  rotate: -45deg;
}
section.park .mv .modal figure {
  position: relative;
}
section.park .mv .modal figure figcaption {
  position: absolute;
  inset: auto 0 -0.16rem auto;
  font-size: 0.12rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  section.park .mv .modal figure figcaption {
    font-size: 0.1rem;
  }
}
section.park .mv .modal .ttl {
  position: relative;
  margin: 0.2rem 0 0.1rem;
  padding-left: 0.35rem;
  font-size: 0.24rem;
  font-weight: 700;
  line-height: 1.5;
  word-wrap: break-word;
}
@media screen and (max-width: 750px) {
  section.park .mv .modal .ttl {
    margin: 0.2rem 0 0.05rem;
    padding-left: 0.2rem;
    font-size: 0.16rem;
  }
}
section.park .mv .modal .ttl:not(:has(> img)) {
  padding-left: 0;
}
section.park .mv .modal .ttl img {
  position: absolute;
  inset: 0.05rem auto auto 0;
  width: 0.27rem;
  height: 0.27rem;
}
@media screen and (max-width: 750px) {
  section.park .mv .modal .ttl img {
    inset: 0.03rem auto auto 0;
    width: 0.16rem;
    height: 0.16rem;
  }
}
section.park .mv .modal .ttl small {
  font-size: 0.16rem;
}
@media screen and (max-width: 750px) {
  section.park .mv .modal .ttl small {
    font-size: 0.12rem;
  }
}
section.park .mv .modal .txt {
  font-size: 0.15rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 750px) {
  section.park .mv .modal .txt {
    font-size: 0.12rem;
  }
}
section.park .sculpture {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}
@media screen and (max-width: 750px) {
  section.park .sculpture {
    flex-direction: column;
  }
}
section.park .sculpture .head .catch span {
  display: block;
  margin-left: -0.5em;
}
section.park .sculpture .txt_content {
  flex: 1;
}
@media screen and (max-width: 750px) {
  section.park .sculpture .txt_content {
    display: contents;
  }
}
section.park .sculpture .txt_content .body {
  position: relative;
  margin: 0.4rem 0 0 -0.2rem;
  padding: 0.4rem 0 0 0.4rem;
}
@media screen and (max-width: 750px) {
  section.park .sculpture .txt_content .body {
    order: 1;
    margin: 0;
    padding: 0.4rem 0 0 0.3rem;
  }
}
section.park .sculpture .txt_content .body::before {
  content: "";
  background: #000;
  position: absolute;
  inset: 0.15rem auto auto 0;
  width: 100%;
  height: 1px;
}
section.park .sculpture .txt_content .body::after {
  content: "";
  background: #000;
  position: absolute;
  inset: 0 auto auto 0.1rem;
  width: 1px;
  height: 1.6rem;
}
section.park .sculpture .txt_content .body .job {
  background: #fff;
  position: absolute;
  inset: 0 auto auto 0;
  padding-right: 0.1rem;
  font-size: 0.2rem;
  font-weight: 500;
  line-height: 1.6;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  section.park .sculpture .txt_content .body .job {
    font-size: 0.18rem;
  }
}
section.park .sculpture .txt_content .body .name {
  padding-bottom: 0.1rem;
  font-size: 0.24rem;
  font-weight: 700;
  line-height: 1.6;
}
section.park .sculpture .txt_content .body .name span {
  padding-left: 1em;
  font-size: 0.16rem;
}
section.park .sculpture .txt_content .body .history {
  display: flex;
  align-items: flex-start;
  gap: 0 0.4rem;
  padding-bottom: 0.2rem;
}
@media screen and (max-width: 750px) {
  section.park .sculpture .txt_content .body .history {
    flex-direction: column;
  }
}
section.park .sculpture .txt_content .body .history ul {
  flex: 1;
}
section.park .sculpture .txt_content .body .history li {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  font-size: 0.12rem;
  font-weight: 500;
  line-height: 1.6;
}
section.park .sculpture .txt_content .body .archive {
  display: flex;
  gap: 0.2rem 0.4rem;
}
@media screen and (max-width: 750px) {
  section.park .sculpture .txt_content .body .archive {
    flex-direction: column;
  }
}
section.park .sculpture .txt_content .body .archive .item {
  flex: 1;
}
section.park .sculpture .txt_content .body .archive p {
  display: flex;
  align-items: center;
  gap: 1em;
  position: relative;
  font-size: 0.15rem;
  font-weight: 500;
  line-height: 1.6;
}
section.park .sculpture .txt_content .body .archive p::after {
  content: "";
  display: inline-block;
  flex: 1;
  height: 1px;
  border-bottom: 1px dashed #000;
}
section.park .sculpture .txt_content .body .archive li {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  font-size: 0.12rem;
  font-weight: 500;
  line-height: 1.6;
}
section.park .sculpture .img_content {
  width: 4rem;
}
@media screen and (max-width: 750px) {
  section.park .sculpture .img_content {
    width: 100%;
  }
}
section.park .sculpture .img_content .imgs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.15rem;
}
section.park .sculpture .img_content .cap {
  padding-top: 0.05rem;
  font-size: 0.12rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: right;
}
section.park .kinds {
  display: flex;
  align-items: flex-start;
  gap: 0.58rem;
  width: calc(100% + (100vw - 9.6rem) / 2);
  margin-left: calc((100vw - 10.6rem) / -2);
  padding-bottom: 0.9rem;
}
@media screen and (max-width: 750px) {
  section.park .kinds {
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
    margin-left: auto;
    padding-bottom: 0.6rem;
  }
}
section.park .kinds .book {
  position: sticky;
  top: 0.9rem;
  width: 7.45rem;
}
@media screen and (max-width: 750px) {
  section.park .kinds .book {
    position: static;
    width: 100%;
  }
}
section.park .kinds .items {
  flex: 1;
}
section.park .kinds .items .item + .item {
  margin-top: 0.38rem;
}
section.park .kinds .items figure {
  position: relative;
  margin-bottom: 0.1rem;
}
section.park .kinds .items figure figcaption {
  position: absolute;
  inset: auto 0.1rem 0.1rem auto;
  font-size: 0.12rem;
  line-height: 1;
}
section.park .kinds .items .txt_content {
  display: flex;
  gap: 0.3rem;
}
@media screen and (max-width: 750px) {
  section.park .kinds .items .txt_content {
    gap: 0.2rem;
  }
}
section.park .kinds .items .txt_content .icon {
  width: 1.1rem;
}
@media screen and (max-width: 750px) {
  section.park .kinds .items .txt_content .icon {
    width: 0.7rem;
  }
}
section.park .kinds .items .txt_content p {
  flex: 1;
}
section.park .kinds .items .txt_content p span {
  display: block;
  font-weight: 700;
}
section.park .exchange .row {
  display: flex;
  gap: 0.6rem;
  padding-top: 0.6rem;
}
@media screen and (max-width: 750px) {
  section.park .exchange .row {
    flex-direction: column;
    gap: 0.2rem;
    padding-top: 0.4rem;
  }
}
section.park .exchange .content01 {
  width: 5.54rem;
}
@media screen and (max-width: 750px) {
  section.park .exchange .content01 {
    width: 100%;
  }
}
section.park .exchange .content01 figure figcaption {
  padding-top: 0.05rem;
  font-size: 0.12rem;
  line-height: 1.8;
  text-align: right;
}
section.park .exchange .content02 {
  flex: 1;
}
section.park .exchange .content02 .item {
  display: flex;
  align-items: flex-start;
  gap: 0.2rem;
}
@media screen and (max-width: 750px) {
  section.park .exchange .content02 .item {
    gap: 0.1rem;
  }
}
section.park .exchange .content02 .item + .item {
  margin-top: 0.2rem;
}
section.park .exchange .content02 .item .img_content {
  width: 2.23rem;
}
@media screen and (max-width: 750px) {
  section.park .exchange .content02 .item .img_content {
    width: 1.4rem;
  }
}
section.park .exchange .content02 .item .txt_content {
  flex: 1;
}
section.park .exchange .content02 .item .txt_content .ttl {
  padding-bottom: 0.1rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 750px) {
  section.park .exchange .content02 .item .txt_content .ttl {
    padding-bottom: 0.05rem;
    line-height: 1.5;
  }
}
section.park .exchange .content02 .item .txt_content .txt {
  font-size: 0.14rem;
  line-height: 1.5;
}

.event {
  padding-top: 0;
  padding-bottom: 1rem;
}
@media screen and (max-width: 750px) {
  .event {
    padding-bottom: 0.6rem;
  }
}
@media screen and (min-width: 751px) {
  .event .head {
    display: flex;
    align-items: flex-end;
    gap: 0.4rem;
    padding-bottom: 0.6rem;
  }
  .event .head .catch {
    white-space: nowrap;
  }
}
.event .head .catch {
  padding-bottom: 0;
}
.event .book {
  margin: 0 calc((100vw - 100%) / -2) 0 -1rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 750px) {
  .event .book {
    margin: 0 -0.2rem;
    padding-bottom: 0.4rem;
  }
}
.event .book figure {
  position: relative;
}
.event .book figure figcaption {
  position: absolute;
  inset: auto 0.1rem 0.7rem auto;
  font-size: 0.12rem;
}
@media screen and (max-width: 750px) {
  .event .book figure figcaption {
    inset: 3.62rem 0.05rem auto auto;
    font-size: 0.11rem;
    text-shadow: 0 0 5px #fff;
  }
}
.event .idea {
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 750px) {
  .event .idea {
    margin-bottom: 0.6rem;
  }
}
.event .idea .box {
  position: relative;
  padding: 0.5rem 0.54rem;
}
@media screen and (max-width: 750px) {
  .event .idea .box {
    padding: 0.3rem 0.2rem 0.2rem;
  }
}
.event .idea .box .corner {
  position: absolute;
  width: 1.35rem;
  height: 0.56rem;
}
@media screen and (max-width: 750px) {
  .event .idea .box .corner {
    width: 0.9rem;
    height: 0.4rem;
  }
}
.event .idea .box .corner::before, .event .idea .box .corner::after {
  content: "";
  background: #000;
  position: absolute;
}
.event .idea .box .corner::before {
  width: 100%;
  height: 2px;
}
.event .idea .box .corner::after {
  width: 2px;
  height: 100%;
}
.event .idea .box .corner.a {
  inset: 0 auto auto 0;
}
.event .idea .box .corner.a::before, .event .idea .box .corner.a::after {
  inset: 0 auto auto 0;
}
.event .idea .box .corner.b {
  inset: 0 0 auto auto;
}
.event .idea .box .corner.b::before, .event .idea .box .corner.b::after {
  inset: 0 0 auto auto;
}
.event .idea .box .corner.c {
  inset: auto 0 0 auto;
}
.event .idea .box .corner.c::before, .event .idea .box .corner.c::after {
  inset: auto 0 0 auto;
}
.event .idea .box .corner.d {
  inset: auto auto 0 0;
}
.event .idea .box .corner.d::before, .event .idea .box .corner.d::after {
  inset: auto auto 0 0;
}
.event .idea .box .ttl {
  position: absolute;
  inset: 0 auto auto 50%;
  translate: -50% -50%;
  font-size: 0.24rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .event .idea .box .ttl {
    position: inherit;
    inset: 0;
    translate: none;
    margin-bottom: 0.2rem;
    font-size: 0.2rem;
    line-height: 1.4;
    text-align: center;
  }
}
.event .idea .box .ttl span {
  position: relative;
}
.event .idea .box .ttl span::before, .event .idea .box .ttl span::after {
  content: "";
  background: #000;
  position: absolute;
  translate: 0 -50%;
  width: 2px;
  height: 100%;
}
.event .idea .box .ttl span::before {
  inset: 50% auto auto -0.15rem;
  rotate: -30deg;
}
@media screen and (max-width: 750px) {
  .event .idea .box .ttl span::before {
    inset: 50% auto auto -0.4rem;
  }
}
.event .idea .box .ttl span::after {
  inset: 50% -0.15rem auto auto;
  rotate: 30deg;
}
@media screen and (max-width: 750px) {
  .event .idea .box .ttl span::after {
    inset: 50% -0.2rem auto auto;
  }
}
.event .idea .box .row {
  display: flex;
  align-items: center;
  gap: 0.2rem 0.4rem;
}
@media screen and (max-width: 750px) {
  .event .idea .box .row {
    flex-direction: column;
    gap: 0.15rem;
  }
}
.event .idea .box .row .img_content {
  flex: 1;
}
.event .idea .box .row .img_content ul {
  display: flex;
  gap: 0.3rem;
}
.event .idea .box .row .txt_content {
  flex: 1;
}
.event .idea .box .row .txt_content p {
  font-size: 0.16rem;
  font-weight: 500;
  line-height: 1.8;
}
.event .idea .cap {
  padding-top: 0.05rem;
  font-size: 0.12rem;
}
@media screen and (max-width: 750px) {
  .event .idea .cap {
    font-size: 0.11rem;
  }
}
.event .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-end;
  gap: 0.2rem;
}
@media screen and (max-width: 750px) {
  .event .cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.5rem;
  }
}
.event .cards li {
  background: #FAF7EB;
  position: relative;
  padding: 0.3rem 0.25rem 0.25rem;
  border-radius: 0.15rem;
}
@media screen and (max-width: 750px) {
  .event .cards li {
    padding: 0.2rem 0.2rem 0.15rem;
  }
}
.event .cards .tag {
  display: inline-block;
  position: absolute;
  inset: 0 auto auto 0;
  translate: 0 -50%;
  padding: 0 0.2rem 0 0.24rem;
  font-size: 0.15rem;
  font-weight: 700;
  line-height: 1.8;
}
.event .cards .tag::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 auto auto 0;
  width: 0.05rem;
  height: 100%;
}
.event .cards .tag.a {
  background: #FFD199;
}
.event .cards .tag.a::before {
  background: #F3AC56;
}
.event .cards .tag.b {
  background: #F6E18B;
}
.event .cards .tag.b::before {
  background: #E5C958;
}
.event .cards .tag.c {
  background: #D5EEA5;
}
.event .cards .tag.c::before {
  background: #B2DA64;
}
.event .cards .ttl {
  padding-bottom: 0.1rem;
  font-size: 0.15rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 750px) {
  .event .cards .ttl {
    font-size: 0.16rem;
  }
}
.event .cards figure {
  position: relative;
  margin-bottom: 0.2rem;
}
.event .cards figure figcaption {
  position: absolute;
  inset: auto 0 -0.15rem auto;
  font-size: 0.12rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .event .cards figure figcaption {
    inset: auto 0.4rem -0.2rem auto;
  }
}
.event .cards .row {
  display: flex;
  align-items: flex-end;
  gap: 0.15rem;
}
.event .cards .row p {
  flex: 1;
  font-size: 0.12rem;
  font-weight: 500;
  line-height: 1.5;
}
.event .cards .row .img {
  width: 1rem;
}
@media screen and (max-width: 750px) {
  .event .cards .row .img {
    width: 1rem;
  }
}

.event_calendar .ttl {
  color: #CECBA3;
  padding-bottom: 0.3rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .event_calendar .ttl {
    padding-bottom: 0.1rem;
  }
}
.event_calendar .ttl span {
  position: relative;
}
.event_calendar .ttl span::before, .event_calendar .ttl span::after {
  content: "";
  background: #CECBA3;
  position: absolute;
  width: 2px;
  height: 70%;
  translate: 0 -50%;
}
.event_calendar .ttl span::before {
  inset: 50% auto auto -0.2rem;
  rotate: -30deg;
}
@media screen and (max-width: 750px) {
  .event_calendar .ttl span::before {
    inset: 50% auto auto -0.15rem;
  }
}
.event_calendar .ttl span::after {
  inset: 50% -0.2rem auto auto;
  rotate: 30deg;
}
@media screen and (max-width: 750px) {
  .event_calendar .ttl span::after {
    inset: 50% -0.15rem auto auto;
  }
}
@media screen and (min-width: 751px) {
  .event_calendar .calendar .img + .img {
    margin-top: 0.2rem;
  }
}
@media screen and (max-width: 750px) {
  .event_calendar .calendar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.2rem;
    padding-bottom: 0.1rem;
    overflow-x: scroll;
    overflow-y: hidden;
  }
  .event_calendar .calendar::-webkit-scrollbar {
    background: #EBEBEB;
    height: 0.1rem;
    margin-right: 0.2rem;
  }
  .event_calendar .calendar::-webkit-scrollbar-thumb {
    background: #1F1F1F;
    border-radius: 20px;
  }
  .event_calendar .calendar .img {
    width: calc(100vw - 0.4rem);
  }
}
.event_calendar .scroll_icon {
  width: 0.37rem;
  margin: -0.7rem 0.2rem 0.24rem auto;
}
@media screen and (max-width: 750px) {
  .event_calendar .scroll_icon {
    width: 0.3rem;
    margin: -0.5rem 0 0.1rem auto;
  }
}
.event_calendar .cap {
  padding-top: 0.1rem;
  font-size: 0.12rem;
  text-align: right;
}

.land_plan {
  padding-bottom: 2rem;
}
@media screen and (max-width: 750px) {
  .land_plan {
    padding-bottom: 0.6rem;
  }
}
.land_plan .row1 {
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 751px) {
  .land_plan .row1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .land_plan .row1 .catch {
    padding-bottom: 0;
  }
  .land_plan .row1 p + p {
    width: 5.4rem;
  }
}
.land_plan .img1 {
  width: 100%;
}

.equipment {
  padding-bottom: 2rem;
}
@media screen and (max-width: 750px) {
  .equipment {
    padding-bottom: 0.6rem;
  }
}
.equipment_list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.6rem 0.3rem;
}
@media screen and (max-width: 750px) {
  .equipment_list {
    display: flex;
    flex-direction: column;
  }
}
.equipment_list .items.a {
  grid-column: span 12;
}
.equipment_list .items.b {
  grid-column: span 4;
}
.equipment_list .items.c {
  grid-column: span 8;
}
.equipment_list .items_ttl {
  margin-bottom: 0.3rem;
  font-size: 0.18rem;
  font-weight: 700;
  text-align: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.equipment_list .items_list {
  display: flex;
  gap: 0.3rem;
}
@media screen and (max-width: 750px) {
  .equipment_list .items_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem 0.15rem;
  }
}
.equipment_list .items_list li {
  flex: 1;
}
.equipment_list .items_list li figure {
  margin-bottom: 0.2rem;
}
.equipment_list .items_list li .ttl {
  padding-bottom: 0.1rem;
  font-size: 0.18rem;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .equipment_list .items_list li .ttl {
    font-size: 0.15rem;
    line-height: 1.5;
  }
}
.equipment_list .items_list li .txt {
  font-size: 0.16rem;
}
@media screen and (max-width: 750px) {
  .equipment_list .items_list li .txt {
    font-size: 0.13rem;
  }
}

.bg01 {
  background: #F9F4E9;
  padding-bottom: 1rem;
}
@media screen and (max-width: 750px) {
  .bg01 {
    padding-bottom: 0.6rem;
  }
}

@media screen and (min-width: 751px) {
  .planying_plan {
    padding-top: 1rem;
  }
}
.planying_plan .season {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  padding-top: 0.6rem;
}
@media screen and (max-width: 750px) {
  .planying_plan .season {
    grid-template-columns: repeat(1, 1fr);
    padding-top: 0.4rem;
  }
}
.planying_plan .season .ttl {
  padding-bottom: 0.3rem;
  font-size: 0.28rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .planying_plan .season .ttl {
    padding-bottom: 0.2rem;
  }
}
.planying_plan .season .txt {
  padding-bottom: 0.3rem;
}
@media screen and (max-width: 750px) {
  .planying_plan .season .txt {
    padding-bottom: 0.2rem;
  }
}
.planying_plan .season figure figcaption {
  padding-top: 0.05rem;
  font-size: 0.12rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .planying_plan .season figure figcaption {
    font-size: 0.1rem;
  }
}
.planying_plan .season .row {
  display: flex;
  align-items: flex-end;
  gap: 0.3rem;
}
@media screen and (max-width: 750px) {
  .planying_plan .season .row {
    gap: 0.2rem;
  }
}
.planying_plan .season .row .tree {
  flex: 1;
}
.planying_plan .season .row .flower {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.14rem 0.2rem;
}
@media screen and (max-width: 750px) {
  .planying_plan .season .row .flower {
    flex: 1.1;
    gap: 0.2rem 0.1rem;
  }
}

.flower_calendar .scroll {
  margin-top: 0.6rem;
  overflow-x: scroll;
  overflow-y: hidden;
}
.flower_calendar .scroll::-webkit-scrollbar {
  background: #EBEBEB;
  height: 0.1rem;
}
.flower_calendar .scroll::-webkit-scrollbar-thumb {
  background: #1F1F1F;
  border-radius: 20px;
}
.flower_calendar .scroll .img {
  width: 147%;
}

@keyframes zoomFadeOut {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.8, 2);
    opacity: 0;
  }
}

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