@charset "UTF-8";
/* --------------------------------------------------
   メディアクエリ
-------------------------------------------------- */
/* --------------------------------------------------
  ABOUT
-------------------------------------------------- */
.about {
  background-image: url(../img/contents/index/about-img.webp);
  background-size: cover;
  background-position: left bottom;
}
@media screen and (max-width: 768px) {
  .about {
    background-image: none;
    background-color: var(--bg-menu);
  }
}
.about {
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-align: justify;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
  }
}
.about-content .about-wrap {
  grid-column: 2;
  display: grid;
  gap: var(--sp-md);
}

/* --------------------------------------------------
   LINKS
-------------------------------------------------- */
.links-content {
  max-width: 1000px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas: "A A B B" "A A C C" "D D E E";
  grid-auto-rows: 170px;
  gap: var(--sp-md);
}
.links-content a {
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-areas: "stack";
  isolation: isolate;
  border-radius: 1px;
}
.links-content a > img, .links-content a > .links-txt-wrap {
  grid-area: stack;
}
.links-content a img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale var(--trans);
  z-index: 1;
}
.links-content a img:hover {
  scale: 1.05;
}
@media screen and (max-width: 768px) {
  .links-content a img {
    height: 200px;
  }
}
@media screen and (max-width: 768px) {
  .links-content {
    display: flex;
    flex-direction: column;
    gap: var(--sp-md);
  }
}
.links-txt-wrap {
  display: grid;
  place-content: end start;
  padding: var(--sp-sm);
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.4));
}
.links-grid-A {
  grid-area: A;
}
.links-grid-B {
  grid-area: B;
}
.links-grid-C {
  grid-area: C;
}
.links-grid-D {
  grid-area: D;
}
.links-grid-E {
  grid-area: E;
}
.links .main-space {
  padding-top: 6rem;
}

/* --------------------------------------------------
   info
-------------------------------------------------- */
.info {
  background-color: var(--bg-sub);
}
.info-list {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: var(--sp-sm) var(--sp-6l);
  border: var(--border-white);
}
@media screen and (max-width: 768px) {
  .info-list {
    padding: var(--sp-sm) var(--sp-md);
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .info-list {
    padding: var(--sp-ss);
    margin-inline: inherit;
  }
}
.info-item a {
  display: flex;
  justify-content: start;
  gap: var(--sp-lg);
}
.info-item a:hover .info-txt {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .info-item a {
    display: block;
  }
}
.info-item a .info-date {
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .info-item a .info-date {
    display: block;
    font-size: var(--fs-sm);
  }
}
@media screen and (max-width: 768px) {
  .info-item a .info-txt {
    margin: 0;
    padding-top: var(--sp-md);
  }
}
@media screen and (max-width: 768px) {
  .info-item:not(:first-child) {
    margin-top: var(--sp-lg);
  }
}

/* --------------------------------------------------
   access
-------------------------------------------------- */
.sp-br {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-br {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .sp-br {
    display: none;
  }
}

.access iframe {
  width: 100%;
  height: 500px;
}
.access table {
  border-collapse: collapse;
  width: -moz-fit-content;
  width: fit-content;
  margin: var(--sp-3l) auto;
}
@media screen and (max-width: 500px) {
  .access table {
    width: 100%;
    margin: var(--sp-sss) auto;
  }
}
@media screen and (max-width: 500px) {
  .access table tr,
  .access table th,
  .access table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 500px) {
  .access table th {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .access table td {
    width: 70%;
  }
}
@media screen and (max-width: 500px) {
  .access table td {
    width: 100%;
  }
}
.access table th,
.access table td {
  padding: var(--sp-ss) var(--sp-md);
}
@media screen and (max-width: 768px) {
  .access table th,
  .access table td {
    padding: var(--sp-ss);
  }
}
.access .parking-table {
  color: var(--bg-main);
  background-color: var(--clr-sub);
}
.access summary {
  display: block;
  cursor: pointer;
}
.access summary::-webkit-details-marker {
  display: none;
}
.access-guide {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .access-guide {
    gap: var(--sp-md);
  }
}
@media screen and (max-width: 768px) {
  .access-guide .access-guide-pc-img {
    display: none;
  }
}
.access-guide .access-guide-sp-img {
  display: none;
}
@media screen and (max-width: 768px) {
  .access-guide .access-guide-sp-img {
    display: block;
    width: 450px;
  }
}
@media screen and (max-width: 500px) {
  .access-guide .access-guide-sp-img {
    width: 280px;
  }
}
.access-guide-pc {
  padding: var(--sp-md);
}
@media screen and (max-width: 768px) {
  .access-guide-pc {
    padding: 0;
  }
}
.access-guide-pc img {
  display: block;
  max-width: 1000px;
  padding: var(--sp-md);
  margin-inline: auto;
}
.access-guide-pc[open] .access-guide-title::after {
  transform: rotate(180deg);
}
.access-guide summary.access-guide-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-ss);
  width: 300px;
  border: var(--border-white);
  padding: var(--sp-md);
  margin-inline: auto;
  text-align: center;
}
.access-guide summary.access-guide-title::after {
  content: "▼";
  font-size: 1rem;
  display: inline-block;
  transition: transform 0.3s ease;
  transform-origin: center center;
}
@media screen and (max-width: 500px) {
  .access-guide summary.access-guide-title {
    width: 200px;
  }
}
.access .table-wrap {
  padding: var(--sp-md);
}/*# sourceMappingURL=index.css.map */