@charset "UTF-8";

/* =========================================================
  link color
========================================================= */
a {
  color: var(--a-color);
  text-decoration: none;
}

a:visited {
  color: var(--a-visited-color);
}

a:hover {
  color: var(--a-hover-color);
}

p {
  line-height: 1.8;
}

table p {
  line-height: normal;
}

/* =========================================================
  site layout
========================================================= */
body {
  background: url("./images/mp_back-BE.webp");
  color: var(--mono-color-1);
  overflow-x: hidden;
}

#container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#pageHeader,
#pageNav,
#main,
#pageFooter {
  flex-grow: 1;
  width: 100%;
}

@media screen and (max-width: 959px) {
  #container {
    overflow-x: hidden;
  }
}

/* global-navi
----------------------------------------------- */
#globalNavi {
  padding: 30px 0 20px;
  border-bottom: 1px solid var(--mono-color-1);
}

#globalNavi .pieceContainer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: var(--site-width);
  margin: 0 auto;
}

#globalNavi .pieceHeader {
  flex-basis: 190px;
}

#globalNavi ul {
  display: flex;
  flex-basis: 31em;
}

#globalNavi .pieceBody>ul>li {
  position: relative;
}

#globalNavi ul ul {
  flex-wrap: wrap;
  position: absolute;
  top: 100%;
  left: 0;
  background: url("./images/mp_back-BE.webp");
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}

#globalNavi .pieceBody>ul>li:hover a+ul {
  visibility: visible;
  opacity: 1;
}

#globalNavi .pieceBody>ul>li:not(:first-child) {
  margin-left: 1.5rem;
}

#globalNavi li a {
  display: block;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.125rem;
  text-underline-offset: 0.5rem;
}

#globalNavi ul ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100vw;
  height: 100%;
}

#globalNavi li a:hover,
#globalNavi li a:focus {
  text-decoration: underline;
  transition: all 0.2s;
}

#globalNavi li li a {
  position: relative;
  white-space: nowrap;
  text-decoration: underline;
  z-index: 100;
}

#globalNavi li li {
  flex-basis: 100%;
  margin-bottom: 0.5rem;
}

#globalNavi li li a:hover,
#globalNavi li li a:focus {
  text-decoration: none;
}

@media screen and (max-width: 959px) {
  #globalNavi {
    padding: 20px;
  }

  #globalNavi .pieceContainer {
    flex-wrap: wrap;
    max-width: 100%;
  }

  #globalNavi .pieceHeader {
    flex-basis: 100%;
  }

  #globalNavi .pieceBody {
    display: none;
  }
}

/* scroll-navi
----------------------------------------------- */
#scrollNavi {
  position: fixed;
  bottom: 25px;
  right: 40px;
  padding-left: 15px;
  border-left: 1px solid var(--mono-color-1);
  z-index: 10;
}

#scrollNavi .pieceContainer {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 45px;
}

#scrollNavi .pieceHeader,
#scrollNavi .pieceBody {
  flex-basis: 100%;
}

#scrollNavi .pieceHeader {
  margin-bottom: 120px;
}

#scrollNavi .pieceHeader img {
  width: 25px;
}

#scrollNavi ul {
  display: flex;
  writing-mode: vertical-rl;
}

#scrollNavi li:not(:first-child) {
  margin-top: 1.5rem;
}

#scrollNavi li a {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.125rem;
  text-underline-position: left;
  text-underline-offset: 0.5rem;
}

#scrollNavi li a:hover,
#scrollNavi li a:focus {
  text-decoration: underline;
}

@media screen and (max-width: 959px) {
  #scrollNavi {
    bottom: 0;
    right: 0;
  }

  #scrollNavi .pieceHeader {
    margin-bottom: 20px;
  }

  #scrollNavi li:not(:first-child) {
    margin-top: 1rem;
  }

  #scrollNavi li:last-child {
    margin-bottom: 5px;
  }
}

/* about
----------------------------------------------- */
#about {
  background: url("./images/mp_plants-02.webp") no-repeat left bottom 180px / auto 240px;
}

#about .pieceContainer {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 110px 0;
  background: url("./images/mp_plants-01.webp") no-repeat right top 250px / auto 540px;
}

#about .pieceHeader {
  margin-bottom: 140px;
}

#about .pieceHeader img {
  width: 660px;
  height: auto;
}

#about .hashtag {
  margin-bottom: 110px;
}

#about .hashtag li a {
  display: inline-block;
  margin-bottom: 0.5em;
  font-size: 2.75rem;
  font-weight: bold;
  letter-spacing: 0.75rem;
  text-decoration: underline;
  text-underline-offset: 1rem;
}

#about .hashtag li a:hover,
#about .hashtag li a:focus {
  text-decoration: none;
}

#about .place {
  margin-top: 1em;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.25rem;
}

#about .introduction {
  max-width: var(--content-width);
  margin: 0 auto;
}

#about .introduction li {
  display: flex;
}

#about .introduction li:not(:last-child) {
  margin-bottom: 55px;
}

#about .introduction li .wrap {
  flex-basis: calc(100% - 480px);
}

#about .introduction li h2 {
  width: 90px;
  margin-bottom: 0.5em;
}

#about .introduction li .image {
  flex-basis: 410px;
  margin-left: auto;
}

@media screen and (max-width: 959px) {
  #about .pieceContainer {
    max-width: 100%;
    padding: 40px 80px 40px 20px;
  }

  #about .pieceHeader {
    margin-bottom: 20px;
  }

  #about .hashtag {
    margin-bottom: 40px;
  }

  #about .hashtag li a {
    font-size: 1.5rem;
  }

  #about .place {
    font-size: 1rem;
  }

  #about .introduction li {
    flex-wrap: wrap;
  }

  #about .introduction li .wrap,
  #about .introduction li .image {
    flex-basis: 100%;
  }

  #about .introduction li .wrap {
    margin-bottom: 20px;
  }
}

/* background green
----------------------------------------------- */
#content>.upper {
  background-image: url("./images/mp_plants-03.webp"), url("./images/mp_back-GR.webp");
  background-position: right top 550px, left top;
  background-repeat: no-repeat, repeat;
  background-size: 165px auto, auto auto;
  color: var(--mono-color-9);
}

#content h2 {
  line-height: 1;
  margin-bottom: 60px;
  border-bottom: 1px solid transparent;
  font-size: 2.75rem;
  letter-spacing: 0.75rem;
}

#content>.upper h2 {
  border-color: var(--mono-color-9);
}

#content>.lower h2 {
  border-color: var(--mono-color-1);
}

/* map
----------------------------------------------- */
#map {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 80px 0 50px;
}

#map .zoom {
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.25rem;
}

#map .zoom img {
  width: 65px;
  vertical-align: middle;
}

@media screen and (max-width: 959px) {
  #map {
    padding: 20px 80px 20px 20px;
  }

  #map .zoom {
    font-size: 1rem;
  }

  #map .zoom img {
    width: 30px;
  }
}

/* gallery
----------------------------------------------- */
#gallery {
  background: url("./images/mp_back-BE.webp");
}

.slick-slide li {
  vertical-align: bottom;
}

.slick-slide a[href="#"] {
  pointer-events: none;
}

.slick-slide img:not(.external) {
  height: 490px;
  border: 4px solid transparent;
  border-left-width: 2px;
  border-right-width: 2px;
}

.slick-prev {
  left: 65px;
  background: url("./images/mp_icon-03-left.webp") no-repeat left top / 32px auto;
}

.slick-next {
  right: 65px;
  background: url("./images/mp_icon-03-right.webp") no-repeat left top / 32px auto;
}

@media screen and (max-width: 959px) {
  .slick-slide img:not(.external) {
    height: auto;
    border-left: 0;
    border-right: 0;
  }
}

/* coworking
----------------------------------------------- */
#coworking {
  padding: 80px 0 55px;
  background: url("./images/mp_plants-03.webp") no-repeat -30px center / 190px auto;
}

#coworking .pieceContainer {
  max-width: var(--site-width);
  margin: 0 auto;
}

#coworking h2 {
  padding-left: 90px;
}

#coworking .pieceBody {
  display: flex;
  align-items: flex-start;
  gap: 0 50px;
  flex-wrap: wrap;
  padding: 0 105px 0 125px;
}

#coworking .about {
  display: flex;
  align-items: center;
  flex-basis: 100%;
}

#coworking .about .image {
  flex-basis: 420px;
}

#coworking .about .text {
  flex-basis: calc(100% - 475px);
  margin-left: auto;
}

#coworking .wrap {
  display: flex;
  flex-basis: calc(50% - 25px);
  flex-wrap: wrap;
  gap: 0 50px;
  position: relative;
}

#coworking .wrap:last-child::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 3em;
  width: 1px;
  height: calc(100% - 3em);
  border-right: 1px solid var(--mono-color-9);
}

#coworking h3 {
  position: relative;
  margin-top: calc(25px + 0.75em);
  border-top: 2px solid var(--mono-color-9);
}

#coworking h3 span {
  display: inline-block;
  position: absolute;
  left: 0;
  top: -0.75em;
  line-height: 1;
  padding: 0.25em 0.5em;
  border-radius: 1em;
  background-color: var(--mono-color-9);
  color: var(--main-color-2);
  font-weight: normal;
}

#coworking h3+* {
  margin-top: 1.5em;
}

#coworking table {
  width: 100%;
  border: 0;
}

#coworking table .day {
  margin-bottom: 0.5em;
}

#coworking table .day strong {
  display: inline-block;
  width: 3.5em;
  margin-right: 0.5em;
  background-color: var(--mono-color-9);
  color: var(--main-color-2);
  text-align: center;
}

#coworking th {
  font-weight: normal;
}

#coworking th,
#coworking td {
  padding: 5px;
  border: 1px dotted var(--mono-color-9);
  vertical-align: middle;
}

#coworking thead tr:first-child th,
#coworking thead tr:first-child td {
  border-top: 0;
}

#coworking tbody tr:last-child th,
#coworking tbody tr:last-child td {
  border-bottom: 0;
}

#coworking th:first-child,
#coworking td:first-child {
  border-left: 0;
}

#coworking th:last-child,
#coworking td:last-child {
  border-right: 0;
}

#coworking ul {
  list-style-type: disc;
  margin-left: 2em;
}

#opening-hours,
#membership-fee {
  position: relative;
  flex-basis: calc(50% - 25px);
}

#opening-hours::after {
  content: "";
  position: absolute;
  right: -25px;
  top: 3em;
  width: 1px;
  height: calc(100% - 3em);
  border-right: 1px solid var(--mono-color-9);
}

#opening-hours table {
  width: auto;
}

#membership-fee p {
  margin-top: 3em;
}

#coworking a {
  color: var(--mono-color-9);
}

#coworking a:hover,
#coworking a:focus {
  text-decoration: underline;
}

table.noborder *,
tr.noborder * {
  border: 0 !important;
}

table.noborder * {
  padding: 0 !important;
}

tr.noborder_prev * {
  border-bottom: 0 !important;
}

.space05 {
  letter-spacing: 0.5em;
}

@media screen and (max-width: 959px) {
  #coworking {
    padding: 20px 80px 20px 20px;
  }

  #content h2 {
    margin-bottom: 20px;
    font-size: 1.75rem;
  }

  #coworking h2 {
    padding-left: 20px;
  }

  #coworking .pieceBody {
    gap: 0;
    padding: 0;
  }

  #coworking .about {
    flex-wrap: wrap;
  }

  #coworking .about .text {
    flex-basis: 100%;
    margin: 20px 0 0;
  }

  #coworking .wrap {
    flex-basis: 100%;
    gap: 0;
  }

  #opening-hours,
  #membership-fee {
    flex-basis: 100%;
  }

  #opening-hours::after {
    content: none;
  }

  #coworking h3 {
    margin-top: 2em;
  }

  #membership-fee p {
    margin-top: 1.5em;
  }

  #coworking table .day strong {
    display: block;
  }

  .space05 {
    letter-spacing: normal;
  }
}

/* menu
----------------------------------------------- */
#menu {
  background-image: url("./images/mp_plants-05.webp"), url("./images/mp_plants-06.webp");
  background-position: calc(50% - 180px) 450px, right -30px bottom 50px;
  background-repeat: no-repeat;
  background-size: 220px auto, 310px auto;
}

#menu .pieceContainer {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 80px 0 55px;
}

#menu h2 {
  padding-left: 90px;
}

#menu h3 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 40px;
  font-size: 1.75rem;
  letter-spacing: 0.25rem;
}

#menu h3 span.or {
  font-size: 1.25rem;
  letter-spacing: normal;
}

#menu .menu03 {
  margin-bottom: 2.625em;
}

#menu .menu05 {
  margin-bottom: calc(80px - 2em);
}

#menu .menu05 h3 {
  padding-bottom: 1.5em;
}

#menu .menu05 h3 span:not(.or) {
  display: inline-block;
  position: absolute;
  left: 2em;
  top: -1.5em;
  text-decoration: underline;
}

#menu .menu05 h3 a:hover span:not(.or),
#menu .menu05 h3 a:focus span:not(.or) {
  text-decoration: none;
}

#menu h3 img {
  position: absolute;
  left: -60px;
  top: 0;
  width: 100px;
  vertical-align: top;
}

#menu p+h4:not(.title) {
  margin-top: 2rem;
}

#menu h4.title {
  position: relative;
  margin: 2em 0 1.5em;
  border-top: 2px dotted var(--mono-color-1);
  font-weight: normal;
}

#menu h4.title span {
  display: inline-block;
  position: absolute;
  left: 0;
  top: -0.8rem;
  line-height: 1;
  padding: 0.25em 0.5em;
  border: 1px solid var(--mono-color-1);
  border-radius: 1rem;
  background-color: var(--main-color-3);
}

#menu h4.title+p {
  line-height: normal;
  padding-left: 0.5em;
}

#menu ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1em;
}

#menu ul+p {
  margin-top: -1em;
}

#menu .pieceBody {
  display: flex;
  align-items: flex-start;
  gap: 80px 130px;
  flex-wrap: wrap;
  padding: 0 105px 0 125px;
}

#menu .pieceBody>div {
  flex-basis: calc(50% - 65px);
}

#menu .pieceBody>div:nth-child(3),
#menu .pieceBody>div.col2 {
  flex-basis: 100%;
}

#menu .pieceBody>div:nth-child(3),
#menu .col2 {
  display: flex;
  gap: 0 50px;
}

#menu .col2 {
  gap: 0 130px;
}

#menu .col2>div {
  flex-basis: calc(50% - 65px);
}

#menu .col2 .wrap .menu>div {
  display: flex;
  gap: 0 15px;
}

#menu .col2 .wrap .menu>div .image {
  flex-basis: 160px;
}

#menu .col2 .wrap .menu>div .image+p {
  flex-basis: calc(100% - 175px);
  margin-left: auto;
}

#menu .image img {
  margin-bottom: 2em;
}

#menu table {
  border: 0;
}

#menu th {
  font-weight: normal;
}

#menu th,
#menu td {
  padding: 5px 20px;
  border: 1px dotted var(--mono-color-1);
  vertical-align: middle;
}

#menu thead tr:first-child th,
#menu thead tr:first-child td {
  border-top: 0;
}

#menu tbody tr:last-child th,
#menu tbody tr:last-child td {
  border-bottom: 0;
}

#menu th:first-child,
#menu td:first-child {
  border-left: 0;
}

#menu th:last-child,
#menu td:last-child {
  border-right: 0;
}

#menu ruby {
  margin-right: -0.5em;
}

#menu rt {
  font-size: 1rem;
}

#menu a {
  text-decoration: underline;
}

#menu a:hover,
#menu a:focus {
  text-decoration: none;
}

@media screen and (max-width: 959px) {
  #menu .pieceContainer {
    max-width: 100%;
    padding: 20px 80px 20px 20px;
  }

  #menu h2 {
    padding-left: 20px;
  }

  #menu .pieceBody {
    gap: 20px 0;
    padding: 0;
  }

  #menu .pieceBody>div {
    flex-basis: 100%;
  }

  #menu h3 {
    font-size: 1.35rem;
  }

  #menu h3 img {
    left: -10px;
    width: 60px;
  }

  #menu .image img {
    margin-bottom: 20px;
  }

  #menu p+h4:not(.title) {
    margin-top: 1rem;
  }

  #menu .pieceBody>div:nth-child(3),
  #menu .col2,
  #menu .col2 .wrap .menu>div {
    flex-wrap: wrap;
  }

  #menu th,
  #menu td {
    padding: 5px 10px;
  }

  #menu .menu03 {
    margin-bottom: 0;
  }

  #menu .menu04 {
    margin-bottom: 2em;
  }

  #menu .menu05 {
    margin-bottom: 20px;
  }

  #menu .menu05 h3 span:not(.or) {
    white-space: nowrap;
  }

  #menu .col2 {
    gap: 20px 0;
  }

  #menu .col2>div,
  #menu .col2 .wrap .menu>div .image,
  #menu .col2 .wrap .menu>div .image+p {
    flex-basis: 100%;
  }

  #menu .col2 .wrap .menu>div .image+p {
    margin: 0;
  }
}

/* commonFooter
----------------------------------------------- */
#pageFooter {
  padding: 90px 0;
  background-color: var(--mono-color-1);
  color: var(--mono-color-9);
}

#pageFooterContainer {
  display: flex;
  justify-content: space-between;
  max-width: var(--site-width);
  margin: 0 auto;
}

#contact .pieceHeader {
  margin-bottom: 30px;
}

#contact h2 img {
  width: 310px;
  height: auto;
}

#contact a {
  color: var(--mno-color-9);
  text-decoration: underline;
}

#contact a:hover,
#contact a:focus {
  text-decoration: none;
}

@media screen and (max-width: 959px) {
  #pageFooter {
    padding: 20px;
  }

  #pageFooterContainer {
    gap: 20px 0;
    flex-wrap: wrap;
    max-width: 100%;
  }

  #pageFooterContainer>div {
    flex-basis: 100%;
  }

  #contact .pieceHeader {
    margin-bottom: 20px;
  }

  #access iframe {
    width: calc(100% - 10px) !important;
  }
}