@charset "UTF-8";
[data-ani] {
  --ani-delay: 0s;
  --ani-duration: 1s;
  pointer-events: none;
}
[data-ani].is-animated-done {
  pointer-events: auto;
}

.ani-width {
  width: 0;
  transition: width var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay);
}
.ani-width.is-animated {
  width: 100%;
}

.ani-fade, .ani-fade-left, .ani-fade-right, .ani-fade-down-full, .ani-fade-down, .ani-fade-up {
  opacity: 0;
  transition: opacity var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay), transform var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay);
}
.ani-fade.is-animated, .is-animated.ani-fade-left, .is-animated.ani-fade-right, .is-animated.ani-fade-down-full, .is-animated.ani-fade-down, .is-animated.ani-fade-up {
  opacity: 1;
}
.ani-fade-up {
  transform: translateY(30px);
}
.ani-fade-up.is-animated {
  transform: translateY(0);
}
.ani-fade-down {
  transform: translateY(-10px);
}
.ani-fade-down.is-animated {
  transform: translateY(0);
}
.ani-fade-down-full {
  transform: translateY(-100%);
}
.ani-fade-down-full.is-animated {
  transform: translateY(0);
}
.ani-fade-right {
  transform: translateX(-10px);
}
.ani-fade-right.is-animated {
  transform: translateX(0);
}
.ani-fade-left {
  transform: translateX(10px);
}
.ani-fade-left.is-animated {
  transform: translateX(0);
}

.ani-scale {
  transform: scale(0.6);
  transform-origin: center;
  transition: opacity var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay), transform var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay);
}
.ani-scale.is-animated {
  transform: scale(1);
}

.ani-zoom {
  transform: scale(1.2);
  transform-origin: center;
  transition: transform var(--ani-duration) cubic-bezier(0.07, 0.09, 0.09, 0.62) var(--ani-delay);
}
.ani-zoom.is-animated {
  transform: scale(1);
}

.ani-clip, .ani-clip-full {
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  transition: all var(--ani-duration) ease-in-out var(--ani-delay);
  will-change: clip-path;
}
@media (max-width: 768px) {
  .ani-clip-full {
    transition: all calc(var(--ani-duration) / 2) cubic-bezier(0.07, 0.09, 0.09, 0.62) calc(var(--ani-delay) / 2);
  }
}
.ani-clip.is-animated, .is-animated.ani-clip-full {
  opacity: 1;
  clip-path: inset(0);
}

/* ================================
メインビジュアル
   ================================ */
.p-acc__lead {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 1.5em;
}
@media (max-width: 768px) {
  .p-acc__lead {
    font-size: 2rem;
  }
}
.p-acc__txt {
  font-size: 1.6rem;
  margin-bottom: 1.5em;
}
@media (max-width: 768px) {
  .p-acc__txt {
    font-size: 1.3rem;
  }
}
.p-acc__ttl {
  color: #ffffff;
  text-align: center;
  font-size: 1.8rem;
  position: relative;
  background: linear-gradient(90deg, rgba(108, 105, 156, 0) 0%, #535078 50%, rgba(108, 105, 156, 0) 100%);
  margin-bottom: 1.5em;
}
.p-acc__ttl::after {
  content: "";
  background: linear-gradient(90deg, rgba(108, 105, 156, 0) 0%, #6c699c 50%, rgba(108, 105, 156, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 0.5rem);
  z-index: -1;
}
@media (max-width: 768px) {
  .p-acc__ttl {
    font-size: 1.3rem;
  }
}
.p-acc .p-intro__imgs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .p-acc .p-intro__imgs {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-acc .p-intro__imgsItem {
  width: 100%;
  height: 100%;
}
.p-acc .p-intro__imgsItem img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-acc .p-intro__imgsTxt {
  font-size: 3rem;
  position: absolute;
  bottom: 0.1em;
  left: 0.3em;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 0 0 4px #231815, 0 0 8px #231815;
}
.p-acc .p-intro__imgsTxt span {
  font-family: "Crimson Text", serif;
  font-size: 0.45em;
}
.p-acc .p-intro__imgsTxt em {
  font-size: 2em;
  line-height: 1;
}
.p-acc .p-intro__map {
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .p-acc .p-intro__map {
    margin-top: 2rem;
  }
}
.p-acc .p-intro__times {
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .p-acc .p-intro__times {
    margin-top: 2rem;
  }
}
.p-acc .p-intro__timesTtl {
  font-size: 1.5rem;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .p-acc .p-intro__timesTtl {
    font-size: 1.3rem;
  }
}
.p-acc .p-intro__timesList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .p-acc .p-intro__timesList {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5em;
  }
}
.p-acc .p-intro__timesitem {
  font-size: 1.6rem;
  line-height: 1.5;
}
.p-acc .p-intro__timesitem em {
  font-size: 1.5em;
}
.p-acc .p-intro__timesitem strong {
  color: #bd0008;
  font-size: 3.5em;
  font-family: "Crimson Text", serif;
  line-height: 1;
}
@media (max-width: 768px) {
  .p-acc .p-intro__timesitem strong {
    font-size: 4em;
  }
}
.p-acc .p-intro__timesitem small {
  display: block;
  font-size: 0.75em;
  margin-top: 0.5em;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .p-acc .p-intro__timesitem {
    font-size: 1.3rem;
  }
}
.p-acc .p-intro__cap {
  font-size: 1.4rem;
  margin-top: 1em;
}
@media (max-width: 768px) {
  .p-acc .p-intro__cap {
    font-size: 1.3rem;
  }
}
.p-acc .p-lim {
  padding-block: 10rem;
}
@media (max-width: 768px) {
  .p-acc .p-lim {
    padding-block: 5rem;
  }
}
.p-acc .p-lim__grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 4rem;
}
@media (max-width: 768px) {
  .p-acc .p-lim__grid {
    grid-template-columns: 1fr;
  }
}
.p-acc .p-lim__gridRight {
  width: 100%;
  height: 100%;
}
.p-acc .p-lim__gridRight img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-acc .p-lim__gridTtl {
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .p-acc .p-lim__gridTtl {
    font-size: 1.4rem;
  }
}
.p-acc .p-lim__gridTtl em {
  color: #6c699c;
}
.p-acc .p-lim__gridTxt {
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .p-acc .p-lim__gridTxt {
    margin-bottom: 2rem;
    font-size: 1.3rem;
  }
}
/*# sourceMappingURL=../../map/access/access.css.map */