@charset "UTF-8";
/*======================================================================
 * イベントスペース貸出案内 レイアウト
======================================================================*/
/* ------------------------------------------------------------
  * 共通
------------------------------------------------------------ */
.link-button.-pdf, .link-button.-docx, .link-button.-xlsx, .link-button.-pptx {
  padding: 4px 0;
}
.link-button.-pdf::before, .link-button.-pdf::after, .link-button.-docx::before, .link-button.-docx::after, .link-button.-xlsx::before, .link-button.-xlsx::after, .link-button.-pptx::before, .link-button.-pptx::after {
  content: none;
}
.link-button.-pdf span, .link-button.-docx span, .link-button.-xlsx span, .link-button.-pptx span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.link-button.-pdf span::after, .link-button.-docx span::after, .link-button.-xlsx span::after, .link-button.-pptx span::after {
  content: "";
  display: inline-block;
  position: relative;
  width: 17px;
  height: 21px;
  margin-left: 10px;
  /* background-color: currentColor; */
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.link-button.-pdf span::after {
  /* -webkit-mask: url("../images/common/icon-pdf.svg") no-repeat 0 0;
  mask: url("../images/common/icon-pdf.svg") no-repeat 0 0; */
  background: url("../images/common/icon-pdf.svg") no-repeat 0 0;
}
.link-button.-docx span::after {
  /* -webkit-mask: url("../images/common/icon-docx.svg") no-repeat 0 0;
  mask: url("../images/common/icon-docx.svg") no-repeat 0 0; */
  background: url("../images/common/icon-docx.svg") no-repeat 0 0;
}
.link-button.-xlsx span::after {
  /* -webkit-mask: url("../images/common/icon-xlsx.svg") no-repeat 0 0;
  mask: url("../images/common/icon-xlsx.svg") no-repeat 0 0; */
  background: url("../images/common/icon-xlsx.svg") no-repeat 0 0;
}
.link-button.-pptx span::after {
  /* -webkit-mask: url("../images/common/icon-pptx.svg") no-repeat 0 0;
  mask: url("../images/common/icon-pptx.svg") no-repeat 0 0; */
  background: url("../images/common/icon-pptx.svg") no-repeat 0 0;
}
.link-button.-back {
  color: #000;
  border-color: #D6D6D6;
}
.link-button.-back::after {
  left: 26px;
  right: auto;
  margin-left: 0;
  border-color: #000;
  -webkit-transform: translate(50%, -50%) rotate(225deg);
  transform: translate(50%, -50%) rotate(225deg);
}
.link-button.-adjustment span::after {
  margin: 0;
}

.l-title-line + .lead {
  margin-top: 14px;
}

.lead {
  margin-bottom: 30px;
  line-height: 1.69;
}
@media screen and (max-width: 768px) {
  .lead {
    margin-bottom: 1em;
  }
}

/* ------------------------------------------------------------
  * イベントスペース
------------------------------------------------------------ */
.space-container {
  margin: 0 0 54px;
}
.space-container:first-of-type {
  margin-top: 26px;
}
.space-container:last-child {
  margin-bottom: 66px;
}
@media screen and (max-width: 768px) {
  .space-container {
    margin: 0 0 38px;
  }
  .space-container:last-child {
    margin-bottom: 0;
  }
}
.space-container .anchor-block {
  margin: 45px 0;
}
.space-container .anchor-block ul {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: -20px;
}
.space-container .anchor-block a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid #14AECC;
  border-radius: 5px;
  max-width: 320px;
  width: 100%;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.29;
  letter-spacing: 0.02em;
  background: #ffffff;
  text-decoration: none;
  color: #14AECC;
}
.space-container .anchor-block a:after {
  content: "";
  display: block;
  position: absolute;
  top: 55%;
  right: 25px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #14AECC;
  border-right: 1px solid #14AECC;
  -webkit-transform: translate(50%, -50%) rotate(135deg);
  transform: translate(50%, -50%) rotate(135deg);
  margin: -4px 0 0 -8px;
}
.space-container .anchor-block a small {
  font-size: 1rem;
  line-height: 1.2;
}
@media screen and (min-width: 769px) {
  .space-container .anchor-block li {
    width: calc(25% - 10px);
    margin-bottom: 20px;
  }
  .space-container .anchor-block li:not(:nth-child(4n)) {
    margin-right: calc(40px / 3);
  }
}
@media screen and (max-width: 768px) {
  .space-container .anchor-block {
    margin: 25px 0 40px;
  }
  .space-container .anchor-block ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: -10px;
  }
  .space-container .anchor-block li {
    width: calc(50% - 5px);
    margin-bottom: 10px;
  }
  .space-container .anchor-block a {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 4px 20px 4px 8px;
    text-align: left;
  }
  .space-container .anchor-block a:after {
    right: 14px;
  }
}
@media screen and (max-width: 768px) {
  .space-container .link-button-group.-center {
    margin-bottom: 0;
  }
  .space-container .link-button-group.-center .link-button {
    max-width: 320px;
    margin-right: auto !important;
  }
  .space-container .link-button-group.-center .link-button:nth-child(n+2) {
    margin-top: 20px;
  }
}

.event-section {
  margin-bottom: 56px;
}
.event-section:last-child {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .event-section {
    margin-bottom: 40px;
  }
  .event-section:last-child {
    margin-bottom: 38px;
  }
}
.event-section .l-title-bg-blue {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .event-section .l-title-bg-blue {
    margin-bottom: 20px;
    padding: 8px 12px;
    line-height: 1.33;
  }
}
.event-section .event-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.event-section .event-block:not(:last-child) {
  margin-bottom: 40px;
}
.event-section .event-block .image {
  width: 48%;
}
.event-section .event-block .text {
  width: 50%;
}
.event-section .event-block .text p:first-child {
  margin-top: -5px;
}
.event-section .event-block .text a {
  color: #14AECC;
}
.event-section .event-block .text dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0 0 10px;
}
.event-section .event-block .text dt {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-right: 10px;
  padding: 4px 10px;
  font-size: 1.4rem;
  line-height: 1.29;
  background: #F4F4F4;
}
.event-section .event-block .text dd {
  margin: 0;
  line-height: 1.69;
}
.event-section .event-block .text dd small {
  display: inline-block;
  margin-left: 1.33em;
  color: #727272;
  font-size: 1.2rem;
  line-height: 1.83;
}
.event-section .event-block .text .button-group {
  margin-bottom: 10px;
}
.event-section .event-block .text .button-group .link-button {
  min-height: 50px;
  margin: 0;
  font-size: 1.4rem;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.event-section .event-block .text .button-group .link-button::after {
  top: 55%;
  right: 15px;
  -webkit-transform: translate(50%, -50%) rotate(135deg);
  transform: translate(50%, -50%) rotate(135deg);
}
.event-section .event-image {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 70px;
}
@media screen and (max-width: 768px) {
  .event-section .event-block {
    display: block;
  }
  .event-section .event-block .image {
    width: 100%;
    margin-bottom: 20px;
  }
  .event-section .event-block .text {
    width: 100%;
    line-height: 1.6875;
  }
  .event-section .event-block .text p:first-child {
    margin-top: 0;
  }
  .event-section .event-block .text .button-group .link-button {
    margin: 0 auto;
  }
  .event-section .event-image {
    margin-bottom: 53px;
  }
}

.floormap-section .floormap-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 756px;
  margin: 22px auto 70px;
}
@media screen and (max-width: 768px) {
  .floormap-section .floormap-images {
    max-width: none;
    margin: 22px auto 53px;
  }
}
.floormap-section .floormap-image.-center1f {
  width: 343px;
  margin: 8px 42px 53px 0;
}
.floormap-section .floormap-image.-center2f {
  width: 354px;
  margin: 0 0 53px;
}
.floormap-section .floormap-image.-east1f {
  width: 347px;
  margin: 0 56px 4px 0;
}
.floormap-section .floormap-image.-east2f {
  width: 353px;
}
@media screen and (max-width: 768px) {
  .floormap-section .floormap-image.-center1f {
    width: 96.56%;
    margin: 22px auto 29px 0;
  }
  .floormap-section .floormap-image.-center2f {
    width: 95.94%;
    margin: 0 auto 40px 0;
  }
  .floormap-section .floormap-image.-east1f {
    width: 100%;
    margin: 0 0 40px;
  }
  .floormap-section .floormap-image.-east2f {
    width: 100%;
    margin: 0;
  }
}

.contact-block {
  margin: 38px 0 0;
  line-height: 1.69;
}
@media screen and (max-width: 768px) {
  .contact-block {
    margin-top: 32px;
  }
}
.contact-block h3 {
  font-size: 1.6rem;
}
.contact-block h3 + p {
  margin-top: -0.5em;
}
.contact-block p {
  margin: 1.5em 0;
}
.contact-block p:first-child {
  margin-top: 0;
}
.contact-block p:last-child {
  margin-bottom: 0;
}
.contact-block a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}

/* ------------------------------------------------------------
  * 申請書類一覧
------------------------------------------------------------ */
.documents-container {
  margin: 26px 0 50px;
}
.documents-container .link-button {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .documents-container {
    margin: 20px 0 0;
  }
  .documents-container .link-button-group.-center .link-button {
    max-width: 320px;
    margin-right: auto !important;
  }
}

.pdf-block {
  max-width: 680px;
  margin: 42px auto 22px;
}
.pdf-block ul {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.pdf-block li {
  width: 320px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .pdf-block {
    margin: 36px auto 40px;
  }
  .pdf-block ul {
    display: block;
  }
  .pdf-block li {
    width: 100%;
  }
}